/* ============================================================
   Bruce Greenhalgh — Mindful Consultant Services
   ============================================================ */

:root {
  --navy: #156082;       /* footer, dark quote band, nav accents */
  --teal: #578f8e;        /* About page panels */
  --sky: #83cbeb;         /* light quote band, Individuals panels */
  --sage: #92bcae;        /* Organisations panels */
  --orange: #e97132;      /* Retreats accent */
  --ink: #404040;         /* headings / body text */
  --ink-muted: #666;
  --white: #ffffff;
  --grey-bg: #f2f2f2;
  --border: rgba(64, 64, 64, 0.14);
  --shadow: 0 14px 34px rgba(21, 96, 130, 0.14);
  --heading-font: 'Trebuchet MS', 'Lucida Grande', Tahoma, sans-serif;
  --body-font: 'Trebuchet MS', 'Lucida Grande', Tahoma, sans-serif;
  --radius: 10px;
}

/* Droplet accent palette, cycled across service rows */
.droplet-1 { background: #46b1e1; }
.droplet-2 { background: #c1e5f5; }
.droplet-3 { background: #2d7898; }
.droplet-4 { background: #99c7c5; }
.droplet-5 { background: var(--sage); }
.droplet-6 { background: #cfe3da; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 3.6vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.page-wrap {
  background: var(--white);
}

section { padding: 4.5rem 0; }
.section-tight { padding: 2.5rem 0; }

/* ---------- Legal pages (Privacy Policy, Terms & Conditions) ---------- */
.legal-page .container { max-width: 760px; }
.legal-updated { color: var(--ink-muted); font-style: italic; margin-bottom: 2rem; }
.legal-title-band { background: var(--navy); margin-bottom: 2rem; }
.legal-page h1 {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.7em 0;
  margin: 0;
  font-size: 1.8rem;
}
.legal-page h3 {
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.1rem;
  margin-top: 2.2rem;
}
.legal-page h3:first-of-type { margin-top: 0; }
.legal-page ul { padding-left: 1.2em; margin: 0 0 1em; }
.legal-page li { margin-bottom: 0.6em; }
.legal-page p { line-height: 1.6; }
.legal-page a { text-decoration: underline; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.75em 1.9em;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  border: 2px solid var(--ink);
  cursor: pointer;
  background: var(--white);
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
}
.header-inner {
  position: relative;
  padding: 0.5rem 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.wordmark {
  font-family: var(--heading-font);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--ink);
  flex-shrink: 0;
}

.main-nav { display: flex; align-items: center; position: absolute; left: 50%; transform: translateX(-50%); }
.main-nav > ul { display: flex; gap: 2.2rem; list-style: none; margin: 0; padding: 0; }
.main-nav a.nav-link {
  font-family: var(--heading-font);
  font-size: 0.92rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
}
.main-nav a.nav-link:hover,
.main-nav a.nav-link.active { border-color: var(--orange); }

.nav-item { position: relative; }

.header-right { display: flex; align-items: center; gap: 1.4rem; flex-shrink: 0; }
.social-icons { display: flex; gap: 0.4rem; }
.social-icons a {
  width: 30px; height: 30px; border-radius: 6px;
  background: var(--white); color: var(--navy);
  box-shadow: 0 1px 4px rgba(21, 96, 130, 0.25);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.social-icons a:hover { background: var(--orange); color: var(--white); transform: translateY(-1px); }
.social-icons svg { width: 16px; height: 16px; fill: currentColor; }
.header-right .logo-mark { width: 46px; height: auto; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.4rem; position: relative; z-index: 95; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0;
}
.hero-tagline {
  font-family: var(--heading-font);
  font-style: italic;
  color: var(--white);
  font-size: 1rem;
  padding: 0 32px;
}
.hero-title {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-title h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}

/* ---------- Home: split CTA tiles ---------- */
.split-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.split-cta > div {
  position: relative;
  min-height: 405px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: stretch;
  padding: 2.5rem;
}
.split-cta .individuals { background-position: center bottom; }
.split-cta .organisations { background-position: center top; }
.split-cta > div::before { content: ''; position: absolute; inset: 0; }
.split-cta .individuals::before { background: rgba(42, 102, 128, 0.82); }
.split-cta .organisations::before { background: none; }
.split-cta .tile-inner {
  position: relative;
  margin-left: auto;
  text-align: right;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.split-cta ul { list-style: none; margin: 0; padding: 0; }
.split-cta li {
  font-family: var(--heading-font);
  font-weight: 400;
  font-style: normal;
  color: var(--white);
  font-size: 14.7px;
  margin-bottom: 0.5em;
}
.split-cta li a { display: block; }

/* ---------- Home: About Bruce band ---------- */
.about-band {
  display: grid;
  grid-template-columns: 0.55fr 1fr 1.3fr;
  align-items: stretch;
  min-height: 405px;
}
.about-band .col-gradient {
  background: linear-gradient(to right, var(--navy), var(--white));
}
.about-band .col-teal {
  background: var(--teal);
  color: var(--white);
  padding: 1.75rem clamp(1.75rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-band .col-teal h2,
.about-band .col-teal p { max-width: 620px; }
.about-band .col-teal h2 {
  color: #3a3a3a;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.about-band .col-teal p { font-size: 1rem; line-height: 1.45; margin-bottom: 0.7em; text-align: justify; }
.about-band .col-teal p.lede { color: var(--white); }
.about-band .col-teal p.supporting { color: #595959; }
.about-band .col-teal a { color: #595959; text-decoration: underline; text-transform: uppercase; font-weight: 700; }
.about-band img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Quote bands ---------- */
.quote-band {
  position: relative;
  text-align: center;
}
.quote-band.light { background: var(--sky); }
.quote-band.dark { background: var(--navy); }
.quote-band .container { position: relative; z-index: 1; max-width: 820px; }
.quote-band.light .container { max-width: 660px; }
.quote-band blockquote {
  font-family: var(--heading-font);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.5;
  margin: 0;
  color: var(--white);
}
.quote-band blockquote em { font-style: italic; font-weight: 600; }
.drop {
  position: absolute;
  z-index: 2;
  display: block;
}
.quote-band.light .drop-a { width: 158px; height: 158px; top: 40px; left: 30px; transform: rotate(-10deg); }
.quote-band.light .drop-b { width: 102px; height: 102px; opacity: 0.85; top: -30px; right: 300px; transform: rotate(25deg); }
.quote-band.light .drop-c { width: 204px; height: 204px; bottom: 25px; right: 45px; transform: rotate(10deg); }

/* ---------- Home: photo CTA band (Kyparissi) ---------- */
.photo-cta {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 420px;
  display: flex;
  align-items: flex-start;
  padding: 2.2rem 2.5rem;
}
.photo-cta::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.05) 40%); }
.photo-cta .label { position: relative; color: var(--white); }
.photo-cta .label .eyebrow { display: block; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.3em; }
.photo-cta .label h2 { color: var(--white); font-weight: 400; margin: 0; }

.retreat-cta-block { position: relative; }
.photo-cta-band {
  background: var(--white);
  padding: 1.8rem 0;
  display: flex;
  justify-content: center;
  position: relative;
}
.photo-cta-band .btn {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ---------- Credentials strip ---------- */
.credentials-strip {
  background: var(--grey-bg);
  padding: 2.6rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.credentials-strip img { height: 48px; width: auto; }
.credentials-strip img.logo-accenture { height: 38.4px; }

/* ---------- Home: spacing between blocks ---------- */
.home-blocks > * + * { margin-top: 2.5rem; }
.home-blocks > .credentials-strip { margin-top: 0; }
.home-blocks { padding-bottom: 2.5rem; }

/* ---------- Zigzag service rows (Individuals / Organisations) ---------- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
  max-width: 1600px;
  margin: 0 auto;
}
.service-row .col-drop { display: flex; align-items: center; justify-content: center; }
.service-row .col-panel { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.service-row.alt .col-drop { order: 2; }
.service-row.alt .col-panel { order: 1; }

.droplet {
  width: 280px;
  height: 280px;
  border-radius: 0 50% 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}
.droplet.rot-1 { border-radius: 0 50% 50% 50%; }
.droplet.rot-2 { border-radius: 50% 0 50% 50%; }
.droplet.rot-3 { border-radius: 50% 50% 50% 0; }
.droplet.rot-4 { border-radius: 50% 50% 0 50%; }
.droplet span {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  text-transform: uppercase;
}

.col-panel p { margin: 0 0 0.9em; }
.col-panel p:last-child { margin-bottom: 0; }
.col-panel .fee a { text-decoration: underline; }

.bg-sky { background: var(--sky); }
.bg-sage { background: var(--sage); }
.bg-teal { background: var(--teal); color: var(--white); }

/* ---------- Service row heading style (Individuals + Organisations) ---------- */
.service-row .col-panel h3 { text-transform: uppercase; }

/* ---------- Individuals page ---------- */
#individuals-page .hero-title h1 { color: var(--ink); }
#individuals-page .service-row { max-width: none; min-height: 420px; }
#individuals-page .col-drop { background: var(--white); }
#therapy .droplet { background: #46B1E1; width: 300px; height: 300px; }
#mindfulness .droplet { background: #C1E5F5; width: 260px; height: 260px; }
#retreats .droplet { background: #4E95D9; width: 210px; height: 210px; }
#supervision .droplet { background: #DCEAF7; width: 235px; height: 235px; }

/* ---------- Organisations (compact bullet variant) ---------- */
.col-panel ul { margin: 0; padding-left: 1.2em; }
.col-panel li { margin-bottom: 0.7em; }
.col-panel li:last-child { margin-bottom: 0; }

#organisations-page .hero-title h1 { color: var(--ink); }
#organisations-page .service-row { max-width: none; min-height: 420px; }
#organisations-page .col-drop { background: var(--white); }
#organisations-page .droplet span { color: var(--white); }
#training .droplet { background: #5EA6A3; width: 200px; height: 200px; }
#mental-health .droplet { background: #385A59; width: 235px; height: 235px; }
#wellbeing .droplet { background: #A7C9B0; width: 265px; height: 265px; }
#crisis .droplet { background: #457B78; width: 225px; height: 225px; }
#keynotes .droplet { background: #5EA6A3; width: 200px; height: 200px; }
#retreats-offsites .droplet { background: #C5DDD2; width: 175px; height: 175px; }

/* ---------- About page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.about-grid > .bg-teal {
  width: 75%;
  margin-left: 20px;
  padding: 60px 100px 20px;
  margin-top: -383px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.about-grid .bg-teal h2 {
  color: var(--ink);
  text-transform: uppercase;
}

.about-grid .bg-teal a {
  color: var(--white);
  text-decoration: underline;
}

.about-grid .bg-teal p,
.framed-col .overlap-panel p,
.qualifications-grid p,
.photo-overlap .overlap-panel p {
  text-align: justify;
}

/* framed photo + overlapping panel (My Story) */
.framed-col {
  position: relative;
  padding: 10px 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.framed-col .framed-photo {
  width: 32.5%;
  box-shadow: var(--shadow);
  display: block;
  margin-top: -353px;
  margin-right: 40px;
  position: relative;
  z-index: 3;
}

.framed-col .overlap-panel {
  width: calc(100% + 63px);
  align-self: flex-start;
  flex: 1;
  margin-left: -32px;
  margin-top: 54px;
  position: relative;
  z-index: 2;
  padding: 60px 100px 20px;
  color: var(--ink);
}

.framed-col .overlap-panel h2 {
  text-transform: uppercase;
}

.qualifications-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 575px 575px;
}

.qualifications-grid > .bg-sky {
  padding: 60px 100px 20px;
}

.qualifications-grid > .bg-sky:first-child {
  max-height: 575px;
  overflow-y: auto;
}

.qualifications-grid ul {
  padding-left: 1.2em;
  margin: 0;
}

.qualifications-grid li {
  margin-bottom: 0.7em;
}

.qualifications-grid h3 {
  margin-top: 1.6rem;
  text-transform: uppercase;
}

.qualifications-grid h3:first-child {
  margin-top: 0;
}

.badge-row {
  display: flex;
  gap: 1.6rem;
  margin-top: 1.4rem;
  align-items: center;
  flex-wrap: wrap;
}

.badge-row img {
  height: 52px;
  width: auto;
}

.org-list {
  margin-top: 0.5rem;
}

/* plain photo with large overlapping panel (Who I Work With) */
.photo-overlap {
  position: relative;
}

.photo-overlap > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-overlap .overlap-panel {
  position: absolute;
  top: 50%;
  left: 10px;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  padding: 60px 100px 20px;
}

.photo-plain {
  position: relative;
}

.photo-plain img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.logo-strip {
  display: flex;
  gap: 2rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}

.logo-strip img {
  height: 30px;
  width: auto;
}
/* ---------- Retreats page ---------- */
.retreat-title-band {
  background: var(--orange);
  color: var(--white);
  padding: 1.4rem 0;
}
.retreat-title-band h2 { color: var(--white); margin: 0; }
.retreat-title-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.retreat-title-row h2 { flex-shrink: 0; }
.retreat-title-band .dates { font-weight: 600; font-size: 0.95rem; text-align: right; min-width: 0; }

.retreat-section { background: var(--grey-bg); padding: 3rem 0; }
.retreat-section a, .booking-panel a { text-decoration: underline; }
.retreat-section h3 { margin-top: 1.6rem; text-transform: uppercase; }
.retreat-section h3:first-child { margin-top: 0; }

.schedule-table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.schedule-table td { padding: 0.5em 1em 0.5em 0; vertical-align: top; }
.schedule-table td:first-child { font-weight: 700; white-space: nowrap; padding-right: 2rem; }

.booking-panel {
  background: var(--grey-bg);
  padding: 2.5rem 0;
}
.booking-panel .booking-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
}
.booking-panel img { width: 100%; height: auto; }
.booking-panel dl { margin: 0; }
.booking-panel dt { font-weight: 700; }
.booking-panel dd { margin: 0 0 0.9em; }

.retreat-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.retreat-gallery img { width: 100%; height: 280px; object-fit: cover; }

/* ---------- Contact page ---------- */
.contact-hero {
  position: relative;
  background-size: cover;
  background-position: center top;
  padding-top: 1.6rem;
  height: 460px;
}
.contact-form-card {
  position: relative;
  background: var(--white);
  width: 100%;
  max-width: 1000px;
  margin: -190px auto 100px;
  padding: 2.5rem 3rem 3rem;
  box-shadow: var(--shadow);
}
.contact-form-card h1 { text-align: center; text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-field { margin-bottom: 1.3rem; }
label { display: block; font-size: 0.88rem; margin-bottom: 0.4em; }
input, textarea {
  width: 100%;
  padding: 0.7em 0.9em;
  border: 1px solid var(--border);
  font-family: var(--body-font);
  font-size: 1rem;
  background: var(--white);
  color: var(--ink);
}
input:focus, textarea:focus { outline: 2px solid var(--sky); }
textarea { resize: vertical; min-height: 130px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.88); padding: 3.5rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-grid > * { min-width: 0; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.6em; font-size: 0.9rem; }
.footer-col li a { text-decoration: underline; text-transform: uppercase; letter-spacing: 0.03em; }
.footer-col a:hover { color: var(--white); }
.footer-brand { display: flex; gap: 1.2rem; align-items: flex-start; }
.footer-brand > div { min-width: 0; }
.footer-brand .logo-mark { width: 70px; height: auto; flex-shrink: 0; }
.footer-brand h4 { font-size: 1.4rem; text-transform: none; letter-spacing: normal; margin-bottom: 0.6rem; }
.footer-brand a { text-decoration: underline; overflow-wrap: break-word; font-size: 0.82rem; }
.footer-brand .meta { margin-top: 1rem; font-size: 0.85rem; opacity: 0.85; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 1.6rem 0;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.footer-bottom a:hover { text-decoration: underline; }

/* ---------- Responsive ---------- */
/* About page: stack to full-width earlier than the general mobile
   breakpoint, since the two-column grid gets squeezed narrow enough
   in the 900-1150px tablet range to force excessive text wrapping
   (and, via grid stretch/flex:1, that height growth carries over
   into the My Story panel too). */
@media (max-width: 1150px) {
  .about-grid, .qualifications-grid { grid-template-columns: 1fr; }
  .about-grid > .bg-teal { width: 100%; margin-left: 0; padding: 20px 40px; }
  .qualifications-grid { grid-template-rows: none; grid-auto-rows: auto; }
  .qualifications-grid > .bg-sky { padding: 20px 40px; }
  .qualifications-grid > .bg-sky:first-child { max-height: none; overflow-y: visible; }
  .photo-plain { min-height: 260px; }
  .photo-overlap { min-height: 580px; }
  .framed-col { padding: 10px 1.5rem 0; align-items: center; }
  .framed-col .framed-photo { width: 40%; margin-top: 20px; margin-right: 0; }
  .framed-col .overlap-panel { width: calc(100% + 48px); align-self: flex-start; margin-left: -24px; margin-top: -8px; padding: 20px 40px; }
  .photo-overlap .overlap-panel { padding: 20px 40px; }
}

@media (max-width: 900px) {
  .main-nav { position: fixed; inset: 0 0 0 auto; width: min(320px, 85vw); background: var(--white); flex-direction: column; align-items: flex-start; padding: 5.5rem 1.8rem 2rem; box-shadow: -12px 0 30px rgba(0,0,0,0.15); transform: translateX(100%); transition: transform 0.3s ease; z-index: 90; }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; gap: 0.3rem; width: 100%; }
  .nav-item { width: 100%; }
  .nav-toggle { display: block; }

  .split-cta { grid-template-columns: 1fr; }
  .split-cta .tile-inner { text-align: left; margin-left: 0; }
  .retreat-title-row { flex-wrap: wrap; }
  .retreat-title-band .dates { text-align: left; flex-basis: 100%; }
  .about-band, .booking-panel .booking-grid, .service-row, .service-row.alt { grid-template-columns: 1fr; }
  .service-row .col-drop, .service-row.alt .col-drop { order: 1; padding: 10px 0; }
  .service-row .col-panel, .service-row.alt .col-panel { order: 2; }
  .retreat-gallery { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { width: calc(100% - 2rem); padding: 2rem 1.5rem 2.5rem; margin: -160px 1rem 100px; }

  .quote-band.light .drop-a { width: 70px; height: 70px; top: -34px; left: 12px; right: auto; bottom: auto; }
  .quote-band.light .drop-b { width: 46px; height: 46px; top: -26px; right: 18px; left: auto; bottom: auto; }
  .quote-band.light .drop-c { width: 90px; height: 90px; bottom: -58px; right: 16px; left: auto; top: auto; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .retreat-gallery { grid-template-columns: 1fr; }
  section { padding: 3rem 0; }
  .droplet { width: 220px; height: 220px; }

  .header-inner { padding: 0.4rem 12px; gap: 0.35rem; }
  .wordmark { font-size: 1.05rem; }
  .header-right { gap: 0.5rem; }
  .social-icons { gap: 0.25rem; }
  .social-icons a { width: 24px; height: 24px; }
  .social-icons svg { width: 13px; height: 13px; }
  .header-right .logo-mark { width: 28px; }
  .nav-toggle { padding: 0.25rem; }
  .hero-tagline { padding: 0 12px; }
}
