/* Tiny Tulip Studio — soft botanical landing page
   Shared brand: Gilda Display + Spectral italic + Mulish
   Lightly differentiated arms: Studio (lavender/plum), Haus (sage + dusty pink) */

:root {
  /* Neutrals — warm off-white paper, soft plum-gray ink */
  --cream:      #fdfbf7;
  --cream-deep: #f6f1e9;
  --paper:      #fffdf9;
  --ink:        #3c3442;
  --ink-soft:   #6a6170;
  --muted:      #978d9e;
  --rule:       #e7ded3;
  --rule-soft:  #f0e9df;

  /* Studio — lavender / plum */
  --lav:        #9d8cc4;
  --lav-deep:   #6f5f9c;
  --lav-tint:   #efeaf6;

  /* Haus — sage + dusty pink */
  --sage:       #a8c0a0;
  --sage-deep:  #6f8c66;
  --sage-tint:  #eaf0e6;
  --pink:       #e0a3b0;
  --pink-deep:  #c1788a;
  --pink-tint:  #f9ebee;

  /* Warm earth accent */
  --clay:       #c9a98c;

  --font-display: "Gilda Display", "Times New Roman", serif;
  --font-accent:  "Spectral", Georgia, serif;
  --font-body:    "Mulish", "Helvetica Neue", system-ui, sans-serif;

  --gutter: clamp(20px, 5vw, 72px);
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ─── Botanical line motif ─────────────────────────────────────── */
.sprig {
  display: block;
  color: var(--sage-deep);
  opacity: .9;
}
.sprig.lav { color: var(--lav-deep); }
.sprig.pink { color: var(--pink-deep); }

/* Eyebrow label — letterspaced small caps */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow.lav { color: var(--lav-deep); }
.eyebrow.sage { color: var(--sage-deep); }
.eyebrow.pink { color: var(--pink-deep); }
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: .5;
}

/* Display headings */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; margin: 0; }
.serif-i { font-family: var(--font-accent); font-style: italic; }

/* ─── Top nav ──────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--cream) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand image-slot {
  width: 46px;
  height: 46px;
  display: block;
}
.brand .wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand .wordmark .nm {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: .01em;
}
.brand .wordmark .sub {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--lav-deep); }
.nav-links a.haus-link:hover { color: var(--sage-deep); }
.nav-cta {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--lav);
  color: var(--lav-deep);
  transition: all .2s ease;
}
.nav-cta:hover { background: var(--lav); color: #fff; border-color: var(--lav); }

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: var(--paper);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .28s ease, opacity .28s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-down menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px var(--gutter) 18px;
  border-top: 1px solid var(--rule-soft);
  background: color-mix(in oklab, var(--cream) 96%, transparent);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .28s ease, opacity .28s ease, padding .28s ease;
}
.mobile-menu.open { max-height: 340px; opacity: 1; }
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
  padding: 14px 4px;
  border-bottom: 1px solid var(--rule-soft);
}
.mobile-menu a.haus-link { color: var(--sage-deep); }
.mobile-menu a.mm-cta {
  margin-top: 12px;
  text-align: center;
  border: 1px solid var(--lav);
  border-radius: 999px;
  color: var(--lav-deep);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}
@media (max-width: 760px) {
  .nav-desktop { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}
@media (min-width: 761px) {
  .mobile-menu { display: none; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* ─── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  text-align: center;
  padding-block: clamp(64px, 12vh, 140px) clamp(48px, 9vh, 110px);
  overflow: hidden;
}
.hero .logo-slot {
  width: clamp(140px, 22vw, 210px);
  height: clamp(140px, 22vw, 210px);
  margin: 0 auto 30px;
}
.hero h1 {
  font-size: clamp(44px, 8vw, 96px);
  line-height: 1.02;
  letter-spacing: -.01em;
  margin: 0 auto;
  max-width: 14ch;
}
.hero h1 .serif-i { color: var(--lav-deep); }
.hero .lede {
  font-family: var(--font-accent);
  font-size: clamp(18px, 2.4vw, 24px);
  font-style: italic;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 26px auto 0;
  line-height: 1.5;
}
.hero .sprig-top {
  width: 54px;
  height: auto;
  margin: 0 auto 22px;
}
.hero-bg-sprig {
  position: absolute;
  pointer-events: none;
  opacity: .14;
}
.hero-bg-sprig.l { left: -30px; top: 40px; width: 200px; color: var(--sage-deep); }
.hero-bg-sprig.r { right: -40px; bottom: -20px; width: 240px; color: var(--lav-deep); transform: scaleX(-1); }
@media (max-width: 720px) {
  .hero-bg-sprig { display: none; }
}

/* ─── Split: choose your path ──────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding-bottom: clamp(60px, 10vh, 120px);
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; gap: 28px; }
}
.branch {
  position: relative;
  border-radius: 18px;
  padding: clamp(32px, 4vw, 52px);
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  border: 1px solid var(--rule);
  transition: transform .3s ease, box-shadow .3s ease;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.branch:hover { transform: translateY(-4px); }
.branch.studio {
  background: linear-gradient(160deg, var(--lav-tint) 0%, var(--paper) 70%);
}
.branch.studio:hover { box-shadow: 0 20px 50px -20px color-mix(in oklab, var(--lav) 55%, transparent); }
.branch.haus {
  background: linear-gradient(160deg, var(--sage-tint) 0%, var(--pink-tint) 120%);
}
.branch.haus:hover { box-shadow: 0 20px 50px -20px color-mix(in oklab, var(--sage) 60%, transparent); }
.branch .b-sprig {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 56px;
  height: auto;
  opacity: .8;
}
.branch h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  margin-bottom: 12px;
}
.branch h2 .serif-i { font-size: .8em; }
.branch.studio h2 .label { color: var(--lav-deep); }
.branch.haus h2 .label { color: var(--sage-deep); }
.branch p {
  font-size: 15.5px;
  color: var(--ink-soft);
  margin: 0 0 22px;
  max-width: 38ch;
}
.branch .go {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.branch.studio .go { color: var(--lav-deep); }
.branch.haus .go { color: var(--sage-deep); }
.branch .go .arr { transition: transform .3s ease; }
.branch:hover .go .arr { transform: translateX(6px); }
.branch .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.branch .chip {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--paper) 70%, transparent);
  border: 1px solid var(--rule);
  color: var(--ink-soft);
}

/* ─── Section scaffold ─────────────────────────────────────────── */
.section { padding-block: clamp(70px, 11vh, 140px); position: relative; }
.section.studio-sec { background: var(--paper); border-block: 1px solid var(--rule-soft); }
.section.haus-sec {
  background: linear-gradient(180deg, var(--cream) 0%, var(--sage-tint) 100%);
}
.sec-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 6vh, 72px);
}
.sec-head h2 {
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1.04;
  letter-spacing: -.01em;
  margin-top: 18px;
}
.sec-head.studio-sec h2 .serif-i { color: var(--lav-deep); }
.sec-head.haus-sec h2 .serif-i { color: var(--sage-deep); }
.sec-head .intro {
  font-family: var(--font-accent);
  font-size: clamp(17px, 2vw, 21px);
  font-style: italic;
  color: var(--ink-soft);
  margin-top: 18px;
  line-height: 1.5;
  max-width: 52ch;
}

/* ─── Studio: services ─────────────────────────────────────────── */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 800px) {
  .services { grid-template-columns: repeat(3, 1fr); }
}
.service {
  background: var(--paper);
  padding: 38px 32px 42px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .3s ease;
}
.service:hover { background: var(--lav-tint); }
.service .num {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 22px;
  color: var(--lav);
}
.service h3 { font-size: 25px; line-height: 1.15; }
.service p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
.service .svc-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service .svc-list li {
  font-size: 13px;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
}
.service .svc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lav);
  opacity: .6;
}

/* ─── Studio: philosophy + portfolio link ──────────────────────── */
.philosophy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-top: clamp(56px, 8vh, 96px);
}
@media (min-width: 900px) {
  .philosophy { grid-template-columns: 1.1fr 0.9fr; gap: 72px; }
}
.philosophy blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.18;
  letter-spacing: -.005em;
}
.philosophy blockquote .serif-i { color: var(--lav-deep); }
.philosophy .by {
  margin-top: 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.port-card {
  background: var(--lav-tint);
  border: 1px solid color-mix(in oklab, var(--lav) 25%, var(--rule));
  border-radius: 16px;
  padding: 36px 34px;
}
.port-card h3 { font-size: 26px; margin-bottom: 10px; }
.port-card p { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 22px; }
.port-card .work-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.port-card .work-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid color-mix(in oklab, var(--lav) 22%, var(--rule));
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: color .2s ease, padding-left .2s ease;
}
.port-card .work-links a:last-child { border-bottom: 1px solid color-mix(in oklab, var(--lav) 22%, var(--rule)); }
.port-card .work-links a:hover { color: var(--lav-deep); padding-left: 8px; }
.port-card .work-links .arr { color: var(--lav); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .2s ease;
  font-family: var(--font-body);
}
.btn-lav { background: var(--lav-deep); color: #fff; }
.btn-lav:hover { background: var(--lav); }
.btn-sage { background: var(--sage-deep); color: #fff; }
.btn-sage:hover { background: var(--sage); }
.btn-ghost-lav { border-color: var(--lav); color: var(--lav-deep); }
.btn-ghost-lav:hover { background: var(--lav); color: #fff; }
.btn-ghost-sage { border-color: var(--sage-deep); color: var(--sage-deep); }
.btn-ghost-sage:hover { background: var(--sage-deep); color: #fff; }

/* ─── Studio: testimonials ─────────────────────────────────────── */
.testimonials {
  margin-top: clamp(56px, 8vh, 96px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 760px) {
  .testimonials { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.tmonial {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 30px 30px 28px;
}
.tmonial p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 18px;
}
.tmonial .who { display: flex; align-items: center; gap: 12px; }
.tmonial .who image-slot {
  width: 40px; height: 40px; border-radius: 50%;
}
.tmonial .who .meta { line-height: 1.3; }
.tmonial .who .nm { font-size: 13.5px; font-weight: 700; }
.tmonial .who .rl { font-size: 12px; color: var(--muted); }

/* ─── Studio: inquiry form ─────────────────────────────────────── */
.inquiry {
  margin-top: clamp(56px, 8vh, 96px);
  background: linear-gradient(160deg, var(--lav-tint), var(--paper));
  border: 1px solid color-mix(in oklab, var(--lav) 22%, var(--rule));
  border-radius: 20px;
  padding: clamp(34px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 880px) {
  .inquiry { grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
}
.inquiry .pitch h3 { font-size: clamp(26px, 3.4vw, 38px); line-height: 1.1; }
.inquiry .pitch p { font-size: 15px; color: var(--ink-soft); margin: 14px 0 0; }
.inquiry .pitch .direct {
  margin-top: 22px;
  font-size: 14px;
  font-weight: 600;
}
.inquiry .pitch .direct a { color: var(--lav-deep); text-decoration: none; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--lav);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--lav) 18%, transparent);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; margin-top: 4px; }
.form-note { font-size: 12.5px; color: var(--muted); }
.form-success {
  grid-column: 1 / -1;
  display: none;
  background: color-mix(in oklab, var(--sage) 18%, var(--paper));
  border: 1px solid var(--sage);
  color: var(--sage-deep);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 14.5px;
  font-weight: 600;
}
.inquiry.sent .form-success { display: block; }
.inquiry.sent .form-grid { display: none; }

/* ─── Haus: coming soon ──────────────────────────────────────── */
.haus-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}
@media (min-width: 920px) {
  .haus-hero { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.haus-hero .soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pink-deep);
  background: var(--pink-tint);
  border: 1px solid color-mix(in oklab, var(--pink) 40%, transparent);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.haus-hero .soon-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--pink-deep);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.4;transform:scale(.8);} 50%{opacity:1;transform:scale(1.2);} }
.haus-hero h2 { font-size: clamp(34px, 5.5vw, 62px); line-height: 1.03; letter-spacing: -.01em; }
.haus-hero h2 .serif-i { color: var(--sage-deep); }
.haus-hero p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 22px 0 0;
  max-width: 46ch;
}
.haus-photo image-slot {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
}

/* Haus categories */
.categories {
  margin-top: clamp(56px, 9vh, 110px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (min-width: 860px) {
  .categories { grid-template-columns: repeat(4, 1fr); gap: 22px; }
}
.cat {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cat image-slot { width: 100%; aspect-ratio: 1 / 1; }
.cat .cat-body { padding: 18px 20px 22px; }
.cat h3 { font-size: 20px; line-height: 1.15; margin-bottom: 6px; }
.cat p { font-size: 13px; color: var(--ink-soft); margin: 0; }

/* Sustainability story */
.sustain {
  margin-top: clamp(56px, 9vh, 110px);
  background: var(--sage-tint);
  border: 1px solid color-mix(in oklab, var(--sage) 30%, var(--rule));
  border-radius: 20px;
  padding: clamp(34px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 880px) { .sustain { grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; } }
.sustain h3 { font-size: clamp(28px, 4vw, 44px); line-height: 1.08; }
.sustain h3 .serif-i { color: var(--sage-deep); }
.sustain .pillars { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 560px) { .sustain .pillars { grid-template-columns: 1fr 1fr; } }
.pillar { display: flex; flex-direction: column; gap: 7px; }
.pillar .p-ico { width: 34px; height: 34px; color: var(--sage-deep); }
.pillar h4 { font-family: var(--font-body); font-size: 15px; font-weight: 700; margin: 0; }
.pillar p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }

/* ─── Haus: location ─────────────────────────────────────────── */
.location {
  margin-top: clamp(56px, 9vh, 110px);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .location { grid-template-columns: 1fr 1fr; } }
.location .loc-info { padding: clamp(34px, 4vw, 56px); }
.location .loc-info .host {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 14px;
}
.location .loc-info h3 { font-size: clamp(26px, 3.4vw, 38px); line-height: 1.1; }
.location .loc-info .addr {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  margin: 16px 0 0;
  line-height: 1.5;
}
.hours {
  margin: 28px 0 0;
  border-top: 1px solid var(--rule);
}
.hours .row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 14px;
}
.hours .row .day { color: var(--ink-soft); }
.hours .row .time { font-weight: 600; }
.hours .row.closed .time { color: var(--muted); font-weight: 400; }
.location .loc-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.location .map-slot { position: relative; min-height: 320px; background: var(--sage-tint); }
.location .map-slot image-slot { width: 100%; height: 100%; min-height: 320px; }
.location .map-pin {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -100%);
  pointer-events: none;
  z-index: 2;
}
.location .map-pin { width: 28px; height: 35px; filter: drop-shadow(0 6px 10px rgba(0,0,0,.25)); }

/* ─── Newsletter ───────────────────────────────────────────────── */
.newsletter {
  margin-top: clamp(56px, 9vh, 110px);
  text-align: center;
  background: linear-gradient(160deg, var(--pink-tint), var(--sage-tint));
  border: 1px solid color-mix(in oklab, var(--pink) 26%, var(--rule));
  border-radius: 20px;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 64px);
}
.newsletter .sprig-top { width: 48px; margin: 0 auto 18px; color: var(--pink-deep); }
.newsletter h3 { font-size: clamp(28px, 4vw, 46px); line-height: 1.05; }
.newsletter h3 .serif-i { color: var(--pink-deep); }
.newsletter p { font-size: 15.5px; color: var(--ink-soft); max-width: 44ch; margin: 16px auto 0; }
.nl-form {
  margin: 30px auto 0;
  max-width: 460px;
  display: flex;
  gap: 10px;
}
.nl-form input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--paper);
  border: 1px solid color-mix(in oklab, var(--pink) 30%, var(--rule));
  border-radius: 999px;
  padding: 14px 20px;
}
.nl-form input:focus {
  outline: none;
  border-color: var(--pink-deep);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--pink) 22%, transparent);
}
.nl-btn {
  border: none;
  background: var(--pink-deep);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease;
  white-space: nowrap;
}
.nl-btn:hover { background: var(--pink); }
.nl-success {
  display: none;
  margin: 24px auto 0;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 19px;
  color: var(--sage-deep);
}
.newsletter.sent .nl-form { display: none; }
.newsletter.sent .nl-success { display: block; }
@media (max-width: 540px) {
  .nl-form { flex-direction: column; }
  .nl-form input, .nl-btn { width: 100%; }
}

/* ─── Footer ───────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding-block: clamp(56px, 8vh, 90px) 36px;
}
.footer a { color: var(--cream); text-decoration: none; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid color-mix(in oklab, var(--cream) 18%, transparent);
}
@media (min-width: 820px) {
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; gap: 56px; }
}
.footer .f-brand .nm { font-family: var(--font-display); font-size: 30px; }
.footer .f-brand p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 17px;
  color: color-mix(in oklab, var(--cream) 72%, transparent);
  margin: 14px 0 0;
  max-width: 34ch;
}
.footer .f-col h5 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--cream) 60%, transparent);
  margin: 0 0 18px;
}
.footer .f-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer .f-col a { font-size: 14.5px; opacity: .85; transition: opacity .2s ease; }
.footer .f-col a:hover { opacity: 1; }
.footer-bottom {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 12px;
  color: color-mix(in oklab, var(--cream) 55%, transparent);
}

/* ─── Reveal on scroll ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .haus-hero .soon-badge .dot { animation: none; }
}

/* ─── Mobile tightening (≤ 600px) ──────────────────────────────── */
@media (max-width: 600px) {
  body { font-size: 15px; }

  /* Contact form → single column, comfortable fields */
  .form-grid { grid-template-columns: 1fr; gap: 14px; }
  .field.full { grid-column: auto; }
  .field input, .field select, .field textarea { font-size: 16px; } /* avoids iOS zoom-on-focus */
  .form-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .form-actions .btn { justify-content: center; width: 100%; }
  .form-note { text-align: center; }
  .inquiry { padding: 26px 20px; border-radius: 16px; }

  /* Branch cards a touch shorter */
  .branch { min-height: 240px; padding: 28px 24px; border-radius: 16px; }

  /* Services / cards padding */
  .service { padding: 30px 24px 34px; }
  .port-card { padding: 28px 24px; }
  .sustain, .location .loc-info, .newsletter { border-radius: 16px; }

  /* Newsletter field also 16px to stop zoom */
  .nl-form input { font-size: 16px; }

  /* Location map a bit shorter on phones */
  .location .map-slot, .location .map-slot image-slot, .location .map-slot iframe { min-height: 260px; }

  /* Footer back to a clean single column rhythm */
  .footer-bottom { flex-direction: column; gap: 6px; }
}

/* ════════════════════════════════════════════════════════════════
   HAUS STANDALONE SITE  (haus.html, body.haus-site)
   Sage-led palette, with the Studio cross-link in lavender.
   ════════════════════════════════════════════════════════════════ */

/* Brand wordmark lockup (tulip mark + text) */
.haus-wordmark { display: inline-flex; align-items: center; gap: 11px; }
.haus-wordmark .hw-mark { width: 30px; height: auto; color: var(--sage-deep); }
.haus-wordmark .hw-text { display: flex; flex-direction: column; line-height: 1; }
.haus-wordmark .hw-text .nm { font-family: var(--font-display); font-size: 21px; letter-spacing: .01em; color: var(--ink); }
.haus-wordmark .hw-text .sub {
  font-size: 9.5px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: var(--sage-deep); margin-top: 4px;
}

/* Sage nav CTA + studio cross-link */
.nav-cta-sage { border-color: var(--sage-deep); color: var(--sage-deep); }
.nav-cta-sage:hover { background: var(--sage-deep); color: #fff; border-color: var(--sage-deep); }
.nav-links a.studio-link { color: var(--lav-deep); }
.nav-links a.studio-link:hover { color: var(--lav); }
.mobile-menu a.studio-link { color: var(--lav-deep); }
.mobile-menu a.mm-cta-sage { border-color: var(--sage-deep); color: var(--sage-deep); }

/* General soon-badge (used on the Haus hero, not just inside .haus-hero) */
.soon-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--pink-deep); background: var(--pink-tint);
  border: 1px solid color-mix(in oklab, var(--pink) 40%, transparent);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 24px;
}
.soon-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--pink-deep);
  animation: pulse 2.4s ease-in-out infinite;
}

/* Haus page hero */
.haus-page-hero { background: linear-gradient(180deg, var(--cream) 0%, var(--sage-tint) 130%); }
.haus-page-hero h1 .serif-i { color: var(--sage-deep); }
.haus-page-hero .hero-cta {
  margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.haus-site .hero-bg-sprig.l { color: var(--sage-deep); }
.haus-site .hero-bg-sprig.r { color: var(--pink-deep); }

/* Section backgrounds on the Haus page */
.haus-find { background: var(--paper); border-block: 1px solid var(--rule-soft); }
.haus-news-sec { background: linear-gradient(180deg, var(--sage-tint) 0%, var(--cream) 100%); }
.haus-find .location { margin-top: 0; }
.haus-news-sec .newsletter { margin-top: 0; }

/* Studio cross-link band */
.studio-band {
  background: linear-gradient(160deg, var(--lav-tint) 0%, var(--paper) 80%);
  border-block: 1px solid color-mix(in oklab, var(--lav) 22%, var(--rule));
  padding-block: clamp(48px, 8vh, 88px);
}
.studio-band-inner {
  display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center;
}
@media (min-width: 820px) {
  .studio-band-inner { grid-template-columns: 1fr auto; gap: 56px; }
}
.studio-band .sb-copy h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(26px, 3.6vw, 40px); line-height: 1.1; margin: 14px 0 0;
}
.studio-band .sb-copy h3 .serif-i { color: var(--lav-deep); }
.studio-band .sb-copy p {
  font-size: 15px; color: var(--ink-soft); margin: 14px 0 0; max-width: 52ch;
}

/* ════════════════════════════════════════════════════════════════
   STUDIO STANDALONE SITE  (tiny-tulip.html, body.studio-site)
   Mirrors the Haus homepage style, lavender-led.
   ════════════════════════════════════════════════════════════════ */

/* Studio page hero (mirrors .haus-page-hero) */
.studio-page-hero { background: linear-gradient(180deg, var(--cream) 0%, var(--lav-tint) 130%); }
.studio-page-hero h1 .serif-i { color: var(--lav-deep); }
.studio-site .hero-bg-sprig.l { color: var(--lav-deep); }
.studio-site .hero-bg-sprig.r { color: var(--sage-deep); }

/* Lavender hero badge */
.studio-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--lav-deep); background: var(--lav-tint);
  border: 1px solid color-mix(in oklab, var(--lav) 40%, transparent);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 24px;
}

/* Generic hero CTA row (used on both standalone hero pages) */
.hero-cta {
  margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}

/* Haus cross-link band on the Studio page (sage mirror of .studio-band) */
.haus-band {
  background: linear-gradient(160deg, var(--sage-tint) 0%, var(--pink-tint) 130%);
  border-block: 1px solid color-mix(in oklab, var(--sage) 26%, var(--rule));
  padding-block: clamp(48px, 8vh, 88px);
}
.haus-band-inner {
  display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center;
}
@media (min-width: 820px) {
  .haus-band-inner { grid-template-columns: 1fr auto; gap: 56px; }
}
.haus-band .hb-copy .soon-badge { margin-bottom: 16px; }
.haus-band .hb-copy h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(26px, 3.6vw, 40px); line-height: 1.1; margin: 0;
}
.haus-band .hb-copy h3 .serif-i { color: var(--sage-deep); }
.haus-band .hb-copy p {
  font-size: 15px; color: var(--ink-soft); margin: 14px 0 0; max-width: 52ch;
}
