@charset "UTF-8";

:root {
  color-scheme: light;
  --ink: #182018;
  --muted: #536052;
  --paper: #edf3ea;
  --surface: #fbfdf8;
  --accent: #e3b500;
  --accent-dark: #3c3400;
  --leaf: #254d38;
  --line: rgba(24, 32, 24, 0.18);
  --radius: 20px;
  --shadow: 0 24px 70px rgba(37, 77, 56, 0.16);
  --display: "Trebuchet MS", "Avenir Next", Avenir, sans-serif;
  --body: "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #1b6e4a; outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: -100px;
  left: 8px;
  z-index: 10;
  background: var(--surface);
  padding: 12px 16px;
  border-radius: 10px;
}
.skip-link:focus { top: 8px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 4;
  height: 76px;
}
.nav-shell {
  width: min(1380px, calc(100% - 48px));
  height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.wordmark {
  width: max-content;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.05em;
}
.wordmark span { display: block; font-size: 1.35rem; }
.wordmark small { display: block; font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; }
nav { display: flex; gap: 28px; align-items: center; }
nav a, .footer-links a { text-decoration: none; font-weight: 700; }
nav a:hover, .footer-links a:hover { text-decoration: underline; text-underline-offset: 5px; }
.nav-cta {
  justify-self: end;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--surface);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  align-items: stretch;
  background: var(--surface);
}
.hero-copy {
  align-self: center;
  width: min(680px, calc(100% - 64px));
  margin: 76px auto 0;
  padding: 48px 0;
}
.hero-kicker, .visit-kicker {
  margin: 0 0 18px;
  color: var(--leaf);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: -0.035em;
  line-height: .94;
}
h1 { max-width: 12ch; font-size: clamp(3.5rem, 6.8vw, 7rem); }
h2 { font-size: clamp(2.5rem, 5vw, 5.4rem); }
.hero-intro {
  max-width: 38ch;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(1px); }
.button-primary { background: var(--ink); color: var(--surface); }
.button-primary:hover { box-shadow: 0 10px 24px rgba(24, 32, 24, .18); }
.button-secondary { background: transparent; }
.hero-visual {
  position: relative;
  min-height: 100dvh;
  margin: 0;
  overflow: hidden;
  background: var(--accent);
}
.hero-visual img {
  position: absolute;
  z-index: 2;
  inset: 8% auto auto 12%;
  width: 64%;
  height: 84%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.sun-disc {
  position: absolute;
  top: 8%;
  right: 4%;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff8d6;
  opacity: .88;
}

.section-shell { width: min(1380px, calc(100% - 48px)); margin: 0 auto; }
.treats { padding: clamp(88px, 11vw, 170px) 0; }
.treat-heading { max-width: 760px; }
.treat-heading p, .brand-copy p, .counter-note p {
  max-width: 52ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}
.treat-composition {
  min-height: 650px;
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1.2fr .8fr .85fr;
  grid-template-rows: 180px 1fr;
  gap: 24px;
  align-items: start;
}
.treat-composition figure { margin: 0; overflow: hidden; border-radius: var(--radius); }
.treat-composition img { height: 100%; object-fit: cover; }
.cone-display { grid-row: 1 / 3; height: 650px; box-shadow: var(--shadow); }
.treat-type {
  grid-column: 2 / 4;
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 18px 32px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 3.1rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.05;
}
.candy-cone { grid-column: 3; height: 446px; margin-top: 0 !important; }

.brand-window {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  min-height: 760px;
  background: var(--leaf);
  color: var(--surface);
}
.brand-image { min-height: 760px; overflow: hidden; }
.brand-image img { height: 100%; object-fit: cover; object-position: 50% 46%; }
.brand-copy { align-self: center; padding: clamp(48px, 7vw, 110px); }
.brand-copy p { color: #f0f6ee; }
.text-link, .phone-link {
  display: inline-block;
  margin-top: 28px;
  font-weight: 900;
  text-underline-offset: 6px;
}

.counter-story {
  padding: clamp(88px, 10vw, 150px) 0;
  display: grid;
  grid-template-columns: 1.25fr .6fr .6fr;
  grid-template-rows: auto auto;
  gap: 24px;
  align-items: end;
}
.counter-photo { grid-row: 1 / 3; overflow: hidden; border-radius: var(--radius); }
.counter-photo img { height: 720px; object-fit: cover; }
.counter-note { grid-column: 2 / 4; align-self: start; padding: 24px 0 42px; }
.counter-note h2 { max-width: 12ch; font-size: clamp(2.5rem, 4vw, 4.4rem); }
.space-photo { grid-column: 3; overflow: hidden; border-radius: var(--radius); }
.space-photo img { height: 390px; object-fit: cover; }

.visit { background: #e9dcaa; padding: clamp(82px, 10vw, 150px) 0; }
.visit-shell {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(380px, .78fr) minmax(0, 1.22fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}
.visit-copy h2 { max-width: 12ch; font-size: clamp(3rem, 5.2vw, 5.4rem); }
address { margin-top: 30px; font-size: 1.15rem; font-style: normal; font-weight: 750; }
.phone-link { margin-top: 12px; }
.hours { margin: 32px 0; max-width: 520px; }
.hours div { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; padding: 9px 0; border-bottom: 1px solid rgba(24, 32, 24, .2); }
.hours dt { font-weight: 850; }
.hours dd { margin: 0; text-align: right; }
.map-frame { min-height: 650px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--surface); }
.map-frame iframe { display: block; width: 100%; height: 650px; border: 0; }

footer { background: var(--ink); color: var(--surface); padding: 54px 0 40px; }
.footer-shell {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: start;
}
.footer-shell strong, .footer-shell span { display: block; }
.footer-shell strong { font-family: var(--display); font-size: 1.25rem; }
.footer-shell span { color: #c9d2c8; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-shell small { grid-column: 1 / -1; color: #adb8ad; }
.mobile-actions { display: none; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-copy { width: calc(100% - 40px); }
  h1 { font-size: clamp(3rem, 7vw, 4.8rem); }
  .hero-visual img { inset: 12% auto auto 8%; width: 78%; height: 78%; }
  .hero-visual figcaption { display: none; }
  .treat-composition { min-height: 620px; grid-template-columns: 1fr .8fr; }
  .cone-display { height: 560px; }
  .treat-type { grid-column: 2; }
  .candy-cone { grid-column: 2; height: 330px; margin-top: 0 !important; }
  .brand-window { grid-template-columns: 1.1fr .9fr; }
  .brand-copy { padding: 44px; }
  .counter-story { grid-template-columns: 1fr .65fr; }
  .counter-photo { grid-row: 1 / 3; }
  .counter-note { grid-column: 2; padding-top: 0; }
  .space-photo { grid-column: 2; }
  .visit-shell { grid-template-columns: .9fr 1.1fr; gap: 40px; }
  .map-frame, .map-frame iframe { min-height: 560px; height: 560px; }
}

@media (max-width: 720px) {
  body { padding-bottom: 68px; }
  .site-header { height: 68px; }
  .nav-shell { width: calc(100% - 32px); height: 68px; display: flex; justify-content: space-between; }
  .wordmark span { font-size: 1.15rem; }
  .nav-cta { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 68px; }
  .hero-copy { width: calc(100% - 32px); margin: 0 auto; padding: 52px 0 42px; }
  .hero-kicker { margin-bottom: 14px; }
  h1 { max-width: 10ch; font-size: clamp(3.15rem, 15vw, 5rem); }
  .hero-intro { margin-top: 20px; }
  .hero-actions { margin-top: 26px; }
  .button { min-height: 48px; }
  .hero-visual { min-height: 72dvh; }
  .hero-visual img { inset: 7% auto auto 7%; width: 73%; height: 84%; }
  .sun-disc { top: 8%; right: 2%; width: 58%; }
  .section-shell { width: calc(100% - 32px); }
  .treats { padding: 80px 0; }
  .treat-composition { min-height: auto; margin-top: 42px; display: grid; grid-template-columns: 1fr; grid-template-rows: auto; gap: 16px; }
  .cone-display { grid-row: auto; height: 390px; }
  .treat-type { grid-column: auto; padding: 26px 0; }
  .candy-cone { grid-column: auto; height: 500px; margin: 0 0 0 18% !important; }
  .brand-window { grid-template-columns: 1fr; min-height: auto; }
  .brand-image { min-height: 620px; }
  .brand-copy { padding: 64px 24px 76px; }
  .counter-story { padding: 80px 0; grid-template-columns: 1fr; grid-template-rows: auto; }
  .counter-photo, .counter-note, .space-photo { grid-column: auto; grid-row: auto; }
  .counter-photo img { height: 420px; }
  .counter-note { padding: 34px 0 20px; }
  .space-photo { width: 72%; justify-self: end; }
  .space-photo img { height: 430px; }
  .visit { padding: 80px 0; }
  .visit-shell { width: calc(100% - 32px); grid-template-columns: 1fr; gap: 48px; }
  .visit-copy h2 { max-width: 9ch; }
  .hours div { grid-template-columns: .75fr 1.25fr; gap: 12px; }
  .map-frame, .map-frame iframe { min-height: 460px; height: 460px; }
  .footer-shell { width: calc(100% - 32px); grid-template-columns: 1fr; }
  .footer-links { gap: 18px; }
  .footer-shell small { grid-column: auto; }
  .mobile-actions {
    position: fixed;
    z-index: 6;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    min-height: 68px;
    padding: 8px max(8px, env(safe-area-inset-left));
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    background: var(--surface);
    border-top: 1px solid var(--line);
  }
  .mobile-actions a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
  }
  .mobile-actions a:last-child { background: var(--ink); color: var(--surface); }
}

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