:root {
  --bg: #f8fcf6;
  --bg-soft: #eff7ea;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --text: #173021;
  --muted: #5d7668;
  --accent: #adc63c;
  --accent-strong: #7fb21e;
  --accent-deep: #157f3a;
  --sky: #18b4df;
  --sky-soft: #b8f1ff;
  --gold-soft: #f3e39b;
  --line: rgba(21, 127, 58, 0.12);
  --line-soft: rgba(23, 48, 33, 0.08);
  --shadow: 0 24px 60px rgba(27, 65, 40, 0.12);
  --shadow-soft: 0 18px 38px rgba(27, 65, 40, 0.08);
  --radius: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.butterhead {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(173, 198, 60, 0.18), transparent 22%),
    radial-gradient(circle at top right, rgba(24, 180, 223, 0.14), transparent 18%),
    linear-gradient(180deg, #fcfffb 0%, #f4fbf2 44%, #fbfffc 100%);
  line-height: 1.7;
}

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

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

.page-shell {
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(250, 253, 249, 0.84);
  border-bottom: 1px solid rgba(21, 127, 58, 0.08);
}

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

.brand-mark {
  width: min(250px, 56vw);
  border-radius: 26px;
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(242,249,238,0.98));
  border: 1px solid rgba(21, 127, 58, 0.10);
  box-shadow: var(--shadow-soft);
}

.brand-mark img {
  width: 100%;
  height: auto;
}

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

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--accent-deep);
}

.hero-section {
  padding: 5.6rem 0 4rem;
}

.hero-grid,
.split-grid,
.approach-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-kicker,
.mini-label {
  display: inline-block;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-size: 0.76rem;
  margin-bottom: 1rem;
}

.hero-copy h1,
.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0.01em;
  margin: 0 0 1.1rem;
}

.hero-copy h1 {
  font-size: clamp(3.1rem, 7vw, 5.8rem);
  max-width: 10.8ch;
}

.hero-copy p,
.section-copy p,
.section-heading p,
.contact-copy p,
.service-card p,
.stat-card p,
.floating-panel p,
.band-grid p,
.contact-list a,
.hero-highlights span,
.feature-list li,
.footer-inner a {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 2.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #15944b 0%, #b8cf3f 60%, #18b4df 100%);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(21, 127, 58, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(21, 127, 58, 0.12);
  color: var(--accent-deep);
  background: rgba(255, 255, 255, 0.88);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hero-highlights div,
.service-card,
.contact-panel,
.stat-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(239,247,234,0.96));
  border: 1px solid rgba(21, 127, 58, 0.12);
  box-shadow: var(--shadow);
}

.hero-highlights div {
  padding: 1.15rem;
  border-radius: 22px;
}

.hero-highlights strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--accent-deep);
  font-size: 0.95rem;
}

.hero-visual-card,
.image-frame,
.showcase-card.large {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(23, 48, 33, 0.08);
  background: #fff;
}

.hero-visual-card img,
.image-frame img,
.showcase-card.large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-card {
  min-height: 640px;
}

.hero-visual-card::after,
.image-frame::after,
.showcase-card.large::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(23, 48, 33, 0.16));
}

.floating-panel {
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 2;
  padding: 1.2rem 1.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(16px);
}

.floating-panel span {
  display: inline-block;
  font-weight: 700;
  color: var(--accent-deep);
  margin-bottom: 0.35rem;
}

.signature-band,
.collections-section,
.showcase-section {
  padding: 1.4rem 0 4.2rem;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.band-grid > div {
  padding: 1.35rem 1.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(21, 127, 58, 0.11);
  box-shadow: var(--shadow-soft);
}

.about-section,
.philosophy-section,
.contact-section {
  padding: 1rem 0 4.5rem;
}

.section-heading,
.section-copy {
  max-width: 650px;
}

.section-heading.centered {
  margin: 0 auto 2.2rem;
  text-align: center;
}

.tall-frame {
  min-height: 540px;
}

.wide-frame {
  min-height: 500px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card {
  border-radius: 26px;
  padding: 1.45rem;
}

.service-index,
.stat-number {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--accent-strong);
  margin-bottom: 0.9rem;
}

.service-card h3,
.contact-panel h3 {
  margin: 0 0 0.7rem;
  font-size: 1.18rem;
  color: var(--text);
}

.approach-grid {
  align-items: stretch;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.8rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--sky));
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 1.2rem;
  align-items: stretch;
}

.showcase-card {
  border-radius: 28px;
}

.showcase-card.large {
  min-height: 440px;
}

.stat-card {
  padding: 1.55rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.contact-panel {
  border-radius: 28px;
  padding: 1.55rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(21, 127, 58, 0.09);
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list strong {
  color: var(--text);
}

.site-footer {
  border-top: 1px solid rgba(21, 127, 58, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  padding: 1.2rem 0 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .approach-grid,
  .contact-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlights,
  .band-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-card,
  .tall-frame,
  .wide-frame,
  .showcase-card.large {
    min-height: 380px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .header-inner,
  .nav-links,
  .footer-inner,
  .contact-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 0.8rem;
  }

  .hero-section {
    padding-top: 3.5rem;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}
