@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --green-950: #091b15;
  --green-900: #10271f;
  --green-800: #17362b;
  --green-700: #23493b;
  --gold-500: #c5a15a;
  --gold-400: #d5b878;
  --cream-100: #f7f3ea;
  --cream-50: #fbf9f4;
  --white: #ffffff;
  --ink: #17201c;
  --muted: #667069;
  --line: rgba(16, 39, 31, 0.14);
  --shadow: 0 24px 60px rgba(9, 27, 21, 0.10);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-50);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--white);
  color: var(--green-950);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  background: rgba(9, 27, 21, .96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
}

.brand-logo {
  width: 48px;
  height: 48px;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong,
.footer-brand strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: .18em;
}

.brand-text small {
  margin-top: 5px;
  color: rgba(255, 255, 255, .68);
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, .84);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .06em;
}

.main-nav > a {
  position: relative;
  padding: 33px 0;
}

.main-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 24px;
  height: 1px;
  background: var(--gold-400);
  transition: right .25s ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  right: 0;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: 8px;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .45);
}

.lang-btn {
  border: 0;
  padding: 4px;
  background: transparent;
  color: rgba(255, 255, 255, .55);
  cursor: pointer;
  font-size: .75rem;
  font-weight: 600;
}

.lang-btn.active {
  color: var(--gold-400);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
  transition: transform .25s ease, opacity .25s ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 35%, rgba(197,161,90,.16), transparent 35%),
    linear-gradient(120deg, rgba(9,27,21,.98), rgba(16,39,31,.92)),
    var(--green-950);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, transparent, black 45%, black);
}

.hero-pattern {
  position: absolute;
  width: 650px;
  height: 650px;
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(213, 184, 120, .18);
  border-radius: 50%;
}

.hero-pattern::before,
.hero-pattern::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(213, 184, 120, .11);
  border-radius: 50%;
}

.hero-pattern::before {
  inset: 70px;
}

.hero-pattern::after {
  inset: 145px;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 110px;
  padding-bottom: 80px;
}

.eyebrow,
.section-label {
  margin: 0 0 22px;
  color: var(--gold-500);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .86;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  color: var(--gold-400);
  font-style: italic;
}

.hero-description {
  max-width: 670px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

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

.button-primary {
  background: var(--gold-500);
  color: var(--green-950);
}

.button-primary:hover {
  background: var(--gold-400);
}

.button-secondary {
  border-color: rgba(255, 255, 255, .28);
  color: var(--white);
}

.button-secondary:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
}

.button-dark {
  background: var(--green-900);
  color: var(--white);
  white-space: nowrap;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 58px;
  color: rgba(255, 255, 255, .5);
  font-size: .78rem;
  letter-spacing: .05em;
}

.hero-note p {
  margin: 0;
}

.hero-note-line {
  width: 52px;
  height: 1px;
  background: var(--gold-500);
}

.scroll-indicator {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 20px;
  transform: translateX(-50%);
}

.scroll-indicator span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 3px;
  background: var(--gold-400);
  transform: translateX(-50%);
  animation: scroll 1.7s infinite;
}

@keyframes scroll {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

.section {
  padding: 110px 0;
}

.intro {
  background: var(--cream-100);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 90px;
  align-items: start;
}

.intro h2,
.section-heading h2,
.contact-box h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: .96;
}

.intro-copy {
  padding-top: 48px;
  color: var(--muted);
  font-size: 1.03rem;
}

.intro-copy p {
  margin: 0 0 18px;
}

.feature-section {
  background: var(--cream-50);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 55px;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 340px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.65);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(197, 161, 90, .55);
  box-shadow: var(--shadow);
}

.card-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(16,39,31,.18);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 46px;
  color: var(--gold-500);
}

.card-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.coming-soon {
  position: absolute;
  left: 34px;
  bottom: 28px;
  color: var(--gold-500);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.story-section {
  color: var(--white);
  background: var(--green-900);
}

.story-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.story-art {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(213,184,120,.2);
}

.story-art::before,
.story-art::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(213,184,120,.13);
  border-radius: 50%;
}

.story-art::before {
  width: 330px;
  height: 330px;
}

.story-art::after {
  width: 230px;
  height: 230px;
}

.story-art img {
  position: relative;
  z-index: 1;
  width: 220px;
  opacity: .9;
}

.section-label.light {
  color: var(--gold-400);
}

.story-content h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: .96;
}

.story-content > p:not(.section-label) {
  max-width: 650px;
  margin: 28px 0;
  color: rgba(255,255,255,.68);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-400);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(6px);
}

.contact-section {
  background: var(--cream-100);
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  padding: 70px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-box h2 {
  max-width: 760px;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
}

.contact-box p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 65px 0 25px;
  color: rgba(255,255,255,.72);
  background: var(--green-950);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.42);
  font-size: .78rem;
}

.footer-location {
  color: var(--gold-400);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.38);
  font-size: .72rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a:hover {
  color: var(--gold-400);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1002;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 90px 30px 35px;
    background: var(--green-950);
    transform: translateX(100%);
    transition: transform .3s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav > a {
    width: 100%;
    max-width: 420px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-family: var(--serif);
    font-size: 2rem;
  }

  .main-nav > a::after {
    display: none;
  }

  .language-switcher {
    width: 100%;
    max-width: 420px;
    margin: 20px 0 0;
    padding: 0;
    border-left: 0;
  }

  .intro-grid,
  .story-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-art {
    min-height: 380px;
  }

  .contact-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 50px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-text strong {
    font-size: 1.05rem;
  }

  .hero-content {
    padding-top: 130px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 17vw, 5rem);
  }

  .hero-pattern {
    width: 420px;
    height: 420px;
    right: -240px;
  }

  .section {
    padding: 78px 0;
  }

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

  .feature-card {
    min-height: 315px;
  }

  .story-art {
    min-height: 320px;
  }

  .story-art::before {
    width: 245px;
    height: 245px;
  }

  .story-art::after {
    width: 175px;
    height: 175px;
  }

  .story-art img {
    width: 170px;
  }

  .contact-box {
    gap: 35px;
    padding: 36px 26px;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    margin-top: 40px;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
