:root {
  --ink: #171717;
  --gold: #b7832e;
  --cream: #f7f4ed;
  --header-height: 73px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", sans-serif;
}

.site-header {
  position: relative;
  z-index: 20;
  height: var(--header-height);
  flex: 0 0 var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px clamp(28px, 5vw, 80px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(23, 23, 23, 0.08);
}

.brand { display: inline-flex; align-items: center; }

.brand img {
  display: block;
  width: auto;
  height: 66px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(25px, 3vw, 52px);
}

.main-nav a {
  position: relative;
  color: #292929;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.main-nav a:not(.contact-link)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.main-nav .contact-link {
  padding: 13px 21px;
  color: white;
  background: var(--ink);
}

.main-nav .contact-link:hover { color: white; background: var(--gold); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  margin-top: 0;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}

.hero-image, .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image { z-index: -2; object-fit: cover; object-position: center 50%; }
.hero-shade { z-index: -1; background: linear-gradient(90deg, rgba(8, 12, 12, 0.78) 0%, rgba(8, 12, 12, 0.4) 40%, rgba(8, 12, 12, 0.06) 72%); }

.hero-content {
  width: min(650px, 78vw);
  margin-left: clamp(28px, 8vw, 130px);
  padding: 68px 0;
  color: white;
  animation: rise 700ms ease both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  color: #e5bd70;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }

.hero h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(50px, 6.2vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero-copy { margin: 27px 0 34px; color: rgba(255,255,255,.86); font-size: clamp(15px, 1.25vw, 19px); line-height: 1.7; }

.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  padding: 16px 22px;
  color: #1b1b1b;
  background: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-button:hover { color: white; background: var(--gold); transform: translateY(-2px); }
.hero-button span { font-size: 20px; font-weight: 400; }

.hero-marker { position: absolute; right: clamp(26px, 5vw, 80px); bottom: 34px; display: flex; align-items: center; gap: 12px; color: white; }
.hero-marker span { font: 600 17px "Playfair Display", serif; }
.hero-marker i { display: block; width: 50px; height: 1px; background: rgba(255,255,255,.72); }
.hero-marker small { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.placeholder-section { min-height: 1px; }

@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 760px) {
  :root { --header-height: 62px; }
  .site-header { padding: 4px 20px; }
  .brand img { width: auto; height: 54px; }
  .menu-toggle { display: block; cursor: pointer; }
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 14px 20px 24px;
    background: white;
    box-shadow: 0 12px 25px rgba(0,0,0,.12);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }
  .main-nav.open { visibility: visible; opacity: 1; transform: translateY(0); }
  .main-nav a { padding: 15px 8px; }
  .main-nav a::after { display: none; }
  .main-nav .contact-link { margin-top: 8px; text-align: center; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: calc(100svh - var(--header-height)); align-items: flex-end; }
  .hero-image { object-position: 59% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(7,10,10,.86) 0%, rgba(7,10,10,.46) 57%, rgba(7,10,10,.08) 100%); }
  .hero-content { width: auto; margin: 0; padding: 60px 24px 86px; }
  .hero h1 { font-size: clamp(47px, 15vw, 68px); }
  .hero-copy br { display: none; }
  .hero-marker { right: 24px; bottom: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* About Us */
a:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 6px; }
.skip-link { position: absolute; top: -100px; left: 20px; z-index: 100; padding: 14px 20px; background: white; color: var(--ink); }
.skip-link:focus { top: 12px; }
.about-intro, .leadership, .about-values, .about-closing, .about-teaser { padding-inline: max(24px, calc((100vw - 1160px) / 2)); }
.about-page .eyebrow, .about-teaser .eyebrow { color: #91631f; font-size: 10px; letter-spacing: .18em; }
.about-intro { padding-top: 88px; padding-bottom: 38px; background: radial-gradient(ellipse at 90% 0%, #eee4d3, transparent 60%); }
.intro-grid { display: grid; grid-template-columns: 1fr; gap: 24px; justify-items: center; text-align: center; }
.about-intro h1 { margin: 0; font: 600 clamp(48px, 5.5vw, 78px)/1.08 "Playfair Display", serif; letter-spacing: -.045em; }
.about-intro h1 em { color: #91631f; font-weight: 600; }
.intro-copy { max-width: 680px; color: #62605a; font-size: 14px; line-height: 1.9; }
.intro-copy p:first-child { color: #35362f; font-size: 17px; }
.leadership { padding-top: 64px; padding-bottom: 85px; background: #fffdf8; }
.section-heading { text-align: center; margin-bottom: 34px; }
.about-page h2, .about-teaser h2 { margin: 0; font: 600 clamp(30px, 3vw, 43px)/1.2 "Playfair Display", serif; letter-spacing: -.025em; }
.section-heading > p { margin: 0; color: #6c6961; font-size: 13px; line-height: 1.8; }
.leadership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; }
.leader-photo { position: relative; width: 60%; margin-inline: auto; overflow: hidden; border-radius: 16px; background: #ded1bc; aspect-ratio: 1 / 1.08; }
.leader-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.portrait-label { position: absolute; bottom: 18px; left: 18px; padding: 10px 13px; color: #fff9ef; background: #23231ee8; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.leader-details { text-align: center; padding-top: 25px; padding-bottom: 26px; }
.leader-role { margin: 0 0 10px; font-size: 10px; line-height: 1.6; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: #91631f; }
.leader-details h3 { margin: 0; font: 600 clamp(30px, 3vw, 40px)/1.2 "Playfair Display", serif; letter-spacing: -.025em; }
.name-prefix { font-size: .72em; }
.leader-qualifications { margin: 12px 0 0; font-size: 12px; line-height: 1.7; color: #49463e; }
.leader-qualifications span { padding: 0 5px; color: #91631f; }
.leader-note { margin: 16px auto 0; max-width: 440px; color: #706b62; font-size: 13px; line-height: 1.8; }
.about-values { padding-top: 65px; padding-bottom: 70px; background: #eee7d8; color: #332a1a; }
.about-values .eyebrow { color: #483610; }
.values-intro > p:last-child { color: #3f3217; font-size: 14px; line-height: 1.8; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 38px; margin-top: 36px; }
.values-grid article { padding-top: 4px; }
.value-number { font-size: 10px; letter-spacing: .15em; color: #66501b; }
.values-grid h3 { font: 600 24px/1.3 "Playfair Display", serif; margin: 22px 0 12px; }
.values-grid p { color: #3f3217; font-size: 13px; line-height: 1.9; margin: 0; }
.about-closing { padding-block: 72px; text-align: center; }
.about-closing .eyebrow { justify-content: center; }
.about-closing .eyebrow::before { display: none; }
.text-link { display: inline-flex; align-items: center; gap: 25px; padding: 12px 0; border-bottom: 1px solid #aa8751; color: #51412a; font-size: 12px; font-weight: 700; text-decoration: none; }
.text-link:hover { color: #91631f; }
.about-closing .text-link { margin-top: 25px; }
.site-footer { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px max(24px, calc((100vw - 1160px) / 2)); border-top: 1px solid #dcd5c9; font-size: 11px; color: #6c6961; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:first-child { font-weight: 700; color: #35362f; }
.about-teaser { padding-block: 64px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.about-teaser h2 { max-width: 650px; }
.about-teaser .text-link { flex-shrink: 0; }
@media (max-width: 760px) {
  .about-intro { padding-top: 46px; padding-bottom: 28px; }
  .intro-grid { grid-template-columns: 1fr; gap: 20px; }
  .intro-copy { max-width: none; }
  .leadership { padding-block: 44px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 18px; }
  .desktop-break { display: none; }
  .leadership-grid { grid-template-columns: 1fr; gap: 36px; }
  .leader-photo { aspect-ratio: 4 / 5; }
  .about-page .eyebrow { line-height: 1.7; }
  .values-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-values { padding-block: 44px; }
  .about-closing { padding-block: 50px; }
  .site-footer { flex-wrap: wrap; gap: 12px 24px; }
  .site-footer p { margin: 0; }
  .about-teaser { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* Shared contact footer */
.contact-footer { background: #eee7d8; color: #332a1a; padding: 0 max(24px, calc((100vw - 1160px) / 2)); }
.footer-invitation { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 50px 0; }
.contact-footer .eyebrow { color: #735721; font-size: 10px; line-height: 1.7; letter-spacing: .15em; }
.contact-footer .eyebrow::before { display: none; }
.footer-invitation h2 { margin: 0; font: 600 clamp(30px, 3.4vw, 46px)/1.2 "Playfair Display", serif; letter-spacing: -.025em; }
.footer-cta { display: inline-flex; align-items: center; justify-content: space-between; gap: 35px; flex-shrink: 0; padding: 17px 24px; border-radius: 9px; background: #d4af37; color: #241c0c; font-size: 13px; font-weight: 700; text-decoration: none; }
.footer-cta:hover { background: #c4a02e; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .65fr 1.25fr .8fr; gap: 36px; padding: 38px 0 46px; border-top: 1px solid #d4c8b1; }
.footer-grid h3 { margin: 0 0 23px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.footer-brand img { width: 95px; height: 80px; object-fit: contain; mix-blend-mode: multiply; }
.footer-brand p { color: #685b45; font-size: 12px; line-height: 1.9; }
.footer-brand .footer-brand-name { margin: 12px 0 4px; color: #332a1a; font-size: 16px; font-weight: 700; }
.footer-grid a { color: #493c26; text-decoration: none; font-size: 12px; line-height: 1.8; }
.footer-grid a:hover, .footer-bottom a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-navigation a, .footer-contact > a { display: block; width: fit-content; margin-top: 9px; overflow-wrap: anywhere; }
.footer-label { margin: 21px 0 5px; color: #786546; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.footer-contact h3 + .footer-label { margin-top: 0; }
.social-placeholder { display: flex; align-items: center; gap: 11px; margin: 0 0 14px; font-size: 12px; color: #685b45; }
.social-icon { display: inline-flex; width: 23px; height: 23px; align-items: center; justify-content: center; font: 700 24px/1 Georgia, serif; }
.social-status { max-width: 150px; color: #786546; font-size: 10px; line-height: 1.7; }
.footer-bottom { border-top: 1px solid #d4c8b1; display: flex; justify-content: space-between; gap: 20px; padding: 21px 0; color: #685b45; font-size: 10px; line-height: 1.7; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #493c26; text-decoration: none; white-space: nowrap; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) {
  .footer-invitation { flex-direction: column; align-items: flex-start; padding-block: 38px; gap: 25px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; grid-row: 3; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

/* Contact enquiry */
.enquiry-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; padding: 45px 0 60px; scroll-margin-top: 24px; }
.enquiry-intro h2 { margin: 0; font: 600 clamp(30px, 3vw, 40px)/1.2 "Playfair Display", serif; letter-spacing: -.025em; }
.enquiry-intro > p:not(.eyebrow) { max-width: 350px; font-size: 13px; line-height: 1.9; color: #685b45; margin: 22px 0; }
.enquiry-intro > a { color: #493c26; font-size: 12px; text-underline-offset: 5px; }
.enquiry-form { background: #fffdf8; padding: 30px; border-radius: 18px; }
.form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; }
.form-field { min-width: 0; }
.form-wide { grid-column: 1 / -1; }
.form-field label { display: block; margin-bottom: 9px; font-size: 12px; font-weight: 700; color: #332a1a; }
.form-field label span { font-size: 10px; font-weight: 400; color: #71644e; }
.form-field input, .form-field textarea { width: 100%; padding: 13px 14px; border: 1px solid #d8cfbe; border-radius: 8px; background: #fffefa; color: #332a1a; font: 400 16px/1.5 "Manrope", sans-serif; }
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #80745f; font-size: 12px; opacity: 1; }
.form-field input:focus, .form-field textarea:focus { outline: 2px solid #a98228; outline-offset: 2px; }
.form-help, .form-status, .enquiry-form noscript { font-size: 11px; line-height: 1.8; color: #685b45; }
.form-help { margin: 17px 0; }
.enquiry-form button { border: 0; cursor: pointer; font-family: inherit; }
.form-status:empty { display: none; }
@media (max-width: 760px) { .enquiry-section { grid-template-columns: 1fr; gap: 28px; padding-top: 15px; } .enquiry-intro > p:not(.eyebrow) { max-width: none; } }
@media (max-width: 480px) { .enquiry-form { padding: 22px 18px; } .form-fields { grid-template-columns: 1fr; } .enquiry-form button { width: 100%; } }

/* Contact page */
.contact-hero { padding: 76px 24px 45px; text-align: center; background: #eee7d8; }
.contact-hero .eyebrow { justify-content: center; color: #735721; font-size: 10px; }
.contact-hero .eyebrow::before { display: none; }
.contact-hero h1 { margin: 0; color: #332a1a; font: 600 clamp(42px, 5.4vw, 74px)/1.12 "Playfair Display", serif; letter-spacing: -.04em; }
.contact-hero h1 em { color: #91631f; }
.contact-hero > p:last-child { max-width: 530px; margin: 25px auto 0; color: #685b45; font-size: 14px; line-height: 1.9; }
.contact-options { padding: 0 max(24px, calc((100vw - 1160px) / 2)) 54px; background: #eee7d8; display: grid; grid-template-columns: 1fr 1fr 1.25fr; gap: 20px; }
.contact-card { position: relative; display: flex; flex-direction: column; gap: 12px; padding: 27px 22px; border-radius: 16px; color: #332a1a; background: #fffdf8; text-decoration: none; transition: transform 180ms ease, box-shadow 180ms ease; }
.contact-card:hover { transform: translateY(-3px); box-shadow: 0 10px 25px #332a1a0d; }
.contact-card-icon { align-self: flex-end; color: #91631f; font-size: 22px; }
.contact-card-label { font-size: 10px; color: #735721; text-transform: uppercase; letter-spacing: .08em; }
.contact-card strong { font-size: clamp(13px, 1.3vw, 17px); overflow-wrap: anywhere; }
.contact-card > span:last-child { font-size: 12px; line-height: 1.7; color: #685b45; }
.contact-enquiry-wrap { padding: 25px max(24px, calc((100vw - 1160px) / 2)) 20px; }
.contact-page .enquiry-intro .eyebrow { color: #735721; font-size: 10px; line-height: 1.8; }
.contact-page .enquiry-intro .eyebrow::before { display: none; }
.contact-page .enquiry-form { border: 1px solid #e5ddce; }
@media (max-width: 760px) {
  .contact-hero { padding-top: 46px; }
  .contact-options { grid-template-columns: 1fr; gap: 14px; padding-bottom: 35px; }
  .contact-card { padding: 22px; gap: 9px; }
  .contact-card-icon { position: absolute; top: 18px; right: 20px; }
  .contact-card-label { padding-right: 25px; }
  .contact-card strong { font-size: 16px; }
  .contact-enquiry-wrap { padding-top: 30px; }
}

/* Shared polished gold finish for Contact and enquiry buttons. */
.main-nav .contact-link,
.main-nav .contact-link:hover,
.contact-page .enquiry-form button[type="submit"] {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(115deg, #bd861d 0%, #e6b640 20%, #fff0a3 43%, #f8d969 50%, #dca62b 73%, #f1cb59 100%);
  color: #302006;
  border: 1px solid #bf8c25;
  box-shadow: inset 0 1px 0 #fff5c6, inset 0 -2px 0 #ac791f66, 0 4px 12px #a9782026;
  transition: box-shadow 180ms ease, transform 180ms ease;
}
.main-nav .contact-link::before,
.contact-page .enquiry-form button[type="submit"]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 30%, #ffffff70 48%, transparent 66%);
  transform: translateX(-130%);
  transition: transform 650ms ease;
  pointer-events: none;
}
.main-nav .contact-link:hover,
.contact-page .enquiry-form button[type="submit"]:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 #fff5c6, inset 0 -2px 0 #ac791f66, 0 6px 18px #a978203d;
}
.main-nav .contact-link:hover::before,
.contact-page .enquiry-form button[type="submit"]:hover:not(:disabled)::before { transform: translateX(130%); }
.main-nav .contact-link:active,
.contact-page .enquiry-form button[type="submit"]:active:not(:disabled) { transform: translateY(0); }
.contact-page .enquiry-form button[type="submit"]:disabled { opacity: .7; cursor: wait; }

.main-nav .contact-link { border-radius: 9px; }

/* Gentle homepage image crossfade. */
.hero-image { opacity: 0; transition: opacity 900ms ease-in-out; }
.hero-image.is-active { opacity: 1; }

/* Quiet page entrances and section reveals. */
@keyframes page-enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes section-enter {
  from { opacity: .15; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
main { animation: page-enter 800ms ease-out both; }
.section-revealed { animation: section-enter 950ms cubic-bezier(.2, .65, .3, 1) both; }
.section-revealed:focus-within { animation: none; }
@media (prefers-reduced-motion: reduce) {
  main, .section-revealed { animation: none !important; transform: none !important; }
}

/* Location below the Contact enquiry form. */
.contact-location { padding: 20px max(24px, calc((100vw - 1160px) / 2)) 65px; }
.location-heading { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.location-heading .eyebrow { color: #735721; font-size: 10px; }
.location-heading .eyebrow::before { display: none; }
.location-heading h2 { margin: 0; font: 600 clamp(30px, 3vw, 40px)/1.2 "Playfair Display", serif; color: #332a1a; }
.location-heading p:last-child { color: #685b45; font-size: 13px; line-height: 1.8; }
.location-map { overflow: hidden; border-radius: 18px; background: #eee7d8; border: 1px solid #d8cfbe; }
.location-map iframe { display: block; width: 100%; height: 420px; border: 0; }
.location-map-link { display: inline-block; margin-top: 16px; color: #735721; font-size: 12px; text-underline-offset: 4px; }
@media (max-width: 760px) { .location-heading { flex-direction: column; align-items: flex-start; } .location-map iframe { height: 320px; } .contact-location { padding-bottom: 40px; } }

/* Services: detailed offerings and company strengths. */
.services-page .about-intro { padding-bottom: 60px; }
.services-list, .services-why { padding-inline: max(24px, calc((100vw - 1160px) / 2)); }
.services-list { background: #fffdf8; }
.service-detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr); gap: clamp(32px, 6vw, 90px); padding-block: 58px; }
.service-detail + .service-detail { border-top: 1px solid #ded5c6; }
.services-page .service-heading h2 { font-size: clamp(30px, 3.2vw, 42px); }
.service-tagline { margin: 18px 0 0; color: #91631f; font-size: 15px; line-height: 1.7; }
.service-copy { color: #62605a; font-size: 14px; line-height: 1.9; }
.service-copy > p { margin: 0 0 16px; }
.service-copy > p:last-child { margin-bottom: 0; }
.service-copy h3 { margin: 26px 0 14px; color: #332a1a; font-size: 13px; font-weight: 700; }
.service-inclusions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 28px; row-gap: 10px; margin: 0; padding-left: 18px; }
.service-inclusions li { padding-left: 3px; }
.service-inclusions li::marker { color: #91631f; }
.services-why { padding-block: 64px; background: #eee7d8; }
.services-why .eyebrow { justify-content: center; }
.services-why .eyebrow::before { display: none; }
.services-reasons { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 24px; }
.services-reasons article { grid-column: span 2; border-top: 1px solid #cfc2ab; padding-top: 24px; }
.services-reasons article:nth-child(-n+2) { grid-column: span 3; }
.services-reasons .service-stat { margin: 0 0 12px; color: #91631f; font: 600 clamp(48px, 6vw, 68px)/1.1 "Playfair Display", serif; }
.services-reasons h3 { margin: 0 0 12px; color: #332a1a; font: 600 23px/1.3 "Playfair Display", serif; }
.services-reasons p { margin: 0; color: #62563f; font-size: 13px; line-height: 1.8; }
.services-closing .closing-copy { max-width: 660px; margin: 22px auto 0; color: #62605a; font-size: 14px; line-height: 1.9; }
@media (max-width: 760px) {
  .services-page .about-intro { padding-bottom: 36px; }
  .service-detail { grid-template-columns: 1fr; gap: 24px; padding-block: 38px; }
  .services-why { padding-block: 44px; }
  .services-reasons { grid-template-columns: 1fr; }
  .services-reasons article, .services-reasons article:nth-child(-n+2) { grid-column: auto; }
}
@media (max-width: 480px) {
  .service-inclusions { grid-template-columns: 1fr; }
}

/* Fixed WhatsApp contact button. */
.whatsapp-button {
  position: fixed;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 1px solid #d8b96c;
  border-radius: 50%;
  background: linear-gradient(145deg, #1b624b, #0b382b);
  color: #fffaf0;
  box-shadow: inset 0 1px 0 #ffffff26, 0 6px 22px #082b2933;
  text-decoration: none;
  transition: box-shadow 180ms ease, background 180ms ease;
}
.whatsapp-button svg { width: 31px; height: 31px; fill: currentColor; }
.whatsapp-button:hover { background: #1b624b; box-shadow: inset 0 1px 0 #ffffff26, 0 8px 26px #082b294d; }
.whatsapp-button:focus-visible { outline: 3px solid var(--gold); outline-offset: 5px; }
body:has(.whatsapp-button) .footer-bottom { padding-bottom: 96px; }
@media (max-width: 760px) {
  .whatsapp-button { width: 56px; height: 56px; right: max(18px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom)); }
  .whatsapp-button svg { width: 28px; height: 28px; }
}
@media (prefers-reduced-motion: reduce) { .whatsapp-button { transition: none; } }

/* Matching call shortcut above WhatsApp. */
.call-button {
  bottom: calc(max(24px, env(safe-area-inset-bottom)) + 74px);
  background: linear-gradient(145deg, #efd58e, #c89b45);
  color: #35270f;
  box-shadow: inset 0 1px 0 #fff5ce99, 0 6px 22px #59401926;
}
.call-button:hover { background: #efd58e; box-shadow: inset 0 1px 0 #fff5ce99, 0 8px 26px #59401938; }
.call-button svg { width: 27px; height: 27px; }
body:has(.call-button) .footer-bottom { padding-bottom: 168px; }
@media (max-width: 760px) {
  .call-button { bottom: calc(max(18px, env(safe-area-inset-bottom)) + 68px); }
  .call-button svg { width: 25px; height: 25px; }
}

/* Keep contact shortcuts hidden until the homepage hero has passed. */
.whatsapp-button[hidden] { display: none; }

/* Service photography preserves the full composition on every screen. */
.service-image { display: block; width: 100%; height: auto; margin-top: 26px; border: 1px solid #ded5c6; border-radius: 12px; box-shadow: 0 8px 24px #332a1a0d; }

/* Solid gold keeps introductory accent text clear on the light background. */
#about-title em,
#services-title em {
  color: #91631f;
  background: none;
  -webkit-text-fill-color: currentColor;
}
@media (forced-colors: active) {
  #about-title em, #services-title em { background: none; -webkit-text-fill-color: currentColor; }
}


/* Centred slideshow selectors with generous touch targets. */
.hero-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 2px; }
.hero-dot { display: grid; place-items: center; width: 44px; height: 44px; border: 0; padding: 0; background: transparent; cursor: pointer; border-radius: 50%; }
.hero-dot::before { content: ""; width: 9px; height: 9px; border-radius: 50%; border: 1px solid #fff; background: #ffffff55; box-shadow: 0 1px 5px #0006; }
.hero-dot.is-active::before { background: #fff; transform: scale(1.2); }
.hero-dot:hover::before { background: #fff; }

/* Separate cards for the three service commitments. */
.services-reasons article:nth-child(n+3) { padding: 28px; border: 1px solid #d8cbb5; border-radius: 14px; background: #fffaf1; box-shadow: 0 5px 18px #332a1a08; }
