/* ===========================================================
   Mithash Events — shared styles
   Palette drawn from the logo: warm ivory + dusty wine
   =========================================================== */
:root {
  --ivory: #fbf6f2;
  --ivory-deep: #f4e9e2;
  --blush: #f1e3de;
  --wine: #722b2f;
  --wine-deep: #58211f;
  --wine-dark: #2a1416;
  --ink: #2e2523;
  --taupe: #6f605a;
  --gold: #b3925a;
  --gold-soft: #c9ad7e;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;

  --shell: 1180px;
  --prose: 640px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}
h1 em, h2 em, h3 em { font-style: italic; color: var(--wine); }
p { margin: 0; }

::selection { background: var(--wine); color: var(--ivory); }
:focus-visible { outline: 2px solid var(--wine); outline-offset: 3px; border-radius: 2px; }

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding-inline: 1.5rem; }

/* ---------- Shared bits ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--wine);
}
.lead { font-size: 1.18rem; color: var(--ink); max-width: var(--prose); }
.muted { color: var(--taupe); }

.seam { display: flex; align-items: center; justify-content: center; gap: 1rem; color: var(--gold); }
.seam::before, .seam::after {
  content: ""; height: 1px; width: clamp(2rem, 12vw, 6rem);
  background: linear-gradient(90deg, transparent, var(--gold-soft));
}
.seam::after { background: linear-gradient(90deg, var(--gold-soft), transparent); }
.seam span { font-size: 0.7rem; transform: rotate(45deg); color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.95rem 1.9rem; border-radius: 999px; border: 1px solid var(--wine);
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}
.btn-solid { background: var(--wine); color: var(--ivory); }
.btn-solid:hover { background: var(--wine-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--wine); }
.btn-ghost:hover { background: var(--wine); color: var(--ivory); }
.btn-light { border-color: var(--ivory); color: var(--ivory); background: transparent; }
.btn-light:hover { background: var(--ivory); color: var(--wine); }

.link-more {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--wine);
  padding-bottom: 3px; border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, gap 0.25s ease;
}
.link-more:hover { border-color: var(--wine); gap: 0.8rem; }
.link-more svg { width: 15px; height: 15px; }

/* ---------- Header ---------- */
header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  background: rgba(251, 246, 242, 0.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
header.scrolled { border-color: rgba(114, 43, 47, 0.12); box-shadow: 0 8px 30px -18px rgba(42, 20, 22, 0.35); }
.nav { display: flex; align-items: center; justify-content: space-between; padding-block: 0.85rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand img { height: 46px; width: auto; }
.brand .name { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--wine); letter-spacing: 0.01em; }

.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links > a { white-space: nowrap; }
.nav-links > a, .nav-drop > button {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink);
  background: none; border: none; cursor: pointer; padding: 0;
  display: inline-flex; align-items: center; gap: 0.35rem; transition: color 0.2s ease;
}
.nav-links > a:hover, .nav-links > a.active,
.nav-drop:hover > button, .nav-drop:focus-within > button { color: var(--wine); }

.nav-drop { position: relative; }
.nav-drop::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 1rem; }
.nav-drop > button svg { width: 13px; height: 13px; transition: transform 0.25s ease; }
.nav-drop:hover > button svg, .nav-drop:focus-within > button svg { transform: rotate(180deg); }
.drop-menu {
  position: absolute; top: calc(100% + 0.5rem); left: 50%;
  transform: translate(-50%, 8px); min-width: 16rem; background: #fff;
  border: 1px solid var(--ivory-deep); border-radius: 14px;
  box-shadow: 0 24px 48px -24px rgba(42, 20, 22, 0.4); padding: 0.5rem;
  opacity: 0; visibility: hidden; transition: opacity 0.22s ease, transform 0.22s ease;
}
.nav-drop:hover .drop-menu, .nav-drop:focus-within .drop-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.drop-menu a {
  display: block; font-size: 0.9rem; letter-spacing: 0; text-transform: none;
  color: var(--ink); padding: 0.7rem 0.85rem; border-radius: 8px;
  transition: background 0.18s ease, color 0.18s ease;
}
.drop-menu a:hover { background: var(--ivory); color: var(--wine); }

.menu-btn { display: none; background: none; border: none; cursor: pointer; color: var(--wine); padding: 0.4rem; }
.menu-btn svg { width: 26px; height: 26px; }

.mobile { display: none; border-top: 1px solid var(--ivory-deep); background: var(--ivory); padding: 0.6rem 1.5rem 1.4rem; }
.mobile.open { display: block; }
.mobile a { display: block; font-size: 0.95rem; font-weight: 500; color: var(--ink); padding: 0.75rem 0; border-bottom: 1px solid var(--ivory-deep); }
.mobile a.sub { padding-left: 1rem; font-size: 0.88rem; color: var(--taupe); }
.mobile .btn { margin-top: 1.2rem; width: 100%; justify-content: center; }

/* ---------- Home hero ---------- */
.hero { position: relative; min-height: 94vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: var(--blush); }
.hero-wash {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(42,20,22,0.22) 0%, rgba(42,20,22,0.05) 35%, rgba(42,20,22,0.72) 100%),
    linear-gradient(90deg, rgba(42,20,22,0.45), rgba(42,20,22,0.05) 60%);
}
.hero-inner { position: relative; z-index: 2; color: var(--ivory); padding-block: 9rem 4.5rem; }
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 { font-size: clamp(2.9rem, 6.2vw, 5.1rem); font-weight: 500; margin: 1.1rem 0 0; max-width: 15ch; text-shadow: 0 2px 16px rgba(42,20,22,0.4); }
.hero h1 em { color: #f0dcb4; }
.hero p { margin-top: 1.6rem; max-width: 46ch; font-size: 1.15rem; color: rgba(251, 246, 242, 0.9); }
.hero-actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ---------- Interior page hero (shorter) ---------- */
.page-hero { position: relative; min-height: 62vh; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: var(--blush); }
.page-hero .hero-wash {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(42,20,22,0.30) 0%, rgba(42,20,22,0.12) 45%, rgba(42,20,22,0.70) 100%),
    linear-gradient(90deg, rgba(42,20,22,0.42), rgba(42,20,22,0.05) 60%);
}
.page-hero .hero-inner { position: relative; z-index: 2; color: var(--ivory); padding-block: 8.5rem 3.5rem; }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-top: 0.9rem; max-width: 18ch; text-shadow: 0 2px 16px rgba(42,20,22,0.4); }
.page-hero h1 em { color: #f0dcb4; font-style: italic; }
.page-hero p { margin-top: 1.2rem; max-width: 48ch; font-size: 1.1rem; color: rgba(251,246,242,0.9); }

/* ---------- Section rhythm ---------- */
section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.center { text-align: center; }
.center .lead, .center .eyebrow { margin-inline: auto; }
.head-h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 0.9rem; }

/* Intro / statement */
.intro { text-align: center; }
.intro .seam { margin-bottom: 2.2rem; }
.intro h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); max-width: 20ch; margin: 0 auto; }
.intro p { margin: 1.6rem auto 0; max-width: 52ch; color: var(--taupe); font-size: 1.12rem; }

/* ---------- Services / editorial split rows ---------- */
.services { background: var(--ivory-deep); }
.services .head, .splits .head { margin-bottom: clamp(3rem, 6vw, 5rem); }
.svc, .split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
  padding-block: clamp(2.5rem, 4vw, 3.5rem);
}
.svc { border-top: 1px solid rgba(114, 43, 47, 0.14); }
.svc:last-child { border-bottom: 1px solid rgba(114, 43, 47, 0.14); }
.svc-media, .split-media { aspect-ratio: 4 / 3; border-radius: 4px; overflow: hidden; background: var(--blush); }
.svc-media img, .split-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s ease; }
.svc:hover .svc-media img, .split:hover .split-media img { transform: scale(1.04); }
.svc-num { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.1rem; }
.svc h3 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); margin: 0.5rem 0 0; }
.svc p { margin: 0.9rem 0 1.6rem; color: var(--taupe); max-width: 42ch; }
.svc:nth-child(even) .svc-media { order: 2; }
.split:nth-child(even) .split-media { order: 2; }
.split-body h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.split-body p { margin-top: 1.1rem; color: var(--taupe); max-width: 46ch; }
.split-body p + p { margin-top: 1rem; }

/* ---------- Founders ---------- */
.founders-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.founders-photo { position: relative; border-radius: 4px; overflow: hidden; background: var(--blush); aspect-ratio: 4 / 5; }
.founders-photo img { width: 100%; height: 100%; object-fit: cover; }
.founders-body .eyebrow { color: var(--wine); }
.founders-body h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 0.9rem; }
.founders-body p { margin-top: 1.5rem; color: var(--taupe); font-size: 1.08rem; max-width: 46ch; }
.founders-sig { margin-top: 1.8rem; font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--wine); }
.founders-sig span { display: block; font-family: var(--sans); font-style: normal; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe); margin-top: 0.35rem; }

/* ---------- Gallery ---------- */
.gallery-band { background: var(--ivory-deep); }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: clamp(160px, 20vw, 232px); gap: 12px; margin-top: clamp(2.5rem, 5vw, 4rem); }
.gallery figure { margin: 0; overflow: hidden; border-radius: 4px; background: var(--blush); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s ease; }
.gallery figure:hover img { transform: scale(1.05); }
.g-tall { grid-column: span 4; grid-row: span 2; }
.g-wide { grid-column: span 8; }
.g-half { grid-column: span 4; }

/* ---------- Includes / checklist ---------- */
.includes-band { background: var(--ivory-deep); }
.includes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 3rem; margin-top: clamp(2rem, 4vw, 3rem); }
.include-item { border-top: 1px solid rgba(114, 43, 47, 0.16); padding-top: 1.2rem; }
.include-item .mark { color: var(--gold); font-size: 0.8rem; }
.include-item h3 { font-size: 1.25rem; margin: 0.5rem 0 0.5rem; }
.include-item p { color: var(--taupe); font-size: 0.98rem; }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: clamp(2.5rem, 5vw, 4rem); }
.why-item { padding: 0 clamp(1rem, 2.5vw, 2.4rem); }
.why-item + .why-item { border-left: 1px solid rgba(114, 43, 47, 0.16); }
.why-item .mark { color: var(--gold); font-size: 0.85rem; }
.why-item h3 { font-size: 1.5rem; margin: 0.9rem 0 0.7rem; }
.why-item p { color: var(--taupe); font-size: 1rem; }

/* ---------- Testimonials ---------- */
.quotes { background: var(--ivory-deep); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 3rem); margin-top: clamp(2.5rem, 5vw, 4rem); }
.quote { position: relative; padding-top: 2.6rem; }
.quote::before { content: "\201C"; position: absolute; top: -0.6rem; left: -0.3rem; font-family: var(--serif); font-size: 4.5rem; line-height: 1; color: rgba(179, 146, 90, 0.45); }
.quote p { font-family: var(--serif); font-size: 1.18rem; font-style: italic; line-height: 1.55; color: var(--ink); }
.quote .by { margin-top: 1.4rem; }
.quote .by strong { display: block; font-family: var(--sans); font-weight: 700; font-size: 0.95rem; font-style: normal; }
.quote .by span { font-size: 0.82rem; color: var(--taupe); letter-spacing: 0.02em; }

/* ---------- Closing CTA ---------- */
.cta { background: var(--wine); color: var(--ivory); text-align: center; }
.cta .eyebrow { color: var(--gold-soft); }
.cta .seam { color: var(--gold-soft); margin-bottom: 2rem; }
.cta .seam::before { background: linear-gradient(90deg, transparent, var(--gold-soft)); }
.cta .seam::after { background: linear-gradient(90deg, var(--gold-soft), transparent); }
.cta h2 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); margin: 0.9rem auto 0; max-width: 16ch; }
.cta h2 em { color: var(--gold-soft); }
.cta p { margin: 1.4rem auto 0; max-width: 44ch; color: rgba(251, 246, 242, 0.85); }
.cta-actions { margin-top: 2.4rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta .phone { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ivory); padding: 0.95rem 0.5rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact-info .row { display: flex; gap: 1rem; align-items: flex-start; padding-block: 1.1rem; border-top: 1px solid rgba(114,43,47,0.14); }
.contact-info .row:last-child { border-bottom: 1px solid rgba(114,43,47,0.14); }
.contact-info svg { width: 20px; height: 20px; color: var(--wine); flex-shrink: 0; margin-top: 3px; }
.contact-info .k { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe); }
.contact-info .v { font-size: 1.05rem; color: var(--ink); }
.contact-info .v a:hover { color: var(--wine); }

.form .field { margin-bottom: 1.2rem; }
.form label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe); margin-bottom: 0.5rem; }
.form input, .form select, .form textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: #fff; border: 1px solid var(--ivory-deep); border-radius: 8px;
  padding: 0.85rem 1rem; transition: border-color 0.2s ease;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--wine); }
.form textarea { min-height: 130px; resize: vertical; }
.form .btn { margin-top: 0.4rem; }

/* ---------- Footer ---------- */
footer { background: var(--wine-dark); color: rgba(251, 246, 242, 0.72); }
.foot { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem; padding-block: clamp(3.5rem, 6vw, 5rem) 2.5rem; }
.foot .brand .name { color: var(--ivory); }
.foot img { height: 40px; }
.foot .blurb { margin-top: 1.2rem; max-width: 34ch; font-size: 0.95rem; }
.foot h4 { font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); margin: 0 0 1.2rem; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.foot a { font-size: 0.95rem; transition: color 0.2s ease; }
.foot a:hover { color: var(--ivory); }
.socials { display: flex; gap: 0.8rem; margin-top: 1.4rem; }
.socials a { width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center; border: 1px solid rgba(251, 246, 242, 0.2); transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease; }
.socials a:hover { background: var(--ivory); color: var(--wine); border-color: var(--ivory); }
.socials svg { width: 17px; height: 17px; }
.foot-bottom { border-top: 1px solid rgba(251, 246, 242, 0.12); padding-block: 1.6rem 2.4rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem; font-size: 0.82rem; color: rgba(251, 246, 242, 0.5); }

/* ---------- Header phone (desktop) ---------- */
.nav-phone { display: inline-flex; align-items: center; gap: 0.45rem; white-space: nowrap; font-family: var(--sans); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; color: var(--wine); }
.nav-phone svg { width: 15px; height: 15px; }

/* ---------- Masonry portfolio ---------- */
.masonry { column-count: 3; column-gap: 12px; margin-top: clamp(2.5rem, 5vw, 4rem); }
.masonry figure { margin: 0 0 12px; break-inside: avoid; overflow: hidden; border-radius: 4px; background: var(--blush); }
.masonry img { width: 100%; display: block; transition: transform 0.9s ease; }
.masonry figure:hover img { transform: scale(1.04); }

/* ---------- Detail strip (3 images) ---------- */
.detailstrip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: clamp(2.5rem, 5vw, 4rem); }
.detailstrip figure { margin: 0; aspect-ratio: 3 / 4; overflow: hidden; border-radius: 4px; background: var(--blush); }
.detailstrip img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s ease; }
.detailstrip figure:hover img { transform: scale(1.05); }

/* ---------- Full-bleed image break ---------- */
.imgbreak { position: relative; height: clamp(300px, 42vw, 520px); overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
.imgbreak img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.imgbreak .wash { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(42,20,22,0.45), rgba(42,20,22,0.55)); }
.imgbreak .imgbreak-inner { position: relative; z-index: 2; color: var(--ivory); padding: 1.5rem; }
.imgbreak .eyebrow { color: var(--gold-soft); }
.imgbreak h2 { color: var(--ivory); font-size: clamp(1.8rem, 4vw, 3rem); margin-top: 0.8rem; max-width: 20ch; margin-inline: auto; }
.imgbreak h2 em { color: var(--gold-soft); }

/* ---------- Rentals ---------- */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: clamp(2.5rem, 5vw, 4rem); align-items: stretch; }
.pkg { background: #fff; border: 1px solid var(--ivory-deep); border-radius: 14px; padding: 2rem 1.8rem; display: flex; flex-direction: column; }
.pkg.feature { border-color: var(--wine); box-shadow: 0 24px 48px -30px rgba(114,43,47,0.5); }
.pkg .tier { font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--wine); }
.pkg h3 { font-size: 1.7rem; margin: 0.6rem 0 0.3rem; }
.pkg .price { font-family: var(--sans); color: var(--taupe); font-size: 0.95rem; margin-bottom: 1.2rem; }
.pkg ul { list-style: none; margin: 0 0 1.8rem; padding: 0; display: grid; gap: 0.7rem; }
.pkg li { position: relative; padding-left: 1.5rem; color: var(--ink); font-size: 0.97rem; }
.pkg li::before { content: "\2726"; position: absolute; left: 0; color: var(--gold); }
.pkg .btn { margin-top: auto; justify-content: center; }

.rental-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: clamp(2.5rem, 5vw, 4rem); }
.rcat { position: relative; aspect-ratio: 4 / 3; border-radius: 8px; overflow: hidden; background: var(--blush); }
.rcat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s ease; }
.rcat:hover img { transform: scale(1.05); }
.rcat .rcat-wash { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(42,20,22,0.05) 40%, rgba(42,20,22,0.72)); }
.rcat .rcat-label { position: absolute; left: 1.2rem; bottom: 1.1rem; z-index: 2; }
.rcat h3 { color: var(--ivory); font-size: 1.35rem; }
.rcat p { color: rgba(251,246,242,0.85); font-size: 0.85rem; margin-top: 0.2rem; }

/* ---------- Process steps (planning) ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: clamp(2.5rem, 5vw, 4rem); }
.pstep { border-top: 2px solid var(--wine); padding-top: 1.2rem; }
.pstep .pnum { font-family: var(--serif); font-style: italic; font-size: 2rem; color: var(--gold); line-height: 1; }
.pstep h3 { font-size: 1.2rem; margin: 0.6rem 0 0.5rem; }
.pstep p { color: var(--taupe); font-size: 0.95rem; }

/* ---------- Pull quote (photography) ---------- */
.pullquote { background: var(--wine); color: var(--ivory); text-align: center; }
.pullquote .eyebrow { color: var(--gold-soft); }
.pullquote blockquote { max-width: 22ch; margin: 1.2rem auto 0; padding: 0; font-family: var(--serif); font-size: clamp(1.7rem, 3.6vw, 2.8rem); line-height: 1.28; font-style: italic; }
.pullquote cite { display: block; margin-top: 1.6rem; font-family: var(--sans); font-style: normal; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(251,246,242,0.8); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
  .svc, .split { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc:nth-child(even) .svc-media, .split:nth-child(even) .split-media { order: 0; }
  .svc-media, .split-media { aspect-ratio: 16 / 10; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-item { padding: 0; }
  .why-item + .why-item { border-left: none; border-top: 1px solid rgba(114,43,47,0.16); padding-top: 2.5rem; }
  .quote-grid { grid-template-columns: 1fr; gap: 3rem; }
  .foot { grid-template-columns: 1fr; gap: 2.5rem; }
  .founders-grid { grid-template-columns: 1fr; gap: 2rem; }
  .founders-photo { max-width: 22rem; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: clamp(200px, 60vw, 300px); }
  .g-tall { grid-column: span 1; grid-row: span 1; }
  .g-wide { grid-column: span 1; }
  .g-half { grid-column: span 1; }
  .includes { grid-template-columns: 1fr; gap: 1.2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .masonry { column-count: 2; }
  .detailstrip { grid-template-columns: 1fr 1fr; }
  .packages { grid-template-columns: 1fr; }
  .rental-cats { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .svc:hover .svc-media img, .split:hover .split-media img, .gallery figure:hover img { transform: none; }
}
