:root {
  --cream: #fbf5ea;
  --sand: #ead7bf;
  --sage: #6f8068;
  --forest: #273d32;
  --clay: #b67855;
  --ink: #1e2622;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(39, 61, 50, 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(251, 245, 234, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(39, 61, 50, 0.1);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  color: var(--forest);
  letter-spacing: -0.03em;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--clay);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-weight: 800;
}

.nav-cta,
.button.primary {
  background: var(--forest);
  color: var(--white);
}

.button.secondary {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.8);
}

.nav-toggle,
.nav-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

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

.hero-video {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(20, 35, 29, 0.35), rgba(20, 35, 29, 0.72));
}

.hero-content {
  position: relative;
  width: min(940px, 92vw);
  padding: 7rem 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--clay);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.hero .eyebrow {
  color: var(--sand);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
  margin: 0;
  color: var(--forest);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  letter-spacing: -0.06em;
}

.hero-copy {
  max-width: 690px;
  margin: 1.25rem auto 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(39, 61, 50, 0.1);
  margin: 0 clamp(1rem, 4vw, 4rem);
  transform: translateY(-2rem);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.trust-strip div {
  background: var(--white);
  padding: 1.35rem;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--forest);
}

.trust-strip span {
  color: #5f665f;
  font-size: 0.92rem;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.section h2 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  letter-spacing: -0.05em;
}

.section-copy p:first-child {
  margin-top: 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.5rem;
}

.warm {
  background: var(--sand);
}

.muted {
  background: #eef1e9;
}

.card-grid,
.service-list,
.testimonials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.card,
.service-card,
.price-panel,
blockquote,
.contact-form {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(39, 61, 50, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card h3,
.service-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.8rem;
}

.service-list {
  grid-template-columns: repeat(3, 1fr);
  grid-template-columns: repeat(auto-fit, minmax(320px, 420px));
  justify-content: center;
  gap: 1.25rem;  
}

.service-card span {
  display: inline-flex;
  width: 2.3rem;
  height: 2.3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--sand);
  color: var(--forest);
  font-weight: 900;
  margin-bottom: 1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  counter-increment: steps;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
}

.steps li::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-weight: 900;
}

.steps strong,
.steps span {
  display: block;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(39, 61, 50, 0.12);
}

.price-row:first-child {
  padding-top: 0;
}

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

blockquote {
  margin: 0;
  font-size: 1.15rem;
}

cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 800;
  color: var(--forest);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 800;
  color: var(--forest);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(39, 61, 50, 0.2);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  background: var(--white);
}

button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem clamp(1rem, 4vw, 4rem);
  background: var(--forest);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer h2 {
  color: var(--white);
  font-size: 1.75rem;
}

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

.site-footer nav {
  display: grid;
  gap: 0.4rem;
}

address {
  font-style: normal;
  line-height: 1.8;	
}

@media (max-width: 920px) {
  .site-nav {
    position: absolute;
    inset: 100% 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .nav-button {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: var(--forest);
    cursor: pointer;
  }

  .nav-button span,
  .nav-button span::before,
  .nav-button span::after {
    display: block;
    width: 1.2rem;
    height: 2px;
    background: var(--white);
    content: "";
  }

  .nav-button span::before {
    transform: translateY(-7px);
  }

  .nav-button span::after {
    transform: translateY(5px);
  }

  .nav-toggle:checked ~ .site-nav {
    display: flex;
  }

  .trust-strip,
  .card-grid,
  .service-list,
  .steps,
  .testimonials,
  .split,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 76vh;
  }

  .trust-strip {
    margin-inline: 1rem;
  }

  .price-row {
    display: grid;
  }
}

.logo img {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  object-fit: contain;
}

.hero-logo {
  width: min(180px, 42vw);
  height: auto;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.centre {
  margin-inline: auto;
  text-align: center;
}

.highlights {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5.75rem;
}

.highlight-card {
  background: var(--white);
  border: 1px solid rgba(39, 61, 50, 0.1);
  border-radius: var(--radius);
  padding: 2rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.highlight-icon {
  display: grid;
  place-items: center;
  width: 5.25rem;
  height: 5.25rem;
  margin: 0 auto 1.35rem;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--forest), var(--sage));
  border: 4px solid #b99a55;
  box-shadow: 0 16px 30px rgba(39, 61, 50, 0.18);
}

.highlight-icon svg {
  width: 2.6rem;
  height: 2.6rem;
  fill: var(--white);
}

.highlight-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
}

.highlight-card p {
  margin: 0;
  color: #5f665f;
}

.image-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.image-feature img,
.photo-grid img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.image-feature img {
  max-height: 620px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.photo-grid img {
  height: 420px;
}

.footer-logo {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 999px;
  object-fit: contain;
  background: var(--white);
  margin-bottom: 0.8rem;
}

.footer-social {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--white);
  border: 2px solid #b99a55;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
  background: var(--sand);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: var(--forest);
}

@media (max-width: 920px) {
  .highlight-grid,
  .image-feature,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid img {
    height: auto;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

/* Glen Dene updates */
.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.site-footer {
  grid-template-columns: 1.2fr 1fr 0.8fr auto;
  align-items: start;
}

.highlight-icon svg {
  fill: #ffffff;
}

@media (max-width: 920px) {
  .two-col,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

.map-button {
    display: inline-block;
    padding: 12px 24px;
    background: #2f4630;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.map-button:hover {
    background: #b89a56;
    transform: translateY(-2px);
}

.map-container {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.policy-page h1 {
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem;
    color: var(--forest);
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 400;
    line-height: 1.5;
}

.checkbox input {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox a {
    color: var(--forest);
    font-weight: 600;
    text-decoration: underline;
}

input:invalid:focus,
textarea:invalid:focus {
    border-color: #d9534f;
}

input:valid,
textarea:valid {
    border-color: rgba(39, 61, 50, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* 
  Thank You Page 
*/

.thank-you-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.thank-you-card {
    max-width: 800px;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow);
}

.thank-you-card h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
}

.thank-you-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--forest);
}

.thank-you-image {
    width: min(350px, 80%);
    height: auto;
    margin: 2rem auto;
    display: block;
}

.thank-you-note {
    font-size: 1.1rem;
    color: var(--clay);
    font-weight: 600;
}

.copyright {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}
