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

:root {
  --navy: #1B2A4A;
  --navy-light: #243660;
  --gold: #C8A45E;
  --gold-light: #D4B76E;
  --gold-pale: #F5ECD7;
  --cream: #FAF8F4;
  --white: #FFFFFF;
  --gray-50: #F7F7F5;
  --gray-100: #EFEFEA;
  --gray-200: #E2E2DC;
  --gray-300: #C8C8C0;
  --gray-400: #9E9E96;
  --gray-500: #6E6E68;
  --gray-600: #4A4A46;
  --gray-700: #2E2E2A;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--gray-700);
  background: var(--cream);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}

.nav.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: 0 1px 0 rgba(27, 42, 74, 0.04);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.nav-logo-icon {
  color: var(--gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu a {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.25s var(--ease-smooth);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

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

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  color: var(--navy) !important;
  border: 1px solid var(--navy);
  padding: 8px 20px;
  border-radius: 100px;
  transition: background 0.25s var(--ease-smooth), color 0.25s var(--ease-smooth) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--navy);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 164, 94, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  position: relative;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray-500);
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

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

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(27, 42, 74, 0.2);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn-text {
  background: none;
  color: var(--navy);
  padding: 0;
  font-size: 13px;
  letter-spacing: 0.04em;
  position: relative;
}

.btn-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}

.btn-text:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-text span {
  transition: transform 0.3s var(--ease-out);
  display: inline-block;
}

.btn-text:hover span {
  transform: translateX(4px);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 520px;
}

.hero-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27, 42, 74, 0.1);
}

.hero-card--main {
  width: 100%;
  height: 100%;
}

.hero-card--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card--stat {
  position: absolute;
  background: var(--white);
  padding: 20px 24px;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(27, 42, 74, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.hero-card--stat--1 {
  bottom: 40px;
  left: -40px;
}

.hero-card--stat--2 {
  top: 40px;
  right: -30px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--gray-400);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-card--stat--2 svg {
  color: var(--gold);
  margin-bottom: 6px;
}

.hero-card--stat--2 span {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

.hero-line {
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  max-width: 1200px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(to right, var(--gray-200), transparent);
}

/* ─── SECTIONS ─── */
.section {
  padding: 120px 0;
}

.section-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.section-title--center {
  text-align: center;
}

/* ─── ABOUT ─── */
.section--about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 5/6;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content p {
  color: var(--gray-500);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.about-signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gray-400);
  font-size: 15px;
}

/* ─── PRODUCTS ─── */
.section--products {
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-smooth);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(27, 42, 74, 0.08);
}

.product-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-card-img img {
  transform: scale(1.04);
}

.product-card-body {
  padding: 28px;
}

.product-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.product-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-400);
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-desc {
  flex: 1;
}

/* ─── COMMUNITY ─── */
.section--community {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.section--community .section-eyebrow {
  color: var(--gold);
}

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

.community-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.community-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.community-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 7/6;
}

.community-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── VISIT ─── */
.section--visit {
  background: var(--white);
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.visit-card {
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  transition: border-color 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}

.visit-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(200, 164, 94, 0.08);
}

.visit-card-icon {
  color: var(--gold);
  margin-bottom: 20px;
}

.visit-card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}

.visit-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

.visit-card a {
  color: var(--navy);
  border-bottom: 1px solid var(--gray-200);
  transition: border-color 0.2s;
}

.visit-card a:hover {
  border-color: var(--gold);
}

/* ─── CONTACT ─── */
.section--contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-content p {
  color: var(--gray-500);
  font-size: 16px;
  line-height: 1.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s var(--ease-smooth), box-shadow 0.25s var(--ease-smooth);
  width: 100%;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 164, 94, 0.1);
}

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(200, 164, 94, 0.08);
  border: 1px solid rgba(200, 164, 94, 0.2);
  border-radius: 10px;
  font-size: 14px;
  color: var(--navy);
}

.form-success svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo-icon {
  color: var(--gold);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 4px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.2s, color 0.2s;
}

.footer-contact a:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ─── MOBILE ─── */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 48px;
  }

  .hero-visual {
    height: 420px;
  }

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

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

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-toggle[aria-expanded="true"] svg {
    transform: rotate(90deg);
  }

  .hero {
    padding: 120px 24px 80px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    height: 320px;
    order: -1;
  }

  .hero-card--stat--1 {
    left: 16px;
    bottom: 16px;
  }

  .hero-card--stat--2 {
    right: 16px;
    top: 16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-wrap {
    aspect-ratio: 4/3;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .community-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .community-image {
    aspect-ratio: 4/3;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .section {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 32px;
  }

  .hero-visual {
    height: 260px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
