:root {
  --deep-green: #0f3b35;
  --forest: #143f39;
  --soft-green: #e9f3ef;
  --gold: #c4a267;
  --gold-deep: #a9864f;
  --text: #0f1613;
  --muted: #4b5751;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(15, 59, 53, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, #f7faf8 0%, #f0f7f3 25%, #ffffff 60%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(15, 59, 53, 0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--deep-green);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep-green), #0c2f2a 60%);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 18px;
  box-shadow: var(--shadow);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--deep-green);
  background: rgba(15, 59, 53, 0.06);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: linear-gradient(120deg, var(--gold), var(--gold-deep));
  color: #fff;
  box-shadow: 0 12px 30px rgba(196, 162, 103, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(196, 162, 103, 0.4);
}

.section-inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 28px;
  margin: 0 auto;
}

.hero .section-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  padding: 72px 0 48px;
  align-items: start;
}

.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 54px);
  margin: 0 0 12px;
  color: var(--deep-green);
}

.hero-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.pill {
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--soft-green);
  color: var(--deep-green);
  font-weight: 700;
  font-size: 14px;
}

.hero-card {
  background: var(--card);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 59, 53, 0.07);
  display: grid;
  gap: 14px;
}

.hero-card img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 100%;
}

.section {
  margin: 64px 0;
  scroll-margin-top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 24px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  margin: 0;
  color: var(--deep-green);
}

.section-sub {
  color: var(--muted);
  margin: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  justify-items: stretch;
  justify-content: center;
  width: 100%;
}

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 59, 53, 0.06);
  transition: transform 0.15s ease;
}

.card:hover {
  transform: translateY(-2px);
}

.card h3 {
  margin: 0 0 6px;
  color: var(--deep-green);
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  justify-items: center;
  justify-content: center;
  width: 100%;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 260px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.45));
  color: #fff;
  padding: 14px;
  display: flex;
  align-items: flex-end;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  justify-items: center;
  justify-content: center;
  width: 100%;
}

.step {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(15, 59, 53, 0.08);
  background: #f7faf8;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--deep-green);
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  justify-items: stretch;
  justify-content: center;
  width: 100%;
}

.quote {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(15, 59, 53, 0.08);
  background: #fff;
  box-shadow: var(--shadow);
}

.quote p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.quote strong {
  color: var(--deep-green);
}

.cta {
  margin: 70px 0;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(15, 59, 53, 0.93), #0c2f2a);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(15, 59, 53, 0.28);
}

.cta h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 26px;
}

.cta p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.85);
}

.socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.social-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #ffffff;
  color: var(--deep-green);
  font-weight: 700;
  border: 1px solid rgba(15, 59, 53, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}

.social-button:hover {
  transform: translateY(-1px);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 18px 0 36px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid rgba(15, 59, 53, 0.06);
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  header { position: static; }
  .page { padding: 0 20px; }
  .hero { padding-top: 52px; }
  .hero-card img { height: 220px; }
}
