:root {
  --porcelain: #fbfaf7;
  --white: #ffffff;
  --ink: #253842;
  --ink-soft: #4d636d;
  --apricot: #f29b74;
  --apricot-dark: #d67148;
  --sage: #a7b79a;
  --peony: #f6b7c8;
  --river: #6e9fb2;
  --brass: #c8a24a;
  --line: rgba(37, 56, 66, 0.16);
  --shadow: 0 22px 55px rgba(44, 55, 49, 0.16);
  --script: "Allura", cursive;
  --display: "Fraunces", Georgia, serif;
  --body: "Nunito Sans", Avenir, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--porcelain);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  align-items: center;
  background: rgba(251, 250, 247, 0.84);
  border-bottom: 1px solid rgba(37, 56, 66, 0.1);
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 0.78rem clamp(1rem, 4vw, 3.5rem);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 247, 0.96);
  box-shadow: 0 12px 34px rgba(37, 56, 66, 0.08);
}

.brand-lockup {
  align-items: center;
  display: inline-flex;
  gap: 0.7rem;
  min-width: 0;
}

.brand-script {
  color: var(--ink);
  display: block;
  font-family: var(--script);
  font-size: 2.25rem;
  line-height: 0.86;
  text-shadow: 0 1px 16px rgba(255, 255, 255, 0.38);
}

.brand-lockup small {
  color: var(--ink-soft);
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(0.85rem, 2.4vw, 1.7rem);
  justify-content: center;
}

.main-nav a,
.header-cta {
  font-size: 0.86rem;
  font-weight: 800;
}

.main-nav a {
  color: rgba(37, 56, 66, 0.78);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--apricot-dark);
}

.header-cta {
  border: 1px solid rgba(37, 56, 66, 0.22);
  border-radius: 999px;
  padding: 0.62rem 0.95rem;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.hero {
  height: 100vh;
  height: 100dvh;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.hero-image,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-image {
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  width: 100%;
  z-index: -2;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.94) 0%, rgba(251, 250, 247, 0.78) 28%, rgba(251, 250, 247, 0.14) 58%, rgba(37, 56, 66, 0.12) 100%),
    linear-gradient(0deg, rgba(37, 56, 66, 0.15), rgba(255, 255, 255, 0));
  z-index: -1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  height: 100dvh;
  min-height: 100svh;
  padding: 8.4rem clamp(1rem, 4vw, 4.5rem) 4.2rem;
  width: min(42rem, 94vw);
}

/* Desktop: keep the hero text block in the left half, aligned with the buttons */
@media (min-width: 901px) {
  .hero-content {
    width: min(40rem, 50vw);
  }
}

.eyebrow {
  color: var(--apricot-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  font-size: 7rem;
  margin-bottom: 1.1rem;
  max-width: 8.3em;
}

.hero h1 {
  color: var(--ink);
  font-family: var(--script);
  font-size: 9rem;
  font-weight: 400;
  line-height: 0.78;
  max-width: 4.6em;
  text-shadow: 0 1px 28px rgba(255, 255, 255, 0.52);
}

h2 {
  font-size: 4.25rem;
}

h3 {
  font-size: 1.6rem;
}

.hero-copy {
  color: #18272f;
  font-size: 1.22rem;
  font-weight: 600;
  max-width: 33rem;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.6);
}

.hero-actions,
.proof-strip,
.menu-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 3rem;
  padding: 0.86rem 1.2rem;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--apricot);
  color: #311a12;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #ffb18f;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(37, 56, 66, 0.22);
}

.intro-section,
.section,
.mobile-bar-section,
.menu-section,
.founder-section,
.inquiry-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4.5rem);
}

.intro-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 5vw, 6rem);
  grid-template-columns: minmax(18rem, 0.8fr) minmax(18rem, 1fr);
  margin: 0 auto;
  max-width: 75rem;
}

.intro-grid h2 {
  margin-bottom: 0;
}

.intro-grid p:last-child {
  color: rgba(37, 56, 66, 0.78);
  font-size: 1.3rem;
  margin-bottom: 0;
}

.proof-strip {
  margin: clamp(2.6rem, 5vw, 4rem) auto 0;
  max-width: 75rem;
}

.proof-strip a,
.menu-picks .drink {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(37, 56, 66, 0.78);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0.7rem 1rem;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}

/* Proof-strip links → service pages */
.proof-strip a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.proof-strip a::after {
  content: "→";
  color: var(--apricot-dark);
  font-weight: 900;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.proof-strip a:hover,
.proof-strip a:focus-visible {
  background: var(--white);
  border-color: var(--apricot);
  color: var(--ink);
  transform: translateY(-2px);
}

.proof-strip a:hover::after,
.proof-strip a:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

/* Menu drink buttons */
.menu-hint {
  color: var(--ink-faint);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 1.2rem 0 0.4rem;
}

.menu-picks .drink:hover,
.menu-picks .drink:focus-visible {
  border-color: var(--apricot);
  color: var(--ink);
  transform: translateY(-2px);
}

.menu-picks .drink.is-active {
  background: var(--apricot);
  border-color: var(--apricot);
  color: #311a12;
}

#menu-photo {
  transition: opacity 280ms ease;
}

#menu-photo.is-swapping {
  opacity: 0;
}

.menu-image-wrap {
  margin: 0;
}

#menu-caption {
  color: var(--ink-faint);
  font-size: 0.9rem;
  font-weight: 800;
  margin-top: 0.7rem;
  text-align: center;
}

.section-heading {
  margin: 0 auto clamp(2rem, 4vw, 3.5rem);
  max-width: 75rem;
}

.section-heading h2 {
  max-width: 12em;
}

.section-heading.compact {
  max-width: 68rem;
  text-align: center;
}

.section-heading.compact h2 {
  margin-left: auto;
  margin-right: auto;
}

.services-section {
  background:
    linear-gradient(180deg, rgba(167, 183, 154, 0.12), rgba(255, 255, 255, 0) 32%),
    var(--porcelain);
}

.services-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 75rem;
}

.service-tile {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 15.5rem;
  padding: 1.2rem;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-tile:hover {
  box-shadow: 0 16px 32px rgba(37, 56, 66, 0.09);
  transform: translateY(-4px);
}

.service-tile::before {
  content: "";
  display: block;
  height: 0.32rem;
  margin: -1.2rem -1.2rem 1.3rem;
}

.service-tile span {
  color: rgba(37, 56, 66, 0.45);
  font-weight: 900;
}

.service-tile h3 {
  margin: 0.8rem 0 0.78rem;
}

.service-tile p {
  color: rgba(37, 56, 66, 0.76);
  margin-bottom: 0;
}

.accent-apricot::before {
  background: var(--apricot);
}

.accent-peony::before {
  background: var(--peony);
}

.accent-blue::before {
  background: var(--river);
}

.accent-sage::before {
  background: var(--sage);
}

.accent-brass::before {
  background: var(--brass);
}

.accent-ink::before {
  background: var(--ink);
}

.mobile-bar-section {
  align-items: center;
  background: var(--white);
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(18rem, 0.85fr) minmax(20rem, 1.15fr);
}

.mobile-bar-copy {
  max-width: 38rem;
}

.mobile-bar-copy p {
  color: rgba(37, 56, 66, 0.76);
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  gap: 0.85rem;
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
}

.feature-list li {
  border-left: 0.32rem solid var(--sage);
  font-weight: 800;
  padding: 0.2rem 0 0.2rem 0.8rem;
}

.mobile-bar-figure {
  margin: 0;
}

.mobile-bar-figure img {
  aspect-ratio: 1.22;
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: auto;
  object-fit: cover;
  object-position: 58% 50%;
  width: 100%;
}

.mobile-bar-figure figcaption {
  color: rgba(37, 56, 66, 0.62);
  font-size: 0.88rem;
  font-weight: 800;
  margin-top: 0.8rem;
}

.process-section {
  background:
    linear-gradient(90deg, rgba(246, 183, 200, 0.18), rgba(110, 159, 178, 0.16)),
    var(--porcelain);
}

.process-rail {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 75rem;
}

.process-rail article {
  border-top: 1px solid rgba(37, 56, 66, 0.24);
  padding: 1.4rem 1.2rem 0 0;
  position: relative;
}

.process-rail article::before {
  background: var(--apricot);
  border: 4px solid var(--porcelain);
  border-radius: 50%;
  content: "";
  height: 1rem;
  left: 0;
  position: absolute;
  top: -0.56rem;
  width: 1rem;
}

.process-rail span {
  color: var(--ink);
  display: block;
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1.1;
  margin-bottom: 0.65rem;
}

.process-rail p {
  color: rgba(37, 56, 66, 0.74);
  margin-bottom: 0;
}

.menu-section {
  align-items: center;
  background: var(--white);
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: minmax(17rem, 0.75fr) minmax(19rem, 1fr);
}

.menu-image-wrap img {
  aspect-ratio: 0.86;
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: auto;
  object-fit: cover;
  width: min(100%, 31rem);
}

.menu-copy {
  max-width: 42rem;
}

.menu-copy p {
  color: rgba(37, 56, 66, 0.76);
  font-size: 1.05rem;
}

.menu-picks {
  margin-top: 1.4rem;
}

.founder-section {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(17rem, 0.72fr) minmax(20rem, 1fr);
}

.founder-copy {
  max-width: 38rem;
}

.founder-copy p {
  color: rgba(37, 56, 66, 0.76);
  font-size: 1.05rem;
}

.founder-images {
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.86fr 1.14fr;
}

.founder-images img {
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(37, 56, 66, 0.12);
  height: 100%;
  max-height: 34rem;
  object-fit: cover;
  width: 100%;
}

.founder-images img:first-child {
  aspect-ratio: 0.8;
  margin-top: 2.5rem;
}

.founder-images img:last-child {
  aspect-ratio: 1.02;
}

.inquiry-section {
  align-items: start;
  background:
    linear-gradient(180deg, rgba(200, 162, 74, 0.08), rgba(242, 155, 116, 0.13)),
    var(--porcelain);
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(17rem, 0.72fr) minmax(20rem, 1fr);
}

.inquiry-intro {
  max-width: 34rem;
  position: sticky;
  top: 6rem;
}

.inquiry-intro p,
.inquiry-intro address {
  color: rgba(37, 56, 66, 0.76);
  font-style: normal;
}

.inquiry-form {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

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

label {
  color: rgba(37, 56, 66, 0.82);
  display: grid;
  font-size: 0.88rem;
  font-weight: 900;
  gap: 0.42rem;
}

input,
select,
textarea {
  background: #fffdf9;
  border: 1px solid rgba(37, 56, 66, 0.22);
  border-radius: 8px;
  color: var(--ink);
  min-height: 3rem;
  padding: 0.78rem 0.86rem;
  width: 100%;
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--apricot-dark);
  outline: 3px solid rgba(242, 155, 116, 0.24);
}

.form-button {
  border: 0;
  cursor: pointer;
  justify-self: start;
}

.form-note {
  color: var(--apricot-dark);
  font-weight: 900;
  margin-bottom: 0;
  min-height: 1.5rem;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: var(--porcelain);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 2rem clamp(1rem, 4vw, 4.5rem);
}

.site-footer p {
  color: rgba(251, 250, 247, 0.72);
  margin: 0.22rem 0 0;
}

.site-footer a {
  color: var(--peony);
  font-weight: 900;
}

:focus-visible {
  outline: 3px solid rgba(242, 155, 116, 0.58);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 100svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(251, 250, 247, 0.9) 0%, rgba(251, 250, 247, 0.68) 48%, rgba(251, 250, 247, 0.12) 100%),
      linear-gradient(0deg, rgba(37, 56, 66, 0.17), rgba(255, 255, 255, 0));
  }

  h1 {
    font-size: 5.25rem;
  }

  .hero h1 {
    font-size: 7rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .intro-grid,
  .mobile-bar-section,
  .menu-section,
  .founder-section,
  .inquiry-section {
    grid-template-columns: 1fr;
  }

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

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

  .menu-image-wrap img {
    aspect-ratio: 1.15;
    width: 100%;
  }

  .inquiry-intro {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0.7rem 0.85rem;
  }

  .brand-script {
    font-size: 1.92rem;
  }

  .brand-lockup small {
    font-size: 0.62rem;
  }

  .header-cta {
    font-size: 0.76rem;
    padding: 0.55rem 0.72rem;
  }

  .hero,
  .hero-content {
    min-height: 100svh;
  }

  .hero-image {
    object-position: 66% 50%;
  }

  .hero-content {
    padding: 7.2rem 1rem 3rem;
    width: min(100%, 30rem);
  }

  h1 {
    font-size: 3.35rem;
  }

  .hero h1 {
    font-size: 5.25rem;
  }

  h2 {
    font-size: 2.42rem;
  }

  h3 {
    font-size: 1.38rem;
  }

  .hero-copy {
    font-size: 1.08rem;
    font-weight: 700;
  }

  .hero-actions .button {
    width: 100%;
  }

  .intro-section,
  .section,
  .mobile-bar-section,
  .menu-section,
  .founder-section,
  .inquiry-section {
    padding: 3.4rem 1rem;
  }

  .services-grid,
  .process-rail,
  .field-pair,
  .founder-images {
    grid-template-columns: 1fr;
  }

  .service-tile {
    min-height: 13rem;
  }

  .process-rail article {
    padding-right: 0;
  }

  .founder-images img:first-child {
    margin-top: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Header actions + click-to-call */
.header-actions {
  align-items: center;
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
}

.header-phone {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 0.4rem;
  padding: 0.5rem 0.6rem;
  white-space: nowrap;
}

.header-phone svg {
  color: var(--apricot-dark);
}

.header-phone:hover,
.header-phone:focus-visible {
  color: var(--apricot-dark);
}

/* Linked service tile (Mobile Bar) matches article tiles */
.service-tile.is-link {
  cursor: pointer;
}

.service-tile.is-link::after {
  color: var(--apricot-dark);
  content: "→";
  font-weight: 900;
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  transition: transform 180ms ease;
}

.service-tile.is-link:hover::after {
  transform: translateX(4px);
}

/* Founder pull-quote */
.founder-quote {
  border-left: 0.32rem solid var(--apricot);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.32;
  margin: 0 0 1.4rem;
  padding: 0.2rem 0 0.2rem 1.1rem;
}

.founder-quote cite {
  color: var(--ink-soft);
  display: block;
  font-family: var(--body);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 800;
  margin-top: 0.7rem;
}

/* Honeypot (spam trap) — visually removed, still in DOM */
.hp-field {
  height: 0;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 0;
}

/* SMS consent checkbox */
.consent-field {
  align-items: start;
  color: rgba(37, 56, 66, 0.74);
  display: grid;
  font-size: 0.78rem;
  font-weight: 600;
  gap: 0.6rem;
  grid-template-columns: auto 1fr;
  line-height: 1.45;
}

.consent-field input {
  margin-top: 0.15rem;
  min-height: auto;
  width: 1.1rem;
}

.consent-field a {
  color: var(--apricot-dark);
  font-weight: 800;
  text-decoration: underline;
}

.form-note.is-error {
  color: var(--apricot-dark);
}

.form-note.is-success {
  color: #3f6b4e;
}

/* Restructured footer */
.footer-main {
  max-width: 46rem;
}

.footer-contact,
.footer-area {
  color: rgba(251, 250, 247, 0.72);
  font-size: 0.9rem;
  margin: 0.5rem 0 0;
}

.footer-contact a {
  color: var(--peony);
  font-weight: 800;
}

.footer-meta {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: right;
}

.footer-legal {
  color: rgba(251, 250, 247, 0.6);
  font-size: 0.78rem;
  margin: 0;
}

.footer-legal a {
  color: rgba(251, 250, 247, 0.82);
  font-weight: 700;
}

@media (max-width: 620px) {
  .footer-meta {
    align-items: flex-start;
    text-align: left;
  }

  .header-phone span {
    display: none;
  }

  .header-phone {
    padding: 0.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
