:root {
  --pine: #1f4f59;
  --sea: #2e7a8a;
  --olive: #6f7d5f;
  --sand: #f4efe7;
  --terracotta: #c8835f;
  --ink: #233136;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  --radius: 14px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
}

a {
  color: var(--sea);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(92%, var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}

.skip-link:focus {
  left: 10px;
  top: 10px;
  z-index: 1200;
  background: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(31, 79, 89, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
}

.brand {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 1.15rem;
}

.brand small {
  display: block;
  font-weight: 400;
  opacity: 0.86;
  font-size: 0.76rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--white);
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  font-weight: 500;
}

.site-nav a.active,
.site-nav a:hover,
.site-nav a:focus {
  background: rgba(255, 255, 255, 0.15);
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: clamp(420px, 75vh, 740px);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
}
.hero::before {  
  content: "";  
  position: absolute;  
  inset: 0;  
  background:  
    radial-gradient(  
      ellipse at center,  
      rgba(0, 0, 0, 0.70) 0%,  
      rgba(0, 0, 0, 0.45) 40%,  
      rgba(0, 0, 0, 0) 75%  
    ),  
    linear-gradient(  
      120deg,  
      rgba(14, 35, 39, 0.62),  
      rgba(14, 35, 39, 0.34)  
    );  
}
@media (max-width: 768px) {  
  .hero::before {  
    background:  
      radial-gradient(  
        ellipse at center,  
        rgba(0, 0, 0, 0.5) 0%,  
        rgba(0, 0, 0, 0.3) 40%,  
        rgba(0, 0, 0, 0) 75%  
      ),  
      linear-gradient(  
        120deg,  
        rgba(14, 35, 39, 0.62),  
        rgba(14, 35, 39, 0.34)  
      );  
  }  
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  width: min(92%, 920px);
}

.hero h1 {
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 66ch;
  margin-inline: auto;
}
.hero h1,  
.hero p {  
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);  
}
/* REVIEW SECTION */
.reviews-section {
  background-color: #f9f5f0;
  padding: 60px 20px;
  text-align: center;
}

.reviews-container {
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-title {
  font-size: 2rem;
  color: #4a3728;
  margin-bottom: 40px;
  font-family: Georgia, serif;
  letter-spacing: 1px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.review-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-stars {
  color: #c9a84c;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.review-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 15px;
}

.review-author {
  font-size: 0.9rem;
  color: #4a3728;
  font-weight: bold;
}
.button-row {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  border: 2px solid transparent;
  padding: 0.75rem 1.15rem;
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.2s ease;
   text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.page-section {
  padding: clamp(2.7rem, 5vw, 5rem) 0;
}

.page-section.alt {
  background: #fffdf9;
}

.section-head {
  max-width: 76ch;
  margin-bottom: 1.6rem;
}

.section-head h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  color: var(--pine);
}

.section-head p {
  margin-top: 0;
}

.grid {
  display: grid;
  gap: 1.2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-content {
  padding: 1.05rem 1rem 1.2rem;
}

.card h3 {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  color: var(--pine);
}

.feature-list,
.clean-list {
  margin: 0;
  padding-left: 1.2rem;
}

.feature-list li,
.clean-list li {
  margin-bottom: 0.45rem;
}

.highlight-box {
  background: linear-gradient(140deg, #ffffff, #fbf3ea);
  border-left: 6px solid var(--terracotta);
  padding: 1.2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.price-table th,
.price-table td {
  padding: 0.85rem;
  border-bottom: 1px solid #e7e7e7;
  text-align: left;
}

.price-table th {
  background: var(--pine);
  color: var(--white);
}

.note {
  font-size: 0.93rem;
  color: #3f4f55;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.gallery figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.gallery img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.gallery figcaption {
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
}
.things-gallery {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .things-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .things-gallery {
    grid-template-columns: 1fr;
  }
}
.page-hero {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%; /* nudge up/down to show best part of image */
}

.page-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 2rem;
}

/* Dark gradient overlay — fades in from bottom for text legibility */
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.page-hero h1 {
  margin-bottom: 0.55rem;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.45);
}

.page-hero p {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  max-width: 640px;
  margin: 0;
}

/* Tablet */
@media (max-width: 768px) {
  .page-hero {
    height: 260px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .page-hero {
    height: 210px;
  }
  .page-hero h1 {
    font-size: 1.5rem;
  }
}
.cta-band {
  background: var(--pine);
  color: var(--white);
  padding: 2.4rem 0;
}

.cta-band h2 {
  margin-top: 0;
}

.cta-band a {
  color: var(--white);
}

.site-footer {
  background: #0f2f35;
  color: rgba(255, 255, 255, 0.94);
  padding: 1.1rem 0 1.5rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-wrap p {
  margin: 0.35rem 0;
  font-size: 0.95rem;
}

.footer-wrap a {
  color: #d7f0f4;
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #1d4a53;
    display: none;
    padding: 0.75rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
  }

  .site-nav a {
    display: block;
  }
}
