:root {
  --ink: #173238;
  --muted: #5e7074;
  --deep: #123f4a;
  --deep-2: #0d3038;
  --teal: #087d7d;
  --mint: #d9f0eb;
  --gold: #f4bd5b;
  --cream: #fffaf0;
  --white: #ffffff;
  --line: #d7e2df;
  --shadow: 0 24px 70px rgba(18, 63, 74, .14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
main { flex: 1; }
img { max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 30; background: white; padding: 10px 14px; }
.skip:focus { left: 8px; }
.wrap { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 0;
  box-shadow: none;
}
.nav-shell { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: block; width: 300px; max-width: calc(100vw - 110px); aspect-ratio: 15 / 4; overflow: hidden; background: #fff; text-decoration: none; flex: 0 0 auto; }
.brand-logo { display: block; width: 100%; height: auto; transform: translateY(-10%); filter: grayscale(1) contrast(1.8) brightness(1.08); }
nav { display: flex; align-items: center; gap: 20px; }
nav a { position: relative; text-decoration: none; font-weight: 600; white-space: nowrap; }
nav a:not(.button):hover, nav a[aria-current="page"] { color: var(--teal); }
nav a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -9px; height: 2px; border-radius: 2px; background: var(--gold); }
.menu { display: none; border: 0; background: var(--mint); width: 46px; height: 46px; border-radius: 12px; color: var(--deep); font-size: 1.35rem; cursor: pointer; }

.button { display: inline-flex; min-height: 48px; padding: 12px 20px; border-radius: 999px; align-items: center; justify-content: center; gap: 8px; text-decoration: none; font-weight: 700; border: 2px solid transparent; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: white; background: var(--teal); }
.button.light { color: var(--deep); background: white; }
.button.outline { color: white; border-color: rgba(255,255,255,.6); }
.button.dark-outline { color: var(--deep); border-color: var(--teal); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

h1, h2, h3 { font-family: "Fraunces", Georgia, serif; line-height: 1.08; margin: 0; }
h1 { font-size: clamp(3rem, 6vw, 5.7rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.35rem, 5vw, 4rem); letter-spacing: -.035em; color: var(--deep); }
h3 { font-size: 1.55rem; color: var(--deep); }
.eyebrow, .section-tag { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: #bfe8e4; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); }
.section-tag { color: var(--teal); margin-bottom: 17px; }
.lead { font-size: 1.22rem; color: var(--muted); margin: 12px 0 32px; max-width: 760px; }
.centered { text-align: center; }
.centered .lead { margin-inline: auto; }

.home-hero { overflow: hidden; background: var(--deep); color: white; position: relative; }
.home-hero::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: #176674; right: -160px; top: -270px; }
.home-hero::after { content: ""; position: absolute; width: 230px; height: 230px; border-radius: 50%; background: var(--gold); right: 13%; bottom: -170px; }
.hero-grid { min-height: 620px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 66px; align-items: center; position: relative; z-index: 1; padding-block: 76px; }
.hero-copy h1 { max-width: 800px; margin-top: 22px; }
.hero-copy h1 span { color: var(--gold); }
.hero-copy p { max-width: 650px; color: #e2eeee; font-size: 1.18rem; margin: 26px 0 32px; }
.photo-stage { min-height: 445px; border: 1px solid rgba(255,255,255,.35); border-radius: 160px 160px 32px 32px; overflow: hidden; background: #176674; position: relative; box-shadow: 0 26px 70px rgba(0,0,0,.22); }
.photo-stage::before, .photo-stage::after { content: ""; position: absolute; z-index: 2; background: var(--gold); border-radius: 60% 40% 65% 35%; }
.photo-stage::before { width: 120px; height: 55px; left: -38px; top: 75px; transform: rotate(-36deg); }
.photo-stage::after { width: 92px; height: 44px; right: -32px; top: 142px; transform: rotate(32deg); }
.photo-stage img { width: 100%; height: 100%; min-height: 445px; position: absolute; inset: 0; display: block; object-fit: cover; }
.photo-caption { position: absolute; z-index: 1; left: 20px; right: 20px; bottom: 20px; padding: 18px 20px; border-radius: 18px; background: rgba(10,44,51,.88); backdrop-filter: blur(8px); }
.photo-caption strong { display: block; font-family: "Fraunces", Georgia, serif; font-size: 1.25rem; }
.photo-caption span { color: #d8ecea; }

.page-hero { position: relative; overflow: hidden; padding: 92px 0 96px; color: white; background: var(--deep); }
.page-hero::before { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: #176674; right: -100px; top: -220px; }
.page-hero::after { content: ""; position: absolute; width: 125px; height: 125px; border-radius: 50%; background: var(--gold); right: 17%; bottom: -78px; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { max-width: 900px; margin-top: 18px; }
.page-hero p { max-width: 760px; color: #dcebea; font-size: 1.2rem; margin: 24px 0 0; }

section { padding: 94px 0; }
.soft { background: var(--cream); }
.mint { background: #f2f8f6; }
.split { display: grid; grid-template-columns: .78fr 1.22fr; gap: 82px; align-items: start; }
.principles { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.principle { background: white; border: 1px solid #eee6d8; border-radius: 20px; padding: 26px; }
.principle b { display: block; font-size: 1.08rem; color: var(--deep); margin-bottom: 7px; }
.link-arrow { color: var(--teal); font-weight: 700; text-decoration-thickness: 2px; text-underline-offset: 4px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.feature { border: 1px solid var(--line); border-radius: 20px; padding: 28px; background: white; }
.feature-number { font-family: "Fraunces", Georgia, serif; font-size: 2.15rem; color: var(--teal); margin-bottom: 28px; }
.feature p { color: var(--muted); margin-bottom: 0; }
.dark-section { background: var(--deep); color: white; }
.dark-section h2, .dark-section h3 { color: white; }
.dark-section .section-tag { color: #a9dfd9; }
.dark-section .feature { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
.dark-section .feature-number { color: var(--gold); }
.dark-section .feature p { color: #cae0e0; }

.section-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 44px; }
.section-head p { max-width: 510px; margin: 0; color: var(--muted); }
.home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.home-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: white; box-shadow: 0 16px 55px rgba(25,57,63,.08); }
.home-banner { min-height: 230px; display: grid; place-items: center; padding: 30px; color: white; text-align: center; position: relative; overflow: hidden; }
.home-banner.one { background: linear-gradient(135deg, #0e7273, #174b5a); }
.home-banner.two { background: linear-gradient(135deg, #e5a846, #b9643b); }
.home-banner::before { content: ""; width: 210px; height: 210px; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.28); left: -55px; bottom: -95px; }
.home-heading { position: relative; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.home-banner-photo { align-items: end; }
.home-banner-photo::before { inset: 0; width: auto; height: auto; border: 0; border-radius: 0; background: linear-gradient(180deg, transparent 38%, rgba(9,38,44,.82)); z-index: 1; }
.home-banner-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.home-banner-photo .home-heading { z-index: 2; width: 100%; }
.home-monogram { display: grid; place-items: center; width: 82px; height: 82px; border: 1px solid rgba(255,255,255,.58); border-radius: 28px 28px 12px 12px; background: rgba(255,255,255,.12); font-family: "Fraunces", Georgia, serif; font-size: 1.8rem; font-weight: 700; }
.home-heading strong { font-size: 1.05rem; letter-spacing: .04em; }
.home-content { padding: 32px; }
.home-content h2, .home-content h3 { font-size: 2rem; }
.place { color: var(--teal); font-weight: 700; margin-top: 6px; }
.facts { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0; }
.fact { background: var(--mint); color: #14585c; border-radius: 999px; padding: 7px 12px; font-weight: 600; font-size: .88rem; }

.image-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.image-card { margin: 0; overflow: hidden; border-radius: 20px; background: var(--deep); box-shadow: 0 14px 38px rgba(18,63,74,.12); }
.image-card img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.image-card figcaption { padding: 14px 18px; color: white; font-weight: 700; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 158px; gap: 16px; }
.gallery-item { position: relative; grid-column: span 4; grid-row: span 2; margin: 0; overflow: hidden; border-radius: 20px; background: var(--deep); box-shadow: 0 14px 38px rgba(18,63,74,.12); }
.gallery-item.featured { grid-column: span 7; }
.gallery-item.side { grid-column: span 5; grid-row: span 1; }
.gallery-item.half { grid-column: span 6; }
.gallery-item.centered { grid-column: 4 / span 6; }
.gallery-item a { display: block; width: 100%; height: 100%; }
.gallery-item img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 38px 18px 15px; color: white; font-weight: 700; line-height: 1.3; background: linear-gradient(transparent, rgba(8,38,44,.88)); pointer-events: none; }

.contact-card { background: white; border-radius: 30px; padding: 56px; display: grid; grid-template-columns: 1fr auto; gap: 42px; align-items: center; box-shadow: var(--shadow); }
.contact-card p { color: var(--muted); font-size: 1.08rem; max-width: 670px; margin-bottom: 0; }
.phone { text-align: center; }
.phone small { display: block; color: var(--muted); margin-bottom: 8px; }
.phone a { font-size: clamp(1.35rem, 3vw, 2rem); font-weight: 700; color: var(--deep); white-space: nowrap; }
.contact-layout { display: grid; grid-template-columns: 1.12fr .88fr; gap: 28px; align-items: stretch; }
.contact-panel, .ask-panel { padding: 42px; border-radius: var(--radius); }
.contact-panel { background: var(--deep); color: white; }
.contact-panel h2 { color: white; }
.contact-panel p { color: #d3e5e3; }
.contact-number { display: inline-block; margin: 24px 0 8px; color: var(--gold); font-family: "Fraunces", Georgia, serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
.ask-panel { background: var(--cream); border: 1px solid #eee6d8; }
.ask-panel ul { padding-left: 22px; margin-bottom: 0; }
.ask-panel li { margin: 10px 0; }

.enquiry-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 64px; align-items: start; }
.enquiry-intro { position: sticky; top: 120px; }
.enquiry-intro p { color: var(--muted); }
.enquiry-form { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); box-shadow: 0 16px 55px rgba(25,57,63,.08); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-wide { grid-column: 1 / -1; }
.field label { color: var(--deep); font-weight: 700; }
.field label span, .consent span span { color: #a3432f; }
.optional { color: var(--muted) !important; font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; border: 1px solid #9bafab; border-radius: 10px; background: white; color: var(--ink); font: inherit; }
.field textarea { resize: vertical; min-height: 150px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(8,125,125,.22); border-color: var(--teal); }
.consent { display: flex; gap: 11px; align-items: flex-start; margin: 24px 0; color: var(--ink); }
.consent input { width: 20px; height: 20px; margin: 3px 0 0; flex: 0 0 auto; accent-color: var(--teal); }
.enquiry-form button { cursor: pointer; font: inherit; }
.form-note { margin: 16px 0 0; color: var(--muted); font-size: .88rem; }

.cqc-section { background: var(--cream); }
.cqc-panel { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center; padding: 52px; border: 1px solid #eee6d8; border-radius: 30px; background: white; box-shadow: var(--shadow); }
.cqc-mark { display: grid; place-items: center; width: 142px; height: 142px; border-radius: 50%; background: var(--deep); color: var(--gold); font-family: "Fraunces", Georgia, serif; font-size: 2.15rem; font-weight: 700; letter-spacing: .05em; }
.cqc-panel p { max-width: 760px; color: var(--muted); font-size: 1.05rem; }

.cta-section { background: var(--mint); }

footer { background: var(--deep-2); color: #c7d8d8; padding: 40px 0; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
footer strong { color: white; }
footer p { margin: 4px 0 0; font-size: .92rem; }
.footer-credit { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); text-align: center; color: #9fb7b7; font-size: .9rem; }
.footer-credit strong { color: var(--gold); font-family: "Fraunces", Georgia, serif; letter-spacing: .02em; }
.footer-credit a:hover strong, .footer-credit a:focus-visible strong { color: white; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; text-align: right; }
.footer-links a:last-child { color: var(--gold); font-size: .9rem; }

@media (max-width: 980px) {
  .wrap { width: min(100% - 30px, 760px); }
  .menu { display: block; }
  nav { display: none; position: absolute; left: 15px; right: 15px; top: 76px; padding: 18px; flex-direction: column; align-items: stretch; background: white; border-radius: 16px; box-shadow: var(--shadow); }
  nav.open { display: flex; }
  nav a { padding: 5px 8px; }
  nav a[aria-current="page"]::after { display: none; }
  nav .button { width: 100%; }
  .hero-grid, .split, .contact-card, .contact-layout, .enquiry-layout { grid-template-columns: 1fr; }
  .hero-grid { padding-block: 58px 72px; gap: 42px; }
  .photo-stage { min-height: 330px; max-width: 540px; width: 100%; justify-self: center; }
  section { padding: 72px 0; }
  .split { gap: 36px; }
  .section-head { display: block; }
  .section-head p { margin-top: 18px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .gallery-item, .gallery-item.featured, .gallery-item.side, .gallery-item.half, .gallery-item.centered { grid-column: span 1; grid-row: auto; aspect-ratio: 4 / 3; }
  .contact-card { padding: 38px 28px; }
  .phone { text-align: left; }
  .enquiry-intro { position: static; }
}

@media (max-width: 640px) {
  .brand span:last-child { font-size: .92rem; }
  .brand small { font-size: .64rem; }
  .home-hero .hero-grid { min-height: auto; }
  h1 { font-size: 3.05rem; }
  h2 { font-size: 2.45rem; }
  .page-hero { padding: 70px 0 74px; }
  .home-grid, .principles, .feature-grid, .image-row, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item.featured, .gallery-item.side, .gallery-item.half, .gallery-item.centered { aspect-ratio: 16 / 11; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .footer-links { align-items: flex-start; text-align: left; }
  .contact-panel, .ask-panel { padding: 30px 24px; }
  .enquiry-form { padding: 28px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .cqc-panel { grid-template-columns: 1fr; padding: 34px 24px; }
  .cqc-mark { width: 104px; height: 104px; font-size: 1.65rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .gallery-item img { transition: none; }
}
