:root {
  --ink: #193126;
  --ink-soft: #405047;
  --forest: #244b36;
  --forest-deep: #163326;
  --leaf: #6f873f;
  --clay: #b85c3b;
  --clay-deep: #9f4b30;
  --gold: #d9a433;
  --cream: #f7f2e7;
  --sand: #eee4d1;
  --paper: #fffdf8;
  --white: #ffffff;
  --border: rgba(25, 49, 38, 0.14);
  --shadow: 0 24px 70px rgba(27, 46, 35, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --contact-bar-height: 76px;
  --mobile-gutter: 24px;
}

* { box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--contact-bar-height) + 18px);
}
main, header, section, nav { max-width: 100%; }
img { display: block; max-width: 100%; }
picture { display: block; width: 100%; height: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.skip-link { position: fixed; top: 10px; right: 10px; z-index: 1000; transform: translateY(-150%); background: var(--white); padding: 10px 16px; border-radius: 999px; box-shadow: var(--shadow); }
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 36px), var(--container)); max-width: 100%; margin-inline: auto; min-width: 0; }
.section { padding: 92px 0; }
.kicker {
  display: block;
  margin: 0 0 13px;
  color: var(--clay);
  font-weight: 850;
  font-size: clamp(1.05rem, 1.45vw, 1.18rem);
  line-height: 1.35;
  letter-spacing: 0;
}
.section-title { margin: 0; font-size: clamp(2rem, 4.4vw, 4.1rem); line-height: 1.08; letter-spacing: -0.035em; max-width: 760px; text-wrap: balance; }
.section-copy { margin: 22px 0 0; max-width: 690px; color: var(--ink-soft); font-size: clamp(1.02rem, 1.8vw, 1.2rem); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 12px 23px; border-radius: 999px; text-decoration: none; font-weight: 850; border: 1px solid transparent; transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--forest); color: var(--white); }
.btn-primary:hover { background: var(--forest-deep); }
.btn-secondary { background: rgba(255,255,255,0.86); border-color: var(--border); color: var(--ink); backdrop-filter: blur(10px); }
.btn-light { background: var(--white); color: var(--forest-deep); }
.btn-workshop { background: var(--clay); color: var(--white); box-shadow: 0 12px 30px rgba(90, 36, 20, 0.24); }
.btn-workshop:hover { background: var(--clay-deep); }
.btn-final-workshop { background: var(--forest-deep); color: var(--white); border-color: rgba(255,255,255,0.12); }
.btn-final-workshop:hover { background: var(--forest); }
.btn svg { width: 18px; height: 18px; flex: none; }

.hero { min-height: min(860px, 94vh); position: relative; display: grid; align-items: stretch; overflow: hidden; background: #d8d0c5; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: var(--hero-focus, 50% 50%); }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,24,17,0.03) 0%, rgba(10,24,17,0.12) 42%, rgba(10,24,17,0.82) 100%); }
.hero-shell { position: relative; z-index: 2; width: min(calc(100% - 36px), var(--container)); max-width: 100%; margin: 0 auto; display: grid; grid-template-rows: auto 1fr; min-width: 0; }
.hero-top { display: flex; justify-content: flex-start; padding-top: 18px; }
.hero-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 215px;
  max-width: 32vw;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  text-decoration: none;
}
.hero-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 2px rgba(255,255,255,1)) drop-shadow(0 0 7px rgba(255,255,255,0.78)) drop-shadow(0 7px 14px rgba(0,0,0,0.23));
}
.hero-content { align-self: center; max-width: 650px; color: var(--white); padding: 38px 0 90px; min-width: 0; }
.hero-eyebrow { margin: 0 0 14px; font-weight: 850; font-size: clamp(1.08rem, 1.7vw, 1.3rem); line-height: 1.3; color: #f3d786; }
.hero h1 { margin: 0; font-size: clamp(3rem, 7vw, 6.8rem); line-height: 0.98; letter-spacing: -0.055em; text-wrap: balance; }
.hero-subtitle { margin: 24px 0 0; max-width: 610px; font-size: clamp(1.08rem, 2vw, 1.35rem); color: rgba(255,255,255,0.92); }
.hero .button-row { margin-top: 34px; }

.explainer { background: var(--cream); scroll-margin-top: 24px; overflow: hidden; }
.split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px, 7vw, 90px); align-items: center; min-width: 0; }
.split > * { min-width: 0; }
.split-media { position: relative; min-width: 0; }
.split-media::before { content: ""; position: absolute; width: 46%; aspect-ratio: 1; border-radius: 50%; background: rgba(217,164,51,0.2); left: -9%; top: -8%; }
.image-card { position: relative; overflow: hidden; width: 100%; max-width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow); background: var(--sand); }
.image-card img { width: 100%; height: 100%; max-width: none; object-fit: cover; }
.explainer .image-card { aspect-ratio: 4 / 5; }
.highlight { margin: 24px 0 0; font-size: clamp(1.32rem, 2.6vw, 1.82rem); font-weight: 800; line-height: 1.35; color: var(--forest); }

.brand { position: relative; overflow: hidden; background: var(--paper); }
.brand::before { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; background: rgba(111,135,63,0.08); left: -220px; bottom: -190px; }
.brand-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 70px; align-items: end; min-width: 0; }
.brand-grid > * { min-width: 0; }
.brand-points { display: grid; gap: 14px; min-width: 0; }
.brand-point { display: flex; align-items: center; gap: 14px; min-width: 0; padding: 18px 20px; border: 1px solid var(--border); border-radius: var(--radius-md); background: rgba(255,255,255,0.72); }
.brand-point-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--cream); color: var(--forest); font-weight: 900; flex: none; }

.workshops { background: var(--cream); overflow: hidden; }
.workshop-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(36px, 7vw, 86px); align-items: center; min-width: 0; }
.workshop-grid > * { min-width: 0; }
.workshop-collage { position: relative; min-height: 650px; width: 100%; max-width: 100%; min-width: 0; }
.workshop-collage .photo { position: absolute; overflow: hidden; max-width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow); background: var(--sand); }
.workshop-collage .photo:first-child { width: 78%; height: 58%; left: 0; top: 0; }
.workshop-collage .photo:last-child { width: 58%; height: 58%; right: 0; bottom: 0; border: 8px solid var(--cream); }
.workshop-collage img { width: 100%; height: 100%; max-width: none; object-fit: cover; }

.terrariums { background: var(--forest-deep); color: var(--white); overflow: hidden; }
.terrariums .kicker { color: #f3d786; }
.terrariums .section-copy { color: rgba(255,255,255,0.78); }
.gallery-three { display: grid; width: 100%; max-width: 100%; min-width: 0; grid-template-columns: 1.15fr 1fr 0.85fr; gap: 18px; margin-top: 44px; align-items: stretch; }
.gallery-card { position: relative; overflow: hidden; width: 100%; max-width: 100%; min-width: 0; border-radius: var(--radius-lg); background: #d9d3c8; min-height: 440px; margin: 0; }
.gallery-card:nth-child(2) { transform: translateY(24px); }
.gallery-card img { width: 100%; height: 100%; max-width: none; object-fit: cover; transition: transform 500ms ease; }
.gallery-card:hover img { transform: scale(1.025); }
.terrariums .button-row { margin-top: 58px; }

.final-cta { padding: 88px 0 110px; background: var(--paper); overflow: hidden; }
.cta-panel { position: relative; overflow: hidden; padding: clamp(38px, 6vw, 72px); border-radius: var(--radius-xl); background: var(--clay); color: var(--white); }
.cta-panel::after { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.08); left: -80px; top: -120px; }
.cta-panel .kicker { color: #ffe3a3; }
.cta-panel .section-copy { color: rgba(255,255,255,0.88); }
.cta-content { position: relative; z-index: 1; min-width: 0; }

.contact-bar {
  position: fixed;
  z-index: 50;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 24px), 620px);
  max-width: calc(100% - 24px);
  min-height: var(--contact-bar-height);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 24px;
  background: rgba(255,253,248,0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 46px rgba(20,39,29,0.2);
}
.contact-action { display: flex; min-width: 0; flex-direction: column; align-items: center; justify-content: center; gap: 4px; min-height: 58px; border-radius: 17px; text-decoration: none; color: var(--forest-deep); font-size: 0.78rem; font-weight: 800; overflow: hidden; }
.contact-action span { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.contact-action:hover { background: var(--cream); }
.contact-action svg { width: 23px; height: 23px; flex: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 850px) {
  :root { --contact-bar-height: 70px; }
  .section { padding: 68px 0; }
  .hero { min-height: 790px; }
  .hero::after { background: linear-gradient(0deg, rgba(10,24,17,0.86) 0%, rgba(10,24,17,0.40) 52%, rgba(10,24,17,0.08) 100%); }
  .container,
  .hero-shell {
    width: calc(100% - (var(--mobile-gutter) * 2));
    max-width: calc(100% - (var(--mobile-gutter) * 2));
    margin-inline: auto;
  }
  .hero-top { padding-top: 10px; }
  .hero-logo-wrap { width: 160px; max-width: 43vw; }
  .hero-content { align-self: end; padding: 28px 0 92px; max-width: 640px; }
  .hero-eyebrow { font-size: 1.08rem; }
  .hero h1 { font-size: clamp(3rem, 14vw, 5.25rem); }
  .hero-subtitle { font-size: 1.08rem; }
  .split, .brand-grid, .workshop-grid { grid-template-columns: 1fr; gap: 38px; }
  .explainer .split-media { order: 2; }
  .brand-grid { align-items: stretch; }
  .workshop-collage { min-height: 540px; order: 2; }
  .gallery-three { grid-template-columns: 1fr 1fr; gap: 12px; }
  main .container > *,
  .split > *,
  .brand-grid > *,
  .workshop-grid > *,
  .brand-points,
  .brand-point,
  .image-card,
  .workshop-collage,
  .gallery-three,
  .gallery-card,
  .cta-panel,
  .button-row {
    max-width: 100%;
    min-width: 0;
  }
  .gallery-card { min-height: 330px; }
  .gallery-card:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 10; min-height: auto; }
  .gallery-card:nth-child(2) { transform: none; }
}

@media (max-width: 560px) {
  :root { --contact-bar-height: 68px; }
  body { padding-bottom: calc(var(--contact-bar-height) + 14px + env(safe-area-inset-bottom, 0px)); }
  .section { padding: 58px 0; }
  .kicker { font-size: 1.02rem; margin-bottom: 12px; }
  .hero { min-height: 760px; }
  .hero-logo-wrap { width: 150px; max-width: 46vw; }
  .hero-content { padding-bottom: 104px; }
  .hero-eyebrow { font-size: 1.04rem; }
  .hero .button-row, .button-row { display: grid; grid-template-columns: minmax(0, 1fr); width: 100%; }
  .btn { width: 100%; min-width: 0; padding-inline: 18px; }
  .split, .brand-grid, .workshop-grid, .gallery-three { width: 100%; max-width: 100%; min-width: 0; }
  .image-card, .workshop-collage, .gallery-card { max-width: 100%; min-width: 0; }
  .gallery-three { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; }
  .gallery-card { min-height: 260px; border-radius: 18px; }
  .gallery-card:first-child { min-height: 270px; width: 100%; }
  .workshop-collage { min-height: 440px; overflow: hidden; }
  .workshop-collage .photo:first-child { width: 88%; height: 55%; left: 0; }
  .workshop-collage .photo:last-child { width: 66%; height: 58%; right: 0; border-width: 6px; }
  .cta-panel { border-radius: 24px; }
  .contact-bar {
    bottom: max(8px, env(safe-area-inset-bottom, 8px));
    left: max(12px, env(safe-area-inset-left, 12px));
    right: max(12px, env(safe-area-inset-right, 12px));
    width: auto;
    max-width: none;
    transform: none;
    border-radius: 20px;
    padding: 6px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .contact-action { min-width: 0; min-height: 56px; font-size: 0.7rem; border-radius: 15px; }
  .contact-action svg { width: 21px; height: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
