:root {
  /* Core luxury palette and reusable layout values */
  --green-950: #061814;
  --green-900: #0a211c;
  --green-850: #0f2f28;
  --green-800: #163b32;
  --green-700: #1f5145;
  --gold: #d9b46a;
  --gold-strong: #f1cf82;
  --ivory: #fbf7ee;
  --cream: #f4ead8;
  --text: #17231f;
  --muted: #66736d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 24, 20, 0.18);
  --shadow-soft: 0 14px 34px rgba(7, 24, 20, 0.12);
  --radius: 22px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
iframe {
  max-width: 100%;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--gold);
  color: var(--green-950);
  padding: 10px 14px;
  border-radius: 999px;
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(860px, calc(100% - 40px));
}

.section {
  padding: 112px 0;
}

.section-tight {
  padding: 74px 0;
}

.section-deep {
  background: linear-gradient(180deg, var(--green-950), var(--green-850));
  color: var(--ivory);
}

.section-warm {
  background: #fff9ed;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 24, 20, 0.76);
  border-bottom: 1px solid rgba(217, 180, 106, 0.16);
  backdrop-filter: blur(20px);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(6, 24, 20, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ivory);
  min-width: 0;
}

.logo-image {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.logo strong,
.logo small {
  display: block;
}

.logo strong {
  font-size: 19px;
  line-height: 1.1;
}

.logo small {
  color: rgba(251, 247, 238, 0.72);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  color: rgba(251, 247, 238, 0.82);
  font-size: 14px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  transition: color var(--transition);
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-strong);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(217, 180, 106, 0.28);
  border-radius: 50%;
  background: transparent;
  color: var(--ivory);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  color: var(--green-950);
  box-shadow: 0 12px 28px rgba(217, 180, 106, 0.25);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  box-shadow: 0 18px 40px rgba(217, 180, 106, 0.35);
}

.btn-outline {
  border-color: rgba(251, 247, 238, 0.42);
  color: var(--ivory);
  background: rgba(251, 247, 238, 0.08);
}

.btn-light {
  border-color: rgba(251, 247, 238, 0.5);
  color: var(--ivory);
  background: rgba(251, 247, 238, 0.1);
}

.btn-large {
  min-height: 54px;
  padding-inline: 28px;
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ivory);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    image-set(
      url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1200&q=72") 1x,
      url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=2000&q=76") 2x
    )
    center / cover no-repeat;
  transform: scale(1.04);
  animation: slowZoom 14s ease-out forwards;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 24, 20, 0.92) 0%, rgba(6, 24, 20, 0.74) 42%, rgba(6, 24, 20, 0.18) 100%),
    linear-gradient(0deg, rgba(6, 24, 20, 0.5), rgba(6, 24, 20, 0.08));
}

.hero-content {
  position: relative;
  padding: 140px 0 110px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  width: min(820px, 100%);
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 88px);
  font-weight: 600;
  line-height: 0.98;
}

.hero-subtitle,
.hero-years {
  width: min(620px, 100%);
  margin: 24px 0 0;
  color: rgba(251, 247, 238, 0.88);
  font-size: clamp(20px, 3vw, 30px);
}

.hero-years {
  margin-top: 8px;
  color: var(--gold-strong);
  font-weight: 750;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.trust {
  margin-top: -54px;
  position: relative;
  z-index: 3;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-card,
.price-card,
.icon-card,
.review-card,
.contact-card,
.faq-item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 47, 40, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.trust-card {
  min-height: 150px;
  padding: 28px;
  display: grid;
  align-content: center;
  gap: 12px;
}

.trust-card span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(217, 180, 106, 0.18);
  color: var(--green-800);
  font-weight: 900;
}

.trust-card h2,
.icon-card h3,
.review-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.cta-banner h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--green-950);
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.about-panel {
  position: relative;
}

.about-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.about-note {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  padding: 20px;
  color: var(--ivory);
  background: rgba(6, 24, 20, 0.78);
  border: 1px solid rgba(217, 180, 106, 0.28);
  border-radius: 18px;
  backdrop-filter: blur(14px);
}

.about-note strong,
.about-note span {
  display: block;
}

.about-note span {
  color: rgba(251, 247, 238, 0.76);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.section-deep .section-heading h2,
.section-deep .section-heading p:not(.eyebrow) {
  color: var(--ivory);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.price-card {
  position: relative;
  padding: 34px;
  color: var(--text);
  overflow: hidden;
}

.price-card.featured {
  border-color: rgba(217, 180, 106, 0.52);
  box-shadow: 0 28px 80px rgba(217, 180, 106, 0.14);
}

.service-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(217, 180, 106, 0.18);
  color: var(--green-850);
  font-size: 13px;
  font-weight: 850;
}

.price-card h3 {
  margin: 0 0 10px;
  color: var(--green-950);
  font-size: 28px;
}

.price-card-head {
  padding-right: 74px;
}

.price-card-head p {
  min-height: 78px;
  margin: 0;
  color: var(--muted);
}

.price-list {
  display: grid;
  gap: 12px;
  padding: 24px 0;
  margin: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(15, 47, 40, 0.1);
}

.price-list strong {
  color: var(--green-850);
  font-size: 22px;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.icon-card {
  min-height: 150px;
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.icon-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.icon-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green-850);
  color: var(--gold-strong);
  font-weight: 850;
}

.icon-card span svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-grid .icon-card:nth-child(5) span {
  font-size: 0;
}

.icon-grid .icon-card:nth-child(5) span::before {
  content: "£";
  font-size: 21px;
  font-weight: 900;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  padding: 28px;
}

.stars {
  margin: 8px 0 12px;
  color: #c99334;
  letter-spacing: 0.08em;
}

.review-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), filter var(--transition);
}

.gallery-grid img:hover {
  transform: translateY(-4px);
  filter: saturate(1.06);
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px;
  border-radius: 30px;
  color: var(--ivory);
  background:
    linear-gradient(100deg, rgba(6, 24, 20, 0.96), rgba(15, 47, 40, 0.86)),
    url("https://images.unsplash.com/photo-1519823551278-64ac92734fb1?auto=format&fit=crop&w=1400&q=78") center / cover;
  box-shadow: var(--shadow);
}

.cta-banner h2 {
  color: var(--ivory);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  position: relative;
  width: 100%;
  padding: 22px 58px 22px 24px;
  border: 0;
  color: var(--green-950);
  background: transparent;
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}

.faq-item button::after {
  position: absolute;
  top: 50%;
  right: 24px;
  content: "+";
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item.is-open button::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
  align-items: stretch;
}

.contact-card {
  padding: 34px;
  color: var(--text);
}

.contact-card h3 {
  margin: 0 0 18px;
  color: var(--green-950);
  font-size: 26px;
}

.contact-card address {
  font-style: normal;
}

.contact-card p,
.contact-card address {
  color: var(--muted);
}

.contact-card a:not(.btn) {
  color: var(--green-850);
  font-weight: 850;
}

.map-wrap {
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(217, 180, 106, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
}

.site-footer {
  padding: 64px 0 30px;
  color: rgba(251, 247, 238, 0.76);
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--gold-strong);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer a {
  transition: color var(--transition);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold-strong);
}

.footer-bottom {
  padding-top: 28px;
  margin-top: 34px;
  border-top: 1px solid rgba(217, 180, 106, 0.16);
  font-size: 14px;
}

.floating-phone,
.back-to-top {
  position: fixed;
  right: 22px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: opacity var(--transition), transform var(--transition);
}

.floating-phone {
  bottom: 92px;
  color: var(--green-950);
  background: var(--gold-strong);
  font-size: 13px;
  font-weight: 900;
}

.back-to-top {
  bottom: 24px;
  color: var(--ivory);
  background: var(--green-850);
  opacity: 0;
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.floating-phone:hover,
.back-to-top:hover {
  transform: translateY(-3px);
}

.mobile-bar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(217, 180, 106, 0.2);
  border-radius: 18px;
  background: rgba(6, 24, 20, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.mobile-bar a {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--gold-strong);
  font-weight: 850;
}

.mobile-bar a {
  color: var(--ivory);
  background: rgba(251, 247, 238, 0.12);
  border: 1px solid rgba(251, 247, 238, 0.22);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.01);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  .site-nav {
    gap: 14px;
    font-size: 13px;
  }

  .header-call {
    display: none;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 96px;
  }

  body {
    padding-top: 82px;
  }

  .section {
    padding: 86px 0;
  }

  .site-header {
    position: fixed;
    right: 0;
    left: 0;
    width: 100%;
    background: rgba(6, 24, 20, 0.94);
  }

  .header-inner {
    gap: 14px;
  }

  .logo {
    max-width: calc(100% - 58px);
  }

  .logo > span {
    min-width: 0;
  }

  .logo strong,
  .logo small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 102;
    flex: 0 0 44px;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 101;
    display: grid;
    align-content: start;
    gap: 0;
    width: 100%;
    height: calc(100dvh - 82px);
    margin-left: 0;
    padding: 18px 20px 120px;
    overflow-y: auto;
    background: rgba(6, 24, 20, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(100%, 0, 0);
    transition: transform var(--transition), opacity var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(217, 180, 106, 0.14);
    color: var(--ivory);
    font-size: 18px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 24, 20, 0.82), rgba(6, 24, 20, 0.5)),
      linear-gradient(90deg, rgba(6, 24, 20, 0.86), rgba(6, 24, 20, 0.24));
  }

  .trust {
    margin-top: -28px;
  }

  .trust-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .pricing-grid,
  .location-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .icon-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-banner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 84px;
  }

  body {
    padding-top: 72px;
  }

  .container,
  .narrow {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 72px;
  }

  .logo-image {
    width: 38px;
    height: 38px;
  }

  .logo strong {
    font-size: 17px;
  }

  .logo small {
    font-size: 10px;
  }

  .site-nav {
    top: 72px;
    height: calc(100dvh - 72px);
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    padding: 110px 0 84px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .trust-grid,
  .icon-grid,
  .review-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .trust-card,
  .price-card,
  .icon-card,
  .review-card,
  .contact-card {
    padding: 24px;
    border-radius: 18px;
  }

  .price-card-head {
    padding-right: 0;
  }

  .service-badge {
    position: static;
    width: max-content;
    margin-bottom: 16px;
  }

  .section-copy h2,
  .section-heading h2,
  .cta-banner h2 {
    font-size: clamp(34px, 11vw, 44px);
  }

  .about-note {
    position: static;
    margin-top: 14px;
    color: var(--green-950);
    background: var(--white);
  }

  .about-note span {
    color: var(--muted);
  }

  .cta-banner {
    padding: 30px 22px;
    border-radius: 22px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 360px;
  }

  .floating-phone,
  .back-to-top {
    display: none;
  }

  .mobile-bar {
    display: grid;
  }

  .site-footer {
    padding-bottom: 100px;
  }
}
