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

:root {
  --black: #0b0b0b;
  --black-2: #111111;
  --black-3: #191919;
  --gold: #d6ab52;
  --gold-2: #c39948;
  --gold-soft: rgba(214, 171, 82, 0.18);
  --cream: #f5f1e3;
  --cream-2: #f7f2df;
  --cream-3: #efe5c8;
  --text: #1e1e1e;
  --muted: #6e6555;
  --white: #ffffff;
  --shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--gold); color: var(--black); }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.header-inner { width: min(1320px, calc(100% - 40px)); }
.section { padding: 96px 0; position: relative; overflow: hidden; }
.section-tight { padding: 58px 0; }
.section.dark { background: var(--black); color: var(--cream); }
.section.cream { background: linear-gradient(135deg, var(--cream), var(--cream-2)); }
.section.goldwash { background: radial-gradient(circle at 15% 15%, rgba(214,171,82,.22), transparent 34%), linear-gradient(135deg, #fffaf0, var(--cream-2)); }
.section.dark::before,
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(30deg, rgba(214,171,82,.08) 12%, transparent 12.5%, transparent 87%, rgba(214,171,82,.08) 87.5%, rgba(214,171,82,.08)),
    linear-gradient(150deg, rgba(214,171,82,.08) 12%, transparent 12.5%, transparent 87%, rgba(214,171,82,.08) 87.5%, rgba(214,171,82,.08)),
    linear-gradient(30deg, rgba(214,171,82,.08) 12%, transparent 12.5%, transparent 87%, rgba(214,171,82,.08) 87.5%, rgba(214,171,82,.08)),
    linear-gradient(150deg, rgba(214,171,82,.08) 12%, transparent 12.5%, transparent 87%, rgba(214,171,82,.08) 87.5%, rgba(214,171,82,.08));
  background-size: 64px 112px;
  background-position: 0 0, 0 0, 32px 56px, 32px 56px;
  opacity: .35;
  pointer-events: none;
}
.section > .container { position: relative; z-index: 1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 11, 0.94);
  border-bottom: 1px solid rgba(214, 171, 82, 0.22);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.logo-link { display: inline-flex; align-items: center; flex: 0 0 auto; min-width: 288px; margin-right: 30px; padding-right: 4px; }
.logo { width: 272px; max-width: 28vw; }
.nav { display: flex; align-items: center; justify-content: flex-end; gap: 22px; flex: 1 1 auto; min-width: 0; }
.nav a {
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .92;
  white-space: nowrap;
  transition: color .2s ease, opacity .2s ease;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--gold); opacity: 1; }
.nav .nav-cta { margin-left: 14px; }
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(214, 171, 82, .4);
  color: var(--gold);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}
.mobile-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 28px rgba(0,0,0,.18); }
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: #e4bf6a; }
.btn-outline { color: var(--gold); background: rgba(0,0,0,.18); }
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-cream { background: var(--cream); color: var(--black); }
.btn-cream:hover { background: var(--white); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,11,11,.94) 0%, rgba(11,11,11,.78) 42%, rgba(11,11,11,.12) 100%), url('../images/hero-apiary.svg') center/cover no-repeat;
  opacity: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 760px; padding: 92px 0; }
.hero-logo { width: min(760px, 100%); margin-bottom: 30px; filter: drop-shadow(0 18px 28px rgba(0,0,0,.3)); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}
.eyebrow::before,
.eyebrow::after { content:""; width: 32px; height: 1px; background: var(--gold); opacity: .75; }
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.05;
  margin: 0 0 18px;
  font-weight: 700;
}
h1 { font-size: clamp(48px, 7vw, 92px); letter-spacing: .03em; }
h2 { font-size: clamp(38px, 5vw, 64px); }
h3 { font-size: clamp(28px, 3vw, 38px); }
h4 { font-size: 24px; }
p { margin: 0 0 20px; }
.lead { font-size: clamp(18px, 2.1vw, 23px); line-height: 1.7; color: inherit; opacity: .9; }
.dark .lead { color: var(--cream); }
.gold-text { color: var(--gold); }
.muted { color: var(--muted); }
.dark .muted { color: rgba(247,242,223,.72); }
.max-760 { max-width: 760px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.split.reverse { grid-template-columns: .95fr 1.05fr; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(195, 153, 72, .28);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 18px 35px rgba(0,0,0,.06);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(214, 171, 82, .72); box-shadow: var(--shadow); }
.dark .card {
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border-color: rgba(214, 171, 82, .28);
  color: var(--cream);
}
.card h3, .card h4 { color: var(--gold); }
.icon { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: rgba(214,171,82,.16); color: var(--gold); margin-bottom: 18px; font-size: 26px; }
.service-card { min-height: 100%; display: flex; flex-direction: column; }
.service-card p { flex: 1; }
.feature-list { display: grid; gap: 14px; margin: 24px 0 0; padding: 0; list-style: none; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; }
.feature-list li::before { content: "✦"; color: var(--gold); font-weight: 700; margin-top: 1px; }

.image-card {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(214,171,82,.36);
  background: rgba(255,255,255,.26);
}
.image-card img { width: 100%; }
.image-card.pad { padding: 18px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.stat { padding: 20px; background: rgba(214,171,82,.13); border: 1px solid rgba(214,171,82,.25); border-radius: 18px; }
.stat strong { display:block; font-family:'Cormorant Garamond', Georgia, serif; font-size: 36px; line-height:1; color:var(--gold); }
.stat span { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }

.page-hero {
  padding: 120px 0 78px;
  background: radial-gradient(circle at 70% 15%, rgba(214,171,82,.18), transparent 38%), var(--black);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(30deg, rgba(214,171,82,.08) 12%, transparent 12.5%, transparent 87%, rgba(214,171,82,.08) 87.5%, rgba(214,171,82,.08));
  background-size: 70px 120px;
  opacity: .24;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { color: rgba(247,242,223,.72); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.breadcrumb a { color: var(--gold); }

.cta-band {
  background: linear-gradient(135deg, var(--black), #1b1408);
  color: var(--cream);
  border: 1px solid rgba(214,171,82,.38);
  border-radius: 34px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}
.cta-band h2 { color: var(--gold); margin-bottom: 10px; }

.timeline { display: grid; gap: 18px; counter-reset: steps; }
.step { counter-increment: steps; display: grid; grid-template-columns: 58px 1fr; gap: 18px; align-items: start; }
.step::before { content: counter(steps); width: 58px; height: 58px; border-radius: 50%; background: var(--gold); color: var(--black); display: grid; place-items: center; font-weight: 800; }
.step h4 { color: var(--gold); margin-bottom: 6px; }

.form-wrap {
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(195,153,72,.28);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.dark .form-wrap { background: rgba(255,255,255,.055); color: var(--cream); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
label { font-weight: 700; font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(195,153,72,.32);
  border-radius: 14px;
  padding: 14px 15px;
  background: rgba(255,255,255,.82);
  color: var(--text);
  outline: none;
}
.dark input, .dark select, .dark textarea { background: rgba(255,255,255,.94); color: var(--text); }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(214,171,82,.16); }
textarea { min-height: 140px; resize: vertical; }
.hidden { display: none !important; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.dark .form-note { color: rgba(247,242,223,.72); }

.faq { display: grid; gap: 14px; }
.faq-item {
  border: 1px solid rgba(195,153,72,.3);
  border-radius: 18px;
  background: rgba(255,255,255,.54);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 22px 24px;
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq-question::after { content: "+"; color: var(--gold); font-size: 22px; line-height: 1; }
.faq-item.open .faq-question::after { content: "–"; }
.faq-answer { display: none; padding: 0 24px 24px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }

.gallery-grid { display:grid; grid-template-columns: 1.1fr .9fr 1fr; gap: 18px; }
.gallery-tile { border-radius: 26px; min-height: 230px; overflow:hidden; border:1px solid rgba(214,171,82,.32); background: var(--black); display:grid; place-items:center; }
.gallery-tile img { width:100%; height:100%; object-fit:cover; }
.gallery-tile.tall { min-height: 480px; }
.gallery-tile.gold { background: linear-gradient(145deg, rgba(214,171,82,.9), rgba(195,153,72,.55)); color: var(--black); padding: 26px; text-align:center; }
.gallery-tile.gold h3 { color: var(--black); }
.gallery-tile.boxes-illustration { background: linear-gradient(145deg, rgba(255,250,240,.92), rgba(239,229,200,.88)); padding: 18px; }
.gallery-tile.boxes-illustration img { width: 100%; height: 100%; object-fit: contain; }

.footer {
  background: var(--black);
  color: var(--cream);
  padding: 70px 0 28px;
  border-top: 1px solid rgba(214,171,82,.25);
}
.footer-grid { display:grid; grid-template-columns: 1.35fr .8fr .8fr 1fr; gap: 36px; }
.footer-logo { width: 340px; max-width: 100%; margin-bottom: 20px; }
.footer h4 { color: var(--gold); font-size: 22px; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display:grid; gap: 9px; }
.footer a { color: rgba(247,242,223,.82); }
.footer a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(214,171,82,.18); margin-top: 42px; padding-top: 22px; display:flex; justify-content:space-between; gap: 20px; color: rgba(247,242,223,.68); font-size: 13px; }

.notice-box { padding: 24px; border-radius: 22px; background: rgba(214,171,82,.13); border: 1px solid rgba(214,171,82,.28); }
.tag-list { display:flex; flex-wrap: wrap; gap:10px; margin-top: 22px; }
.tag { border:1px solid rgba(214,171,82,.36); color: var(--gold); padding: 8px 12px; border-radius: 999px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }

@media (max-width: 1080px) {
  .header-inner { gap: 20px; }
  .nav { gap: 12px; }
  .nav a { font-size: 10px; letter-spacing: .08em; }
  .logo-link { min-width: 228px; margin-right: 10px; }
  .logo { width: 220px; max-width: 26vw; }
  .nav .nav-cta { margin-left: 6px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1180px) {
  .header-inner { min-height: 74px; }
  .mobile-toggle { display:block; }
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(11,11,11,.98);
    border-bottom: 1px solid rgba(214,171,82,.25);
    padding: 18px 20px 24px;
  }
  .nav.open { display:flex; }
  .nav a { padding: 10px 0; font-size: 12px; }
  .nav .nav-cta { margin-left: 0; margin-top: 6px; }
  .logo-link { min-width: auto; margin-right: 0; padding-right: 0; }
  .logo { width: 230px; max-width: 72vw; }
  .hero { min-height: auto; }
  .hero .hero-bg { background: linear-gradient(180deg, rgba(11,11,11,.96) 0%, rgba(11,11,11,.82) 58%, rgba(11,11,11,.54) 100%), url('../images/hero-apiary.svg') center/cover no-repeat; }
  .hero-content { padding: 86px 0; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 34px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-tile.tall { min-height: 260px; }
  .stat-row { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 70px 0; }
  .page-hero { padding: 90px 0 56px; }
  .hero-logo { margin-bottom: 18px; }
  h1 { font-size: clamp(42px, 12vw, 58px); }
  h2 { font-size: clamp(34px, 10vw, 46px); }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .card, .form-wrap { padding: 24px; }
}
