/* ==========================================================================
   Purrrfect Sitting by Shivonne — site styles
   Brand: navy #2C3E5C · peach #F0A882
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Karla:wght@400;500;600;700&display=swap');

:root {
  --navy:        #2C3E5C;
  --navy-deep:   #1E2B41;
  --peach:       #F0A882;
  --peach-deep:  #DE8A5C;
  --peach-soft:  #FBE3D2;
  --peach-tint:  #FDF4EE;
  --paper:       #FFFFFF;
  --paper-alt:   #F6F8FA;
  --ink:         #2C3E5C;
  --ink-soft:    #5F6D82;
  --line:        #E3E8EF;

  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body:    'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --wrap: 1120px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 40px -24px rgba(44, 62, 92, .45);
  --shadow-lift: 0 26px 50px -26px rgba(44, 62, 92, .55);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy); text-decoration-color: var(--peach); text-underline-offset: 3px; }
a:hover { color: var(--peach-deep); }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: 'SOFT' 40, 'WONK' 1;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.2rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.005em; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.eyebrow {
  font-family: var(--body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--peach-deep);
  margin: 0 0 .9rem;
}

.lede { font-size: 1.12rem; color: var(--ink-soft); }

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--tint { background: var(--peach-tint); }
.section--alt  { background: var(--paper-alt); }

.section-head { max-width: 60ch; margin-bottom: 2.6rem; }
.section-head.is-centred { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--body);
  font-weight: 700;
  font-size: .95rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--peach); color: var(--navy); box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--peach-deep); color: #fff; transform: translateY(-2px); }
.btn--ghost { border-color: var(--navy); color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--peach); transform: translateY(-2px); }
.btn--outline-light { border-color: rgba(255,255,255,.55); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,.12); color: #fff; transform: translateY(-2px); }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 82px;
}
.brand { display: flex; align-items: center; margin-right: auto; text-decoration: none; }
.brand img { height: 46px; width: auto; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: .5rem;
  cursor: pointer;
  color: var(--navy);
}
.nav-toggle svg { width: 26px; height: 26px; }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--navy);
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { border-bottom-color: var(--peach); color: var(--navy); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--peach); }
.header-cta { margin-left: .6rem; }

@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; order: 3; }
  .site-nav {
    order: 4;
    flex-basis: 100%;
    display: none;
    padding-bottom: 1.2rem;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: flex-start; gap: .2rem; }
  .site-nav a { display: block; padding: .6rem 0; width: 100%; }
  .header-cta { display: none; }
  .site-header .wrap { flex-wrap: wrap; }
}

/* ---------- Hero ---------- */
.hero { padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 7vw, 5rem); background: linear-gradient(170deg, var(--peach-tint) 0%, #fff 70%); }
.hero .wrap { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { margin-bottom: .35em; }
.hero .lede { max-width: 44ch; margin-bottom: 1.8rem; }

.hero-visual { position: relative; max-width: 460px; margin: 1rem auto 0; }
.hero-photo {
  aspect-ratio: 4 / 3.4;
  border-radius: 24px;
  background: var(--peach-soft) url('../assets/mark.png') center 42% / 42% no-repeat;
  border: 1px solid var(--peach);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Signature element: the visit update card.
   Static by default; only floated over the photo on wide screens. */
.update-card {
  position: static;
  width: min(320px, 92%);
  margin: -2.2rem auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-lift);
}
.update-card__head {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .6rem;
}
.update-card__avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--peach-soft) url('../assets/mark.png') center 55% / 62% no-repeat;
  flex: none;
}
.update-card__meta { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--peach-deep); }
.update-card__time { font-size: .74rem; color: var(--ink-soft); font-weight: 500; letter-spacing: .04em; }
.update-card p { font-size: .92rem; line-height: 1.55; color: var(--ink-soft); margin: 0; }

/* Wide screens only: two columns, card floated over the photo */
@media (min-width: 861px) {
  .hero .wrap { grid-template-columns: 1.05fr .95fr; }
  .hero-visual { max-width: none; margin: 0; }
  .hero-photo { aspect-ratio: 4 / 5; }
  .update-card {
    position: absolute;
    left: -18px;
    bottom: -26px;
    width: min(310px, 82%);
    margin: 0;
  }
}

/* ---------- Page banner (inner pages) ---------- */
.page-head { background: var(--peach-tint); padding: clamp(2.8rem, 6vw, 4.5rem) 0; border-bottom: 1px solid var(--peach-soft); }
.page-head h1 { margin-bottom: .3em; }
.page-head .lede { max-width: 58ch; }

/* ---------- Trust strip ---------- */
.trust { background: var(--navy); color: #fff; padding: 1.5rem 0; }
.trust ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem 2.4rem;
  list-style: none;
  margin: 0; padding: 0;
}
.trust li {
  display: flex; align-items: center; gap: .55rem;
  font-size: .88rem; font-weight: 600; letter-spacing: .03em;
}
.trust svg { width: 17px; height: 17px; color: var(--peach); flex: none; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid--3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--peach-soft); }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--ink-soft); font-size: .97rem; }
.card__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--peach-tint);
  color: var(--peach-deep);
  margin-bottom: 1rem;
}
.card__icon svg { width: 22px; height: 22px; }

/* ---------- Visit timeline (services) ---------- */
.timeline { list-style: none; margin: 0; padding: 0; max-width: 760px; }
.timeline li {
  position: relative;
  padding: 0 0 2rem 3.6rem;
  border-left: 2px solid var(--peach-soft);
  margin-left: 1.1rem;
}
.timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline li::before {
  content: attr(data-step);
  position: absolute;
  left: -1.15rem; top: 0;
  width: 2.3rem; height: 2.3rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--peach);
  color: var(--navy);
  font-family: var(--body);
  font-weight: 700;
  font-size: .85rem;
}
.timeline h3 { margin-bottom: .25rem; }
.timeline p { color: var(--ink-soft); font-size: .97rem; }

/* ---------- Price cards ---------- */
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
}
.price-card--feature { border-color: var(--peach); box-shadow: var(--shadow); position: relative; }
.price-card__tag {
  position: absolute; top: -13px; left: 1.8rem;
  background: var(--peach); color: var(--navy);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .8rem; border-radius: 999px;
}
.price-card__amount {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 500;
  font-variation-settings: 'SOFT' 40, 'WONK' 1;
  line-height: 1;
  color: var(--navy);
  margin: .4rem 0 .2rem;
}
.price-card__unit { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.4rem; }
.price-card ul { list-style: none; margin: 0 0 1.6rem; padding: 0; }
.price-card li { display: flex; gap: .6rem; align-items: flex-start; padding: .4rem 0; font-size: .96rem; color: var(--ink-soft); }
.price-card li svg { width: 17px; height: 17px; color: var(--peach-deep); flex: none; margin-top: .3rem; }
.price-card .btn { margin-top: auto; align-self: flex-start; }

.note-box {
  background: var(--peach-tint);
  border-left: 3px solid var(--peach);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.5rem;
}
.note-box h3 { font-size: 1.05rem; }
.note-box p, .note-box li { color: var(--ink-soft); font-size: .96rem; }
.note-box ul { margin: 0; padding-left: 1.1rem; }
.note-box li { padding: .2rem 0; }

/* ---------- Areas ---------- */
.area-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: .7rem;
}
.area-list li {
  display: flex; align-items: center; gap: .6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .6rem 1.1rem;
  font-weight: 600;
  font-size: .95rem;
}
.area-list li::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--peach);
  flex: none;
}

/* ---------- Testimonials ---------- */
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem 1.6rem;
  position: relative;
}
.quote-card::before {
  content: '\201C';
  position: absolute;
  top: .3rem; left: 1.4rem;
  font-family: var(--display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--peach-soft);
}
.quote-card blockquote { margin: 0; position: relative; font-size: 1.02rem; color: var(--ink); }
.quote-card cite {
  display: block;
  margin-top: 1.1rem;
  font-style: normal;
  font-weight: 700;
  font-size: .9rem;
  color: var(--peach-deep);
}
.quote-card cite span { display: block; font-weight: 500; color: var(--ink-soft); font-size: .85rem; }

.pull-quote { max-width: 800px; margin-inline: auto; text-align: center; }
.pull-quote blockquote {
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-variation-settings: 'SOFT' 40, 'WONK' 1;
  line-height: 1.35;
  color: var(--navy);
  margin: 0 0 1.2rem;
}
.pull-quote cite { font-style: normal; font-weight: 700; font-size: .92rem; color: var(--peach-deep); letter-spacing: .04em; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery figure { margin: 0; }
.gallery .shot {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--peach-soft) url('../assets/mark.png') center / 45% no-repeat;
  border: 1px solid var(--peach-soft);
}
.gallery .shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery figure:hover .shot img { transform: scale(1.04); }
.gallery figcaption { font-size: .88rem; color: var(--ink-soft); padding-top: .55rem; }
.gallery .shot--wide { aspect-ratio: 1 / 1; }

/* ---------- Split content ---------- */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split { grid-template-columns: 1fr; }
@media (min-width: 861px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split__photo { aspect-ratio: 4 / 5; }
}
.split__photo {
  aspect-ratio: 4 / 3.4;
  border-radius: 24px;
  background: var(--peach-soft) url('../assets/mark.png') center 45% / 45% no-repeat;
  border: 1px solid var(--peach-soft);
  overflow: hidden;
}
.split__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: #fff; padding: clamp(3rem, 7vw, 4.5rem) 0; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 54ch; margin-inline: auto; margin-bottom: 1.8rem; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.72); padding: 3.5rem 0 2rem; font-size: .93rem; }
.site-footer h4 { font-family: var(--body); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--peach); margin: 0 0 .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.site-footer a { color: rgba(255,255,255,.82); text-decoration: none; }
.site-footer a:hover { color: var(--peach); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: .22rem 0; }
.footer-logo { height: 54px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .92; }
.footer-social { display: flex; gap: .8rem; margin-top: 1rem; }
.footer-social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
}
.footer-social a:hover { background: var(--peach); border-color: var(--peach); color: var(--navy); }
.footer-social svg { width: 19px; height: 19px; }
.footer-base {
  margin-top: 2.6rem; padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .84rem; color: rgba(255,255,255,.55);
}

/* ---------- Floating WhatsApp (mobile) ---------- */
.float-wa {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 60;
  width: 56px; height: 56px;
  display: none;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,.45);
}
.float-wa svg { width: 28px; height: 28px; }
@media (max-width: 1080px) { .float-wa { display: grid; } }

/* ---------- Accessibility & motion ---------- */
:focus-visible { outline: 3px solid var(--peach-deep); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px;
  background: var(--navy); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 8px 0; z-index: 100;
}
.skip-link:focus { left: 0; top: 0; color: #fff; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

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

/* ==========================================================================
   Availability calendar
   ========================================================================== */
.cal-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.6rem;
  margin-bottom: 2rem;
}
.cal-updated {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--peach-tint);
  border: 1px solid var(--peach-soft);
  border-radius: 999px;
  padding: .45rem 1rem;
  font-size: .86rem; font-weight: 600; color: var(--navy);
}
.cal-updated::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--peach-deep); }

.cal-legend { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; list-style: none; margin: 0; padding: 0; }
.cal-legend li { display: flex; align-items: center; gap: .55rem; font-size: .88rem; color: var(--ink-soft); }
.cal-key { width: 20px; height: 20px; border-radius: 6px; flex: none; border: 1px solid var(--line); background: #fff; }
.cal-key--limited { background: var(--peach); border-color: var(--peach); }
.cal-key--booked  { background: var(--navy); border-color: var(--navy); }

.cal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.6rem; }

.cal-month {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem 1.4rem;
}
.cal-month h3 {
  font-size: 1.05rem;
  text-align: center;
  margin-bottom: .9rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--line);
}
.cal-week, .cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-week { margin-bottom: 6px; }
.cal-week span {
  text-align: center;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-soft);
}
.cal-day {
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  border-radius: 7px;
  font-size: .84rem; font-weight: 600;
  color: var(--ink);
  background: var(--paper-alt);
  border: 1px solid transparent;
}
.cal-day--pad { background: none; }
.cal-day--past { color: #C3CAD4; background: none; }
.cal-day--limited { background: var(--peach); color: var(--navy); }
.cal-day--booked  { background: var(--navy); color: #fff; }
.cal-day--today { border-color: var(--peach-deep); }

.cal-fallback { color: var(--ink-soft); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   Mobile hardening
   ========================================================================== */

/* Stop any single wide element from making the whole page scroll sideways.
   'clip' rather than 'hidden' so the sticky header keeps working. */
body { overflow-x: clip; }

/* Grid and flex children default to min-width:auto, which stops them shrinking
   below their content and forces overflow. This is the usual cause. */
.grid > *, .split > *, .footer-grid > *, .hero .wrap > *,
.cal-grid > *, .gallery > *, .price-card, .card, .quote-card { min-width: 0; }

/* Long unbroken strings — the Instagram handle and email address in the footer
   are wide enough to push the layout out on a narrow phone. */
p, li, a, h1, h2, h3, blockquote, cite, figcaption { overflow-wrap: break-word; }
.site-footer a, .cal-fallback { overflow-wrap: anywhere; }

/* auto-fill minmax with a fixed minimum overflows when the viewport is
   narrower than that minimum. min() caps it at the available width. */
.cal-grid  { grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr)); }
.gallery   { grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); }
.area-list { grid-template-columns: repeat(auto-fill, minmax(min(100%, 170px), 1fr)); }

/* The hero update card was absolutely positioned and hanging off the edge.
   Below 860px it now sits in the flow, tucked under the photo. */
.hero-visual { margin-bottom: 2.5rem; }

/* Small phones — tighten gutters and padding so content isn't squeezed. */
@media (max-width: 430px) {
  body { font-size: 16px; }
  .wrap { width: min(100% - 1.75rem, var(--wrap)); }
  .brand img { height: 38px; }
  .site-header .wrap { min-height: 68px; }
  .card, .price-card, .quote-card { padding: 1.4rem 1.2rem; }
  .quote-card { padding-top: 1.8rem; }
  .note-box { padding: 1.2rem 1.1rem; }
  .cal-month { padding: 1rem .85rem 1.1rem; }
  .timeline li { padding-left: 2.9rem; margin-left: .9rem; }
  .timeline li::before { width: 2rem; height: 2rem; left: -1rem; }
  .trust ul { gap: .55rem 1.3rem; }
  .trust li { font-size: .82rem; }
  .btn { padding: .8rem 1.25rem; font-size: .9rem; }
  .btn-row { gap: .6rem; }
  .price-card__amount { font-size: 2.6rem; }
  .float-wa { right: 14px; bottom: 14px; }
}

/* Landscape phones and small tablets — the gallery was dropping to one
   very tall column earlier than it needed to. */
@media (min-width: 431px) and (max-width: 700px) {
  .gallery { grid-template-columns: 1fr 1fr; }
}

/* ---- build 3 ---- */

/* ==========================================================================
   Video (About page)
   ========================================================================== */
.video-frame {
  margin: 0 auto;
  max-width: 840px;
  background: var(--navy);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video-frame video {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 76vh;
  margin-inline: auto;
  background: var(--navy);
}
.video-frame figcaption { display: none; }

.video-frame.is-empty {
  background: var(--peach-soft);
  border: 1px solid var(--peach);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  text-align: center;
}
.video-frame.is-empty video { display: none; }
.video-frame.is-empty figcaption {
  display: block;
  font-weight: 600;
  color: var(--navy);
  padding: 1.5rem;
}

@media (max-width: 640px) {
  .video-frame { border-radius: 14px; }
  .video-frame video { max-height: 68vh; }
}

/* ==========================================================================
   Peach card fills — every boxed element takes the brand peach background,
   matching the photo placeholder colour, instead of plain white.
   ========================================================================== */
.card,
.note-box,
.quote-card,
.price-card,
.area-list li,
.cal-month,
.update-card {
  background: var(--peach-soft);
  border-color: var(--peach);
}

.quote-card::before { color: var(--peach); }
.card__icon { background: #fff; }

/* deepen slightly on hover so interaction still reads */
.card:hover, .price-card:hover, .quote-card:hover, .area-list li:hover {
  background: var(--peach);
  border-color: var(--peach-deep);
}
.area-list li { transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.area-list li:hover { transform: translateY(-2px); }
.area-list li::before { background: var(--navy); }

/* calendar day cells inside the peach month cards need contrast */
.cal-day { background: #fff; }
.cal-day--past { background: none; }

/* the featured price card keeps its highlight border */
.price-card--feature { border-color: var(--peach-deep); }

/* Page header bands: step the tint up from the palest peach so the brand
   colour actually registers. Home hero gradient matched to suit. */
.page-head {
  background: var(--peach-soft);
  border-bottom-color: var(--peach);
}
.hero {
  background: linear-gradient(170deg, var(--peach-soft) 0%, #fff 72%);
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.form { margin-top: 1.4rem; }
.form label {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.form label em {
  font-style: normal;
  color: var(--peach-deep);
}
.form input,
.form textarea {
  display: block;
  width: 100%;
  margin-top: .4rem;
  padding: .8rem .9rem;
  font-family: inherit;
  font-size: .97rem;
  font-weight: 400;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form input::placeholder,
.form textarea::placeholder { color: #9AA5B5; }
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--peach);
  box-shadow: 0 0 0 3px var(--peach-tint);
}
.form textarea { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.form button { margin-top: .4rem; }
.form-note { font-size: .82rem; color: var(--ink-soft); margin-top: .9rem; }
.form-hp { position: absolute; left: -9999px; }

.contact-list { display: grid; gap: .7rem; margin-top: 1.4rem; }
.contact-row {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .95rem 1.1rem;
  background: var(--peach-soft);
  border: 1px solid var(--peach);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.contact-row:hover {
  background: var(--peach);
  border-color: var(--peach-deep);
  transform: translateY(-2px);
}
.contact-row__icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  flex: none;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
}
.contact-row__icon svg { width: 19px; height: 19px; }
.contact-row strong { display: block; color: var(--navy); font-size: .98rem; }
.contact-row em {
  display: block;
  font-style: normal;
  font-size: .86rem;
  color: var(--ink-soft);
  margin-top: .1rem;
}

/* ==========================================================================
   Update card fixes
   ========================================================================== */

/* Sit above the hero photo rather than being clipped by it */
.update-card {
  position: relative;
  z-index: 2;
}

/* The avatar circle was peach on a peach card, so it disappeared.
   White circle keeps the cat mark readable. */
.update-card__avatar {
  background-color: #fff;
  border: 1px solid var(--peach);
}

/* The two header lines relied on a <br>, which left a big gap.
   Stack them properly and tighten the spacing. */
.update-card__head > span:last-child { display: block; line-height: 1.3; }
.update-card__meta,
.update-card__time { display: block; }
.update-card__head br { display: none; }
.update-card__head { align-items: center; }

@media (max-width: 860px) {
  .update-card { margin-top: -1.6rem; }
}
