:root {
  --ink: #1a1f1c;
  --ink-soft: #3d4740;
  --paper: #f7f3eb;
  --sand: #e8dfd0;
  --olive: #3f5a45;
  --olive-deep: #2a3d30;
  --saffron: #c4782b;
  --saffron-bright: #d9923a;
  --wine: #7a2e3a;
  --white: #ffffff;
  --line: rgba(26, 31, 28, 0.12);
  --shadow: 0 24px 60px rgba(26, 31, 28, 0.18);
  --radius: 4px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(196, 120, 43, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(63, 90, 69, 0.1), transparent 50%),
    linear-gradient(180deg, #faf7f1 0%, var(--paper) 40%, #f0ebe1 100%);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

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

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(247, 243, 235, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding: 0.65rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--olive-deep);
}

.logo span {
  color: var(--saffron);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--olive);
}

.nav-cta {
  background: var(--olive);
  color: var(--white) !important;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--olive-deep);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 31, 28, 0.35) 0%, rgba(26, 31, 28, 0.25) 35%, rgba(26, 31, 28, 0.78) 100%),
    linear-gradient(90deg, rgba(42, 61, 48, 0.45) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 0 5.5rem;
  max-width: 640px;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.25rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.15s forwards;
}

.hero-brand em {
  font-style: italic;
  color: var(--saffron-bright);
  font-weight: 500;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.85rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.35s forwards;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 34ch;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.65s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.45rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}

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

.btn-primary {
  background: var(--saffron);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--saffron-bright);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-dark {
  background: var(--olive);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--olive-deep);
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.65rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--olive-deep);
  margin-bottom: 0.85rem;
  max-width: 18ch;
}

.section-intro {
  color: var(--ink-soft);
  max-width: 48ch;
  margin-bottom: 2.75rem;
}

.section-head {
  margin-bottom: 0.5rem;
}

/* About strip */
.about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 420px;
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about-accent {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  padding: 1.1rem 1.25rem;
  background: rgba(247, 243, 235, 0.94);
  backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--olive-deep);
  line-height: 1.35;
}

.about-copy p + p {
  margin-top: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--olive);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat span {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border-radius: var(--radius);
  color: var(--white);
}

.service img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service:hover img {
  transform: scale(1.06);
}

.service::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(26, 31, 28, 0.88) 100%);
}

.service-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 1.5rem;
}

.service h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.service p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

/* Moments / gallery */
.moments {
  background: var(--olive-deep);
  color: var(--white);
  padding: 5.5rem 0;
}

.moments .section-label {
  color: var(--saffron-bright);
}

.moments .section-title {
  color: var(--white);
}

.moments .section-intro {
  color: rgba(255, 255, 255, 0.72);
}

.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 0.85rem;
}

.gallery figure {
  overflow: hidden;
  border-radius: var(--radius);
  margin: 0;
}

.gallery figure:first-child {
  grid-row: span 2;
}

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

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

/* Why us */
.reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.reason {
  padding: 1.5rem 1.25rem;
  border-top: 2px solid var(--saffron);
  background: rgba(255, 255, 255, 0.45);
}

.reason h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
  color: var(--olive-deep);
}

.reason p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Regions */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.region {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: box-shadow 0.25s, transform 0.25s;
}

.region:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.region h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--olive);
  margin-bottom: 0.5rem;
}

.region p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* CTA band */
.cta-band {
  position: relative;
  padding: 4.5rem 0;
  overflow: hidden;
  color: var(--white);
}

.cta-band-bg {
  position: absolute;
  inset: 0;
}

.cta-band-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(42, 61, 48, 0.82);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 600;
  max-width: 16ch;
  line-height: 1.15;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
  max-width: 36ch;
}

/* Testimonials */
.quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.quote {
  padding: 2rem 1.75rem;
  background: var(--white);
  border-left: 3px solid var(--saffron);
}

.quote blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--olive-deep);
  margin-bottom: 1.15rem;
}

.quote cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  padding: 4.5rem 0 2rem;
}

.footer-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-lead {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
  max-width: 42ch;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-block h3 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron-bright);
  margin-bottom: 1.1rem;
}

.address-list li {
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.address-list strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.address-list a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.address-list a:hover {
  color: var(--saffron-bright);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(196, 120, 43, 0.25);
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.form-success {
  display: none;
  padding: 1rem;
  background: rgba(63, 90, 69, 0.45);
  border: 1px solid rgba(217, 146, 58, 0.4);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.92rem;
}

.form-success.is-visible {
  display: block;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .about,
  .services-grid,
  .reasons,
  .regions-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 180px 180px;
  }

  .gallery figure:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .quotes {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0 0 auto;
    top: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4.5rem 1.5rem 1.5rem;
    background: rgba(247, 243, 235, 0.98);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    transform: translateY(0);
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
  }

  .hero-content {
    padding-bottom: 3.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }

  .gallery figure:first-child {
    grid-column: span 1;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }
}
