/* G&G Hair & Beauty by Aoibheann Walsh
   Rebuild of aoibheannwalsh.com. Palette and type follow her old site:
   blush pink, charcoal, gold accents, Montserrat headings, Open Sans body. */

:root {
  --cream: #fbf8f7;
  --white: #ffffff;
  --blush: #f4e4e4;
  --blush-2: #eed6d7;
  --rose: #d2b2b4;
  --ink: #24211f;
  --charcoal: #544f47;
  --taupe: #8b8279;
  --line: rgba(84, 79, 71, 0.18);
  --line-strong: rgba(84, 79, 71, 0.4);
  --gold: #b99a5b;
  --gold-soft: rgba(185, 154, 91, 0.35);
  --shadow: 0 24px 50px -30px rgba(36, 33, 31, 0.45);
  --radius: 6px;
  --head: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --body: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --nav-h: 76px;
  --wrap: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--head); margin: 0; line-height: 1.15; text-wrap: balance; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.wrap { width: min(var(--wrap), calc(100% - 2.5rem)); margin: 0 auto; }
.wrap-narrow { width: min(760px, calc(100% - 2.5rem)); margin: 0 auto; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }
.bg-blush { background: var(--blush); }
.bg-white { background: var(--white); }
.bg-dark { background: var(--ink); color: var(--cream); }

/* ---- Type ---- */
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--head); font-weight: 500; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); flex: none; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 28px; height: 1px; background: var(--gold); flex: none; }
.bg-dark .eyebrow { color: var(--rose); }

.h-display {
  font-family: var(--serif); font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem); line-height: 1.12;
}
.h-sub {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.6rem); color: var(--taupe); margin-top: 10px;
}
.bg-dark .h-sub { color: var(--rose); }
.lead { font-size: 1.08rem; color: var(--charcoal); }
.center { text-align: center; }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-left: auto; margin-right: auto; }
.measure { max-width: 66ch; }
.serif-quote {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.35; color: var(--charcoal);
}

/* ---- Buttons (max two hues per row) ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--head); font-weight: 500; font-size: 11.5px; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none; cursor: pointer;
  padding: 15px 28px; border-radius: 4px; border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-fill { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-fill:hover { background: var(--charcoal); border-color: var(--charcoal); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-line:hover { border-color: var(--ink); }
.btn-light { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-light:hover { background: var(--white); }
.btn-light-line { background: transparent; color: var(--cream); border-color: rgba(251, 248, 247, 0.6); }
.btn-light-line:hover { border-color: var(--cream); }
.btn-gold { background: linear-gradient(135deg, #c8aa70, #b3935a 55%, #8f7340); color: var(--white); border-color: transparent; }
.btn-gold:hover { filter: brightness(1.06); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.text-link {
  font-family: var(--head); font-weight: 500; font-size: 11.5px; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none; color: var(--ink);
  display: inline-flex; align-items: center; gap: 10px; padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
}
.text-link:hover { border-color: var(--ink); }
.bg-dark .text-link { color: var(--cream); }

/* ---- Header ---- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--nav-h);
  transition: box-shadow 0.25s ease;
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(251, 248, 247, 0.86);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header.scrolled { box-shadow: 0 12px 30px -24px rgba(36, 33, 31, 0.5); }
.nav { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: block; padding: 10px 10px; text-decoration: none; white-space: nowrap;
  font-family: var(--head); font-weight: 500; font-size: 11px; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--charcoal); border-bottom: 1px solid transparent;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"] { border-bottom-color: var(--gold); }
.nav-links .nav-cta { margin-left: 8px; padding: 11px 16px; background: var(--ink); color: var(--cream); border-radius: 4px; }
.nav-links .nav-cta:hover { background: var(--charcoal); }
.nav-burger {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px; padding: 0;
}
.nav-burger span { width: 24px; height: 1.5px; background: var(--ink); transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---- Hero slider ---- */
.hero {
  position: relative; margin-top: var(--nav-h); overflow: hidden;
  height: clamp(600px, 84vh, 860px); background: var(--blush);
}
.slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 0.9s ease, visibility 0.9s; }
.slide.active { opacity: 1; visibility: visible; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: var(--focus, center); }
.slide-copy {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: min(620px, 50%); padding: 0 2.5rem;
}
.slide-copy.right { right: 3vw; }
.slide-copy.left { left: 3vw; }
.slide-copy .eyebrow { color: var(--charcoal); }
.slide-copy h1, .slide-copy h2 {
  font-family: var(--serif); font-weight: 500; font-size: clamp(2.4rem, 4.4vw, 4rem); line-height: 1.05;
  letter-spacing: 0.005em; color: var(--ink); text-transform: none;
}
.slide-copy p { margin: 16px 0 24px; font-size: 1.05rem; color: var(--charcoal); max-width: 42ch; }
.hero-nav { position: absolute; bottom: 22px; left: 0; right: 0; display: flex; justify-content: center; gap: 10px; z-index: 3; }
.hero-dot { width: 32px; height: 3px; border: 0; padding: 0; background: rgba(36, 33, 31, 0.25); cursor: pointer; transition: background 0.2s ease; }
.hero-dot[aria-current="true"] { background: var(--ink); }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-strong);
  background: rgba(251, 248, 247, 0.7); color: var(--ink); cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.hero-arrow.prev { left: 18px; }
.hero-arrow.next { right: 18px; }

/* ---- Page hero (inner pages) ---- */
.page-hero {
  margin-top: var(--nav-h); position: relative; overflow: hidden;
  min-height: clamp(300px, 34vw, 440px); display: flex; align-items: flex-end; background: var(--blush);
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--focus, center); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(244, 228, 228, 0.96) 0%, rgba(244, 228, 228, 0.35) 45%, rgba(244, 228, 228, 0) 100%); }
.page-hero .wrap { position: relative; z-index: 1; padding: 48px 0 40px; }
.page-hero h1 { font-family: var(--serif); font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.page-hero .h-sub { color: var(--charcoal); }
.crumbs { font-family: var(--head); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 14px; }
.crumbs a { text-decoration: none; }
.crumbs span { margin: 0 8px; color: var(--gold); }

/* ---- Grids and cards ---- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.img-card { position: relative; display: block; text-decoration: none; border-radius: var(--radius); overflow: hidden; background: var(--blush-2); }
.img-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 0.6s ease; }
.img-card:hover img { transform: scale(1.03); }
.img-card .label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 60px 22px 20px;
  background: linear-gradient(to top, rgba(36, 33, 31, 0.72), rgba(36, 33, 31, 0));
  color: var(--cream);
}
.img-card .label h3 { font-weight: 400; font-size: 1.05rem; letter-spacing: 0.12em; text-transform: uppercase; }
.img-card .label span { font-family: var(--serif); font-style: italic; font-size: 1.05rem; opacity: 0.9; }

.tile { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); display: flex; flex-direction: column; }
.tile img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: var(--focus, center); }
.tile-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tile-body h3 { font-weight: 400; font-size: 1.05rem; letter-spacing: 0.1em; text-transform: uppercase; }
.tile-body p { color: var(--charcoal); font-size: 0.95rem; }
.tile-body .text-link { margin-top: auto; align-self: flex-start; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split img.portrait { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); }
.split .content { max-width: 56ch; }

/* ---- Reviews ---- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 14px;
}
.review .stars { color: var(--gold); letter-spacing: 3px; font-size: 13px; }
.review h3 { font-weight: 500; font-size: 0.95rem; letter-spacing: 0.06em; }
.review p { font-family: var(--serif); font-size: 1.12rem; line-height: 1.5; color: var(--charcoal); }
.review.clamp p { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.review footer { margin-top: auto; font-family: var(--head); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe); }
.review footer strong { color: var(--ink); font-weight: 500; display: block; margin-bottom: 2px; }
.review-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.review-list .review.long { grid-column: 1 / -1; }

/* ---- Gallery ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-grid a { display: block; border-radius: var(--radius); overflow: hidden; background: var(--blush-2); }
.gallery-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: var(--focus, center); transition: transform 0.6s ease; }
.gallery-grid a:hover img { transform: scale(1.04); }
.gallery-grid .wide { grid-column: span 2; }
.gallery-grid .wide img { aspect-ratio: 2.05; }

/* ---- Videos ---- */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.event details .select-grid { grid-template-columns: 1fr; gap: 8px; }
.select-grid label small { display: block; flex-basis: 100%; margin-left: 26px; color: var(--taupe); font-size: 0.8rem; }
.select-grid label:has(small) { flex-wrap: wrap; }
.soon-panel { background: var(--blush); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 4vw, 44px); text-align: center; }
.soon-panel p:not(.eyebrow) { max-width: 52ch; margin: 12px auto 0; color: var(--charcoal); }
.price-cards.five { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1080px) { .price-cards.five { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .price-cards.five { grid-template-columns: 1fr; } }
.video-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; display: flex; flex-direction: column; }
.video-card > img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.video-card .video-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.video-card h3 { font-weight: 500; font-size: 1.15rem; margin: 6px 0 10px; }
.video-card p { color: var(--charcoal); font-size: 0.95rem; }
.video-chapters { margin: 14px 0 0; padding: 0 0 0 18px; color: var(--taupe); font-size: 0.88rem; display: grid; gap: 4px; }
.video-card .btn-row { margin-top: auto !important; padding-top: 18px; }
.video { border-radius: var(--radius); overflow: hidden; background: var(--ink); }
.video iframe, .video img { width: 100%; aspect-ratio: 16 / 9; display: block; border: 0; object-fit: cover; }
.video figcaption { padding: 14px 4px 0; font-family: var(--head); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); }
.video { background: transparent; }
.video .frame { border-radius: var(--radius); overflow: hidden; background: var(--ink); }

/* ---- Services page ---- */
.svc-block { display: grid; grid-template-columns: 300px 1fr; gap: clamp(28px, 5vw, 64px); padding: clamp(40px, 6vw, 64px) 0; border-top: 1px solid var(--line); }
.svc-block:first-of-type { border-top: 0; padding-top: 0; }
.svc-block h2 { position: sticky; top: calc(var(--nav-h) + 24px); }
.svc-block img { border-radius: var(--radius); aspect-ratio: 4 / 5; object-fit: cover; margin-top: 18px; }
.svc-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 40px; }
.svc-group h3 { font-weight: 500; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.svc-group ul { list-style: none; margin: 0; padding: 0; }
.svc-group li { padding: 7px 0; border-bottom: 1px dotted var(--line); font-size: 0.95rem; display: flex; justify-content: space-between; gap: 16px; }
.svc-group li:last-child { border-bottom: 0; }
.svc-group li small { color: var(--taupe); font-family: var(--head); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
.note { font-size: 0.9rem; color: var(--taupe); }

/* ---- Steps / lists ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { padding: 28px 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--serif); font-style: italic; font-size: 2rem; color: var(--gold); display: block; line-height: 1; margin-bottom: 14px; }
.step h3 { font-weight: 500; font-size: 0.95rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.step p { font-size: 0.95rem; color: var(--charcoal); }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.check-list li { padding-left: 26px; position: relative; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 0.75em; width: 14px; height: 1px; background: var(--gold); }

/* ---- Info strip (location, hours, contact) ---- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.info h3 { font-weight: 500; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 14px; color: var(--taupe); }
.bg-dark .info h3 { color: var(--rose); }
.info p, .info li { margin: 0; }
.info a { text-decoration: none; }
.info a:hover { text-decoration: underline; text-underline-offset: 3px; }
.hours { list-style: none; margin: 0; padding: 0; }
.hours li { display: flex; justify-content: space-between; gap: 16px; padding: 5px 0; border-bottom: 1px dotted var(--line); font-variant-numeric: tabular-nums; }
.hours li:last-child { border-bottom: 0; }
.bg-dark .hours li { border-color: rgba(251, 248, 247, 0.18); }
.map { margin-top: 40px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map iframe { width: 100%; height: 360px; display: block; border: 0; filter: grayscale(0.4); }

/* ---- Forms ---- */
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field label, .form legend { font-family: var(--head); font-weight: 500; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--charcoal); }
.form input, .form select, .form textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink); background: var(--white);
  border: 1px solid var(--line-strong); border-radius: 4px; padding: 13px 14px;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.form textarea { min-height: 140px; resize: vertical; }
.form fieldset { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 18px 8px; margin: 0; }
.form fieldset legend { padding: 0 8px; }
.form-fine { font-size: 0.85rem; color: var(--taupe); }
.form-done { padding: 28px; border: 1px solid var(--gold-soft); border-radius: var(--radius); background: var(--white); }
.form-done h3 { font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.form-error { padding: 14px 16px; border: 1px solid #c9776f; border-radius: 4px; color: #8f3b33; background: #fbecea; font-size: 0.92rem; }
.radio-row { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.radio-row label { display: flex; align-items: center; gap: 8px; font-family: var(--body); font-size: 15px; text-transform: none; letter-spacing: 0; color: var(--ink); }
.radio-row input { width: auto; accent-color: var(--ink); }

/* ---- News ---- */
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.post { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 32px 30px; }
.post .meta { font-family: var(--head); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe); margin-bottom: 12px; }
.post h2 { font-weight: 400; font-size: 1.25rem; letter-spacing: 0.02em; margin-bottom: 14px; }
.post p, .post li { color: var(--charcoal); font-size: 0.97rem; }
.post ul { padding-left: 18px; margin: 0 0 1em; }
.post .frame { border-radius: var(--radius); overflow: hidden; margin: 0 0 18px; background: var(--ink); }
.post iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; }

/* ---- Award / stat row ---- */
.honours { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.honour { padding: 26px 0 0; border-top: 1px solid var(--gold-soft); }
.honour strong { display: block; font-family: var(--head); font-weight: 400; font-size: 1.05rem; letter-spacing: 0.06em; margin-bottom: 6px; }
.honour span { font-size: 0.92rem; color: var(--charcoal); }
.bg-dark .honour span { color: var(--rose); }

/* ---- CTA band ---- */
.cta-band { position: relative; overflow: hidden; color: var(--cream); }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--focus, center); }
.cta-band::after { content: ""; position: absolute; inset: 0; background: rgba(36, 33, 31, 0.62); }
.cta-band .wrap { position: relative; z-index: 1; padding: clamp(72px, 10vw, 130px) 0; text-align: center; }
.cta-band .h-display { color: var(--cream); }
.cta-band p { max-width: 52ch; margin: 16px auto 28px; color: rgba(251, 248, 247, 0.85); }
.cta-band .btn-row { justify-content: center; }

/* ---- Footer ---- */
.site-footer { background: var(--ink); color: rgba(251, 248, 247, 0.85); padding: clamp(56px, 7vw, 88px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand img { height: 46px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 0.92rem; max-width: 34ch; }
.site-footer h3 { font-weight: 500; font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose); margin-bottom: 14px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; font-size: 0.95rem; }
.site-footer .hours li { border-color: rgba(251, 248, 247, 0.14); padding: 4px 0; }
.footer-bottom { border-top: 1px solid rgba(251, 248, 247, 0.14); padding: 22px 0; font-size: 0.82rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; color: rgba(251, 248, 247, 0.6); }
.footer-bottom a { color: rgba(251, 248, 247, 0.8); }

/* ---- Mobile action bar ---- */
.mobile-bar { display: none; }

/* ---- Responsive ---- */
@media (max-width: 1180px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 10px 0 18px; max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
    visibility: hidden; opacity: 0; transform: translateY(-10px); pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  }
  .nav-links.open { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a { padding: 13px 1.25rem; border-bottom: 0; }
  .nav-links a[aria-current="page"] { color: var(--ink); background: var(--blush); }
  .nav-links .nav-cta { margin: 10px 1.25rem 0; text-align: center; }
}
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .honours { grid-template-columns: repeat(2, 1fr); }
  .svc-block { grid-template-columns: 240px 1fr; }
}
@media (max-width: 900px) {
  :root { --nav-h: 66px; }
  .brand img { height: 36px; }

  .hero { height: auto; min-height: 78vh; }
  .slide { display: flex; align-items: flex-end; }
  .slide img { position: absolute; inset: 0; }
  .slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(244, 228, 228, 0.97) 0%, rgba(244, 228, 228, 0.7) 40%, rgba(244, 228, 228, 0) 75%); }
  .slide-copy { position: relative; top: auto; transform: none; width: 100%; padding: 46vh 1.25rem 64px; left: auto; right: auto; z-index: 2; }
  .slide-copy.right, .slide-copy.left { left: auto; right: auto; }
  .hero-arrow { display: none; }

  .grid-2, .grid-3, .review-grid, .video-grid, .steps, .info-grid, .post-grid, .review-list { grid-template-columns: 1fr; }
  .review-list .review.long { grid-column: auto; }
  .split { grid-template-columns: 1fr; }
  .svc-block { grid-template-columns: 1fr; }
  .svc-block h2 { position: static; }
  .svc-block img { display: none; }
  .svc-groups { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }

  body { padding-bottom: 64px; }
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(251, 248, 247, 0.94); border-top: 1px solid var(--line);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  }
  .mobile-bar .btn { padding: 13px 10px; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .honours { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .review-grid .review.clamp p { -webkit-line-clamp: 8; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ---- Rose gold button (Aoibheann's request for the PhiBrows Instagram link) ---- */
.btn-rose { background: linear-gradient(135deg, #d9b2a8, #b98a7a); color: #2b1f1c; border-color: transparent; }
.btn-rose:hover { background: linear-gradient(135deg, #e2bfb5, #c39685); }

/* ---- Hero price line ---- */
.price-line { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--charcoal); margin-top: 6px; }
.price-line strong { font-style: normal; font-family: var(--head); font-weight: 400; font-size: 1.6rem; color: var(--ink); letter-spacing: 0.02em; }

/* ---- Agency artists ---- */
.artist-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.artist { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.artist .photo { aspect-ratio: 4 / 5; background: var(--blush); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.artist .photo img { width: 100%; height: 100%; object-fit: cover; }
.artist .initials { font-family: var(--serif); font-style: italic; font-size: 3rem; color: var(--rose); }
.artist .photo .pending { position: absolute; bottom: 10px; left: 10px; right: 10px; font-family: var(--head); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe); text-align: center; }
.artist .body { padding: 16px 16px 18px; }
.artist h3 { font-weight: 500; font-size: 0.95rem; letter-spacing: 0.04em; margin-bottom: 4px; }
.artist p { font-size: 0.82rem; color: var(--taupe); margin: 0; font-family: var(--head); letter-spacing: 0.06em; text-transform: uppercase; }
.artist .body small { display: block; margin-top: 8px; font-size: 0.82rem; color: var(--charcoal); }
.select-grid .clinic { display: grid; gap: 4px; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.select-grid .clinic small { color: var(--taupe); font-size: 0.8rem; }
.artist .work { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 12px; }
.artist .work a { display: block; border-radius: 4px; overflow: hidden; background: var(--blush); }
.artist .work img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; transition: transform 0.5s ease; }
.artist .work a:hover img { transform: scale(1.06); }

/* ---- Voucher / price cards ---- */
.price-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.price-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 30px 26px 28px; display: flex; flex-direction: column; gap: 12px; text-align: center; }
.price-card .amount { font-family: var(--serif); font-style: italic; font-size: 3rem; line-height: 1; color: var(--ink); }
.price-card .amount small { font-size: 1.6rem; vertical-align: 0.5em; margin-right: 1px; }
.price-card h3 { font-weight: 500; font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); }
.price-card p { font-size: 0.9rem; color: var(--charcoal); flex: 1; }
.price-card .btn { width: 100%; }
.price-card.featured { border-color: var(--gold); box-shadow: var(--shadow); }
.pay-note { margin-top: 18px; padding: 14px 16px; border: 1px solid var(--gold-soft); border-radius: 4px; background: var(--white); font-size: 0.92rem; color: var(--charcoal); }

/* ---- Chapters (a real sequence, so numbering carries meaning) ---- */
.chapters { list-style: none; margin: 0; padding: 0; counter-reset: ch; border-top: 1px solid var(--line); }
.chapters li { counter-increment: ch; display: grid; grid-template-columns: 64px 1fr auto; gap: 18px; align-items: baseline; padding: 18px 0; border-bottom: 1px solid var(--line); }
.chapters li::before { content: counter(ch, decimal-leading-zero); font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--gold); }
.chapters h3 { font-weight: 500; font-size: 1rem; letter-spacing: 0.04em; margin-bottom: 4px; }
.chapters p { font-size: 0.92rem; color: var(--charcoal); margin: 0; }
.chapters span { font-family: var(--head); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe); white-space: nowrap; }
.buy-box { border: 1px solid var(--gold); border-radius: var(--radius); background: var(--white); padding: 32px 30px; position: sticky; top: calc(var(--nav-h) + 24px); }
.buy-box .amount { font-family: var(--serif); font-style: italic; font-size: 3.2rem; line-height: 1; margin: 6px 0 4px; }
.buy-box ul { list-style: none; padding: 0; margin: 18px 0 22px; display: grid; gap: 8px; font-size: 0.92rem; color: var(--charcoal); }
.buy-box li { padding-left: 22px; position: relative; }
.buy-box li::before { content: ""; position: absolute; left: 0; top: 0.75em; width: 12px; height: 1px; background: var(--gold); }
.buy-box .btn { width: 100%; }
.locked { border: 1px solid var(--line); border-radius: var(--radius); background: var(--blush); aspect-ratio: 16 / 9; display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px; }
.locked p { max-width: 36ch; color: var(--charcoal); }

/* ---- Events ---- */
.event-list { display: grid; gap: 22px; }
.event { display: grid; grid-template-columns: 150px 1fr; gap: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 28px; }
.event .date { border-right: 1px solid var(--line); padding-right: 24px; }
.event .date strong { display: block; font-family: var(--serif); font-style: italic; font-size: 2.6rem; line-height: 1; color: var(--ink); }
.event .date span { font-family: var(--head); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe); }
.event h3 { font-weight: 400; font-size: 1.2rem; letter-spacing: 0.04em; margin-bottom: 6px; }
.event .venue { font-family: var(--head); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe); margin-bottom: 12px; }
.event p { font-size: 0.95rem; color: var(--charcoal); }
.event details { margin-top: 14px; }
.event summary { cursor: pointer; list-style: none; display: inline-flex; }
.event summary::-webkit-details-marker { display: none; }
.event details[open] summary { display: none; }
.event .form { margin-top: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.event.past { opacity: 0.85; }
.event.past .date strong { color: var(--taupe); }

/* ---- Dark landing (Sashsó) ---- */
.page-dark { --cream: #f1ebe8; --white: #1c1919; --blush: #221d1d; --blush-2: #2a2424; --ink: #f1ebe8; --charcoal: #d3c8c2; --taupe: #a8998f; --line: rgba(241, 235, 232, 0.14); --line-strong: rgba(241, 235, 232, 0.35); --gold: #c9ab6c; --gold-soft: rgba(201, 171, 108, 0.4); background: #141212; color: #f1ebe8; }
.page-dark .site-header::before { background: rgba(20, 18, 18, 0.82); border-bottom-color: var(--line); }
.page-dark .nav-links a { color: var(--charcoal); }
.page-dark .nav-links .nav-cta { background: var(--gold); color: #141212; }
.page-dark .nav-burger span { background: var(--cream); }
.page-dark .btn-fill { background: var(--gold); color: #141212; border-color: var(--gold); }
.page-dark .btn-fill:hover { background: #d8bb80; border-color: #d8bb80; }
.page-dark .btn-line { color: var(--cream); border-color: var(--line-strong); }
.page-dark .form input, .page-dark .form select, .page-dark .form textarea { background: #1c1919; color: var(--cream); border-color: var(--line-strong); }
.page-dark .form-done { background: #1c1919; }
.page-dark .site-footer { border-top: 1px solid var(--line); }
.page-dark .mobile-bar { background: rgba(20, 18, 18, 0.94); }
.page-dark .mobile-bar .btn-line { color: var(--cream); }
.dark-hero { margin-top: var(--nav-h); padding: clamp(80px, 12vw, 160px) 0 clamp(56px, 8vw, 100px); position: relative; overflow: hidden; }
.dark-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 65% at 50% 100%, rgba(201, 171, 108, 0.16), rgba(20, 18, 18, 0) 70%); pointer-events: none; }
.dark-hero .wrap { position: relative; z-index: 2; }
.dark-hero.image-left { padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(48px, 6vw, 80px); }
.hero-split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-split .hero-img { width: 100%; height: auto; max-height: 72vh; object-fit: cover; object-position: 30% 50%; border-radius: var(--radius); display: block; }
@media (max-width: 800px) {
  .hero-split { grid-template-columns: 1fr; gap: 28px; }
  .hero-split .hero-img { max-height: 60vh; aspect-ratio: 4 / 5; object-position: 25% 45%; }
}
.dark-hero h1 { font-weight: 300; font-size: clamp(2.6rem, 6vw, 5rem); letter-spacing: 0.04em; text-transform: uppercase; }
.dark-hero h1 em { font-family: var(--serif); font-style: italic; text-transform: none; font-weight: 400; color: var(--gold); letter-spacing: 0; }
.dark-hero p { max-width: 54ch; color: var(--charcoal); font-size: 1.08rem; margin-top: 22px; }
.feature-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature { border-top: 1px solid var(--gold-soft); padding-top: 22px; }
.feature h3 { font-weight: 500; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 10px; color: var(--gold); }
.feature p { font-size: 0.95rem; color: var(--charcoal); }

/* ---- Small helpers ---- */
.credit { font-family: var(--head); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe); }
.select-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.select-grid label { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 4px; background: var(--white); font-family: var(--body); font-size: 14.5px; text-transform: none; letter-spacing: 0; color: var(--ink); cursor: pointer; }
.select-grid label:has(input:checked) { border-color: var(--ink); }
.select-grid input { width: auto; accent-color: var(--ink); margin: 0; }
.page-dark .select-grid label { background: #1c1919; }
.page-dark .select-grid label:has(input:checked) { border-color: var(--gold); }

@media (max-width: 1080px) {
  .artist-grid { grid-template-columns: repeat(3, 1fr); }
  .price-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .feature-list { grid-template-columns: 1fr; }
  .event { grid-template-columns: 1fr; gap: 16px; }
  .event .date { border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 14px; }
  .buy-box { position: static; }
  .chapters li { grid-template-columns: 48px 1fr; }
  .chapters span { grid-column: 2; }
  .select-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .artist-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .price-cards { grid-template-columns: 1fr; }
  .select-grid { grid-template-columns: 1fr; }
}

/* ---- Stats band and press line (translated from the Michelle Furey build) ---- */
.stats-band { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: clamp(36px, 5vw, 56px) 0 clamp(28px, 4vw, 40px); text-align: center; }
.stat strong { display: block; font-family: var(--serif); font-weight: 500; font-size: clamp(2.2rem, 3.6vw, 3rem); line-height: 1; color: var(--gold); }
.stat span { display: block; margin-top: 8px; font-family: var(--head); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); }
.press { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 34px; padding: 0 0 clamp(32px, 4vw, 48px); }
.press-label { width: 100%; text-align: center; font-family: var(--head); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--taupe); margin-bottom: 4px; }
.press span { font-family: var(--serif); font-size: 1.15rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal); }
.amount-input { text-align: center; font-family: var(--serif); font-size: 1.3rem; }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .slide-copy h1, .slide-copy h2 { font-size: clamp(2rem, 8.5vw, 2.6rem); } }
