:root {
  --ink: #1f2624;
  --muted: #66706b;
  --sand: #f4efe6;
  --paper: #fffdf8;
  --sea: #174c5d;
  --sea-dark: #0f3440;
  --line: rgba(31, 38, 36, 0.14);
  --white: #fff;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 22px 60px rgba(21, 35, 31, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: var(--white);
  padding: .75rem 1rem;
  border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 24px 0;
  color: var(--white);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: .02em; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.7); border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif; font-weight: 500;
}
.brand-text { font-size: 1.05rem; }
.main-nav { display: flex; align-items: center; gap: 26px; font-size: .93rem; }
.main-nav a { opacity: .92; }
.main-nav a:hover { opacity: 1; }
.nav-cta { border: 1px solid rgba(255,255,255,.65); padding: 10px 16px; border-radius: 999px; }
.nav-toggle { display: none; border: 1px solid rgba(255,255,255,.5); color: white; background: transparent; border-radius: 999px; padding: 8px 13px; }

.hero {
  min-height: 88vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: #173f4a;
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,23,27,.22) 0%, rgba(10,23,27,.18) 35%, rgba(10,23,27,.75) 100%); }
.hero-content { position: relative; z-index: 2; width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 170px 0 132px; }
.eyebrow, .section-kicker { text-transform: uppercase; letter-spacing: .17em; font-size: .75rem; font-weight: 700; }
.eyebrow { color: rgba(255,255,255,.82); }
.hero h1, .section h2, .enquiry-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.035em;
}
.hero h1 { font-size: clamp(3.4rem, 8vw, 7rem); max-width: 850px; line-height: .94; margin: 16px 0 22px; }
.hero-copy { max-width: 660px; font-size: clamp(1rem, 2vw, 1.28rem); color: rgba(255,255,255,.9); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--white); color: var(--ink); }
.button-ghost { border-color: rgba(255,255,255,.65); color: white; }
.button-dark { width: 100%; background: var(--ink); color: white; }

.hero-facts {
  position: absolute; z-index: 3; right: max(20px, calc((100vw - var(--max)) / 2)); bottom: 28px;
  display: flex; gap: 22px; padding: 14px 18px; border-radius: 14px;
  background: rgba(20,32,34,.56); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.22);
  font-size: .88rem;
}
.hero-facts span { white-space: nowrap; }
.hero-facts strong { font-size: 1.05rem; margin-right: 3px; }

.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  width: min(calc(100% - 40px), var(--max)); margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.trust-strip div { padding: 26px 22px; border-right: 1px solid var(--line); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; font-weight: 500; }
.trust-strip span { color: var(--muted); font-size: .88rem; }

.section { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 108px 0; }
.section-kicker { color: var(--sea); margin-bottom: 22px; }
.section-kicker.light { color: rgba(255,255,255,.64); }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.section h2, .enquiry-section h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.02; margin: 0; }
.intro-copy { font-size: 1.08rem; color: #4e5854; }
.intro-copy p:first-child { margin-top: 0; }

.feature-grid { width: min(calc(100% - 40px), var(--max)); margin: -34px auto 0; display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: white; box-shadow: var(--shadow); }
.feature-card { padding: 32px 28px 34px; border-right: 1px solid var(--line); min-height: 260px; }
.feature-card:last-child { border-right: 0; }
.feature-number { color: var(--sea); font-size: .72rem; letter-spacing: .12em; }
.feature-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; font-weight: 500; margin: 32px 0 12px; }
.feature-card p { color: var(--muted); font-size: .94rem; margin: 0; }

.gallery-section { padding-top: 138px; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; margin-bottom: 42px; }
.section-heading p { color: var(--muted); margin: 0; max-width: 520px; }
.gallery { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 250px; gap: 12px; }
.gallery-item { border: 0; padding: 0; overflow: hidden; border-radius: 14px; background: #e9e2d7; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-large { grid-column: span 2; grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

.location { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.location-media { min-height: 610px; border-radius: var(--radius); background: linear-gradient(rgba(0,0,0,.05), rgba(0,0,0,.05)), url('https://a0.muscache.com/im/pictures/4a1ab9ae-2d83-4835-987a-7c1edc6dbd64.jpg?im_w=720') center/cover no-repeat; box-shadow: var(--shadow); }
.location-copy p { color: var(--muted); font-size: 1.03rem; }
.location-copy h2 { margin-bottom: 24px; }
.location-note { display: grid; gap: 2px; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.location-note span { color: var(--muted); }

.reviews { padding-top: 70px; }
.review-stats { display: grid; grid-template-columns: .7fr 1.6fr .7fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: white; }
.review-score, .review-copy-card { padding: 38px; }
.review-score { text-align: center; display: flex; flex-direction: column; justify-content: center; }
.review-score:first-child { border-right: 1px solid var(--line); }
.review-score:last-child { border-left: 1px solid var(--line); }
.big-score { font-family: Georgia, "Times New Roman", serif; font-size: 4rem; line-height: 1; }
.review-score span:nth-child(2) { margin-top: 8px; font-weight: 700; }
.review-score small { color: var(--muted); }
.review-copy-card { display: flex; flex-direction: column; justify-content: center; }
.review-copy-card p { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.35rem, 3vw, 2rem); line-height: 1.25; margin: 0 0 20px; }
.review-source { color: var(--muted); font-size: .82rem; }

.enquiry-section { background: var(--sea-dark); color: white; padding: 100px max(20px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.enquiry-intro p { color: rgba(255,255,255,.76); font-size: 1.05rem; max-width: 560px; }
.direct-benefits { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.direct-benefits span { border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: 8px 12px; color: rgba(255,255,255,.82); font-size: .82rem; }
.enquiry-form { background: #fffdf8; color: var(--ink); padding: 30px; border-radius: var(--radius); box-shadow: 0 24px 80px rgba(0,0,0,.18); }
.enquiry-form label { display: grid; gap: 7px; margin-bottom: 16px; font-size: .85rem; font-weight: 700; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
input, select, textarea { width: 100%; border: 1px solid #d8d4cb; border-radius: 10px; padding: 12px 13px; background: white; color: var(--ink); outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--sea); box-shadow: 0 0 0 3px rgba(23,76,93,.10); }
.optional { color: var(--muted); font-weight: 400; }
.form-note { margin: 12px 2px 0; color: var(--muted); font-size: .78rem; }
.form-note.success { color: #1b6b4a; }

.site-footer { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 44px 0; display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; font-size: .85rem; color: var(--muted); }
.site-footer > div:first-child { display: grid; }
.footer-brand { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; }
.footer-links { display: flex; gap: 18px; }
.legal { display: grid; justify-items: end; }

.lightbox { width: min(92vw, 1100px); border: 0; padding: 0; border-radius: 18px; background: #111; box-shadow: 0 30px 100px rgba(0,0,0,.5); }
.lightbox::backdrop { background: rgba(0,0,0,.8); }
.lightbox img { width: 100%; max-height: 84vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 10px; right: 12px; z-index: 3; width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(255,255,255,.9); color: #111; font-size: 1.5rem; }

@media (max-width: 980px) {
  .main-nav { position: absolute; top: 78px; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; width: min(320px, calc(100vw - 40px)); padding: 12px; background: rgba(22,38,42,.94); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.16); border-radius: 16px; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; }
  .nav-toggle { display: inline-flex; }
  .intro-grid, .section-heading, .location, .enquiry-section { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card:nth-child(2) { border-right: 0; }
  .feature-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .gallery { grid-template-columns: 1fr 1fr; }
  .review-stats { grid-template-columns: 1fr; }
  .review-score:first-child { border-right: 0; border-bottom: 1px solid var(--line); }
  .review-score:last-child { border-left: 0; border-top: 1px solid var(--line); }
  .enquiry-section { gap: 44px; }
  .site-footer { grid-template-columns: 1fr; justify-items: start; }
  .legal { justify-items: start; }
}

@media (max-width: 700px) {
  .site-header { width: min(calc(100% - 28px), var(--max)); padding-top: 16px; }
  .brand-text { display: none; }
  .hero { min-height: 760px; }
  .hero-content { width: min(calc(100% - 28px), var(--max)); padding: 130px 0 190px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.9rem); }
  .hero-facts { left: 14px; right: 14px; bottom: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
  .trust-strip { width: calc(100% - 28px); grid-template-columns: 1fr 1fr; }
  .trust-strip div:nth-child(2) { border-right: 0; }
  .trust-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { width: calc(100% - 28px); padding: 82px 0; }
  .intro-grid { gap: 30px; }
  .feature-grid { width: calc(100% - 28px); grid-template-columns: 1fr; }
  .feature-card { border-right: 0; border-bottom: 1px solid var(--line); min-height: auto; }
  .feature-card:last-child { border-bottom: 0; }
  .gallery-section { padding-top: 100px; }
  .gallery { grid-auto-rows: 210px; }
  .gallery-large, .gallery-wide { grid-column: span 2; }
  .location-media { min-height: 430px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .enquiry-section { padding: 78px 14px; }
  .enquiry-form { padding: 22px; }
  .site-footer { width: calc(100% - 28px); }
  .footer-links { flex-wrap: wrap; }
}

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