/* =============================================================================
   Aqua Vitae Pools — Main Stylesheet
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&display=swap');

/* =============================================================================
   Design Tokens
   ============================================================================= */

:root {
  --navy:      #1d3e49;
  --teal:      #294b5e;
  --blue-soft: #5a8fa0;
  --sand:      #b5a898;
  --cream:     #f5f0ea;
  --taupe:     #a89d94;
  --white:     #ffffff;
  --black:     #0d1f26;

  --font:      'Montserrat', sans-serif;
  --fw-light:  300;
  --fw-reg:    400;
  --fw-med:    500;
  --fw-semi:   600;
  --fw-bold:   700;
  --fw-extra:  800;

  --max-w:  1240px;
  --gap:    clamp(1.5rem, 4vw, 3rem);

  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.28s var(--ease);
  --radius:     4px;
}

/* =============================================================================
   Reset & Base
   ============================================================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-weight: var(--fw-reg);
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* =============================================================================
   Layout Utilities
   ============================================================================= */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section {
  padding-block: clamp(4.5rem, 9vw, 9rem);
}

/* =============================================================================
   Typography
   ============================================================================= */

.display-title {
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  font-weight: var(--fw-light);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.display-title strong {
  font-weight: var(--fw-bold);
  display: block;
}

.section-label {
  font-size: 0.75rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 0.75rem;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.section-heading em {
  font-style: normal;
  font-weight: var(--fw-light);
}

/* =============================================================================
   Guide / Article pages
   ============================================================================= */

/* Header */
.guide-header {
  background: var(--blue-soft);
  color: var(--white);
  padding-block: clamp(4rem, 7vw, 7rem);
  padding-top: calc(86px + clamp(2.5rem, 5vw, 4rem));
}

.guide-header__inner { max-width: 780px; }

.guide-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.guide-breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.guide-breadcrumb a:hover { color: var(--white); }

.guide-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.guide-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: var(--fw-light);
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.75rem;
  max-width: 62ch;
}

.guide-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.guide-author img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.guide-author__name {
  display: block;
  font-size: 0.875rem;
  font-weight: var(--fw-semi);
  color: var(--white);
}

.guide-author__title {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

/* Hero image */
.guide-hero-img {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}

.guide-hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Body layout */
.guide-body {
  background: var(--white);
  padding-block: clamp(3rem, 6vw, 5rem);
  overflow-x: hidden;
}

.guide-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: start;
  width: 100%;
}

/* Article */
.guide-article {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.guide-article section {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(29,62,73,0.08);
}

.guide-article section:last-child {
  border-bottom: none;
}

.guide-intro {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: var(--fw-med);
  line-height: 1.75;
  color: var(--navy);
  max-width: none;
}

.guide-article h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: var(--fw-bold);
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  margin-top: 0;
  line-height: 1.2;
}

.guide-article h3 {
  font-size: 1.0625rem;
  font-weight: var(--fw-semi);
  color: var(--navy);
  margin-top: 1.75rem;
  margin-bottom: 0.625rem;
}

.guide-article p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(29,62,73,0.85);
  max-width: none;
  margin-bottom: 1rem;
}

.guide-article p:last-child { margin-bottom: 0; }

/* Pricing tables */
.cost-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 8px;
  border: 1px solid rgba(29,62,73,0.12);
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.cost-table th {
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: var(--fw-semi);
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
}

.cost-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(29,62,73,0.08);
  color: rgba(29,62,73,0.85);
  line-height: 1.5;
}

.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr:nth-child(even) td { background: rgba(29,62,73,0.03); }
.cost-table td strong { color: var(--navy); }

/* Options cards */
.guide-options {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.guide-option {
  background: var(--cream);
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 3px solid rgba(29,62,73,0.15);
}

.guide-option--highlight {
  background: var(--white);
  border-left: 3px solid var(--blue-soft);
  box-shadow: 0 2px 12px rgba(29,62,73,0.08);
}

.guide-option h3 {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 0.625rem;
  color: var(--navy);
}

.guide-option p {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.guide-option p:last-of-type { margin-bottom: 0.75rem; }

/* Inline figures */
.guide-figure {
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
}

.guide-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.guide-figure figcaption {
  font-size: 0.8125rem;
  color: rgba(29,62,73,0.55);
  padding: 0.625rem 0.75rem;
  background: var(--cream);
  font-style: italic;
  line-height: 1.5;
}

/* Comparison boxes */
.guide-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.guide-comparison__item {
  padding: 1.5rem;
  border-radius: 8px;
}

.guide-comparison__item h3 {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.guide-comparison__item p { font-size: 0.9375rem; margin-bottom: 0; }

.guide-comparison__item--conventional {
  background: rgba(165,32,32,0.06);
  border: 1px solid rgba(165,32,32,0.15);
}

.guide-comparison__item--conventional h3 { color: #8b2020; }

.guide-comparison__item--natural {
  background: rgba(29,62,73,0.05);
  border: 1px solid rgba(29,62,73,0.15);
}

.guide-comparison__item--natural h3 { color: var(--navy); }

/* Callout box */
.guide-callout {
  background: var(--cream);
  border-left: 3px solid var(--blue-soft);
  padding: 1.5rem;
  border-radius: 0 6px 6px 0;
  margin: 1.5rem 0;
}

.guide-callout p { margin-bottom: 0; }

.guide-callout .btn {
  display: inline-flex;
  width: fit-content;
}

/* Design styles grid */
.guide-styles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.guide-style {
  background: var(--cream);
  border-radius: 8px;
  overflow: hidden;
}

.guide-style img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.guide-style:hover img { transform: scale(1.03); }

.guide-style h3 {
  font-size: 0.9375rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--navy);
  padding: 1rem 1.25rem 0;
}

.guide-style p {
  font-size: 0.875rem;
  margin-bottom: 0;
  padding: 0 1.25rem 1.25rem;
}

/* Benefits list */
.guide-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.guide-benefits li {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(29,62,73,0.85);
  padding-left: 1.5rem;
  position: relative;
}

.guide-benefits li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: 0.55rem;
  top: 0.45em;
  color: var(--blue-soft);
}

/* FAQ */
.guide-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(29,62,73,0.1);
  padding-block: 1.5rem;
}

.faq-item:first-child { border-top: 1px solid rgba(29,62,73,0.1); }

.faq-item h3 {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 0.625rem;
  color: var(--navy);
}

.faq-item p { font-size: 0.9375rem; margin-bottom: 0; }

.faq-item a { color: var(--blue-soft); text-decoration: underline; }

/* Related guides */
.guide-related { border-top: none; }

.guide-related h2 { margin-bottom: 1.5rem; }

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

.guide-related__card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: 8px;
  text-decoration: none;
  color: var(--navy);
  transition: background var(--transition), transform var(--transition);
}

.guide-related__card:hover {
  background: var(--sand);
  transform: translateY(-2px);
}

.guide-related__label {
  font-size: 0.7rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-soft);
}

.guide-related__card h3 {
  font-size: 0.9375rem;
  font-weight: var(--fw-semi);
  margin: 0;
  color: var(--navy);
}

.guide-related__card p {
  font-size: 0.8125rem;
  color: rgba(29,62,73,0.65);
  margin: 0;
  flex: 1;
}

/* Sidebar */
.guide-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.guide-toc {
  background: var(--cream);
  border-radius: 8px;
  padding: 1.25rem;
}

.guide-toc__heading {
  font-size: 0.7rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(29,62,73,0.45);
  margin-bottom: 0.875rem;
  max-width: none;
}

.guide-toc__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: toc;
}

.guide-toc__list li { counter-increment: toc; }

.guide-toc__list a {
  display: block;
  font-size: 0.875rem;
  color: rgba(29,62,73,0.7);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(29,62,73,0.06);
  transition: color var(--transition);
  text-decoration: none;
}

.guide-toc__list a:hover { color: var(--navy); }
.guide-toc__list li:last-child a { border-bottom: none; }

.guide-sidebar-cta {
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.guide-sidebar-cta img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
}

.guide-sidebar-cta h3 {
  font-size: 1rem;
  font-weight: var(--fw-semi);
  color: var(--white);
  margin: 0;
}

.guide-sidebar-cta p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: none;
  margin: 0;
}

.guide-sidebar-links {
  background: var(--cream);
  border-radius: 8px;
  padding: 1.25rem;
}

.guide-sidebar-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.guide-sidebar-links a {
  display: block;
  font-size: 0.875rem;
  color: rgba(29,62,73,0.7);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(29,62,73,0.06);
  text-decoration: none;
  transition: color var(--transition);
}

.guide-sidebar-links a:hover { color: var(--navy); }
.guide-sidebar-links li:last-child a { border-bottom: none; }

/* Responsive */
@media (max-width: 1024px) {
  .guide-layout { grid-template-columns: 1fr; }
  .guide-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .guide-toc, .guide-sidebar-cta, .guide-sidebar-links { flex: 1 1 280px; }
  .guide-comparison { grid-template-columns: 1fr; }
  .guide-styles { grid-template-columns: 1fr; }
  .guide-related__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .guide-sidebar { flex-direction: column; }
  .guide-related__grid { grid-template-columns: 1fr; }
  .guide-hero-img img { height: 240px; }
}

/* =============================================================================
   Contact page
   ============================================================================= */

.contact-header {
  background: var(--blue-soft);
  color: var(--white);
  padding-block: clamp(5rem, 10vw, 9rem);
  padding-top: calc(86px + clamp(3rem, 6vw, 5rem));
}

.contact-header__inner {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.contact-header__inner .section-heading { margin-bottom: 1.25rem; }
.contact-header__inner .lead { max-width: none; color: rgba(255,255,255,0.88); }

/* Two-column layout */
.contact-body { background: var(--cream); }

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

/* Tips box */
.contact-tips {
  background: var(--white);
  border: 1px solid rgba(29,62,73,0.1);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.contact-tips__heading {
  font-size: 0.875rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.contact-tips p {
  font-size: 0.875rem;
  color: rgba(29,62,73,0.7);
  margin-bottom: 0.75rem;
  max-width: none;
}

.contact-tips ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-tips li {
  font-size: 0.875rem;
  color: var(--navy);
  padding-left: 1.25rem;
  position: relative;
}

.contact-tips li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: 0.5rem;
  top: 0.35em;
  color: var(--blue-soft);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row--half { flex-direction: row; }
.form-row--half .form-group { flex: 1; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.04em;
  color: var(--navy);
}

.form-optional {
  font-weight: var(--fw-reg);
  color: rgba(29,62,73,0.5);
  font-size: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid rgba(29,62,73,0.2);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-soft);
  box-shadow: 0 0 0 3px rgba(90,143,160,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(29,62,73,0.35);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231d3e49' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-form__submit {
  align-self: flex-start;
  padding: 0.875rem 2.5rem;
}

.contact-form__note {
  font-size: 0.8125rem;
  color: rgba(29,62,73,0.5);
  margin-top: -0.5rem;
  max-width: none;
}

/* Info column */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 100px;
}

.contact-info-block {}

.contact-info-block__heading {
  font-size: 0.75rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(29,62,73,0.5);
  margin-bottom: 0.875rem;
}

.contact-email-link {
  font-size: 1.0625rem;
  font-weight: var(--fw-med);
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(29,62,73,0.3);
  transition: text-decoration-color var(--transition);
}

.contact-email-link:hover { text-decoration-color: var(--navy); }

.contact-info-block--highlight {
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
}

.contact-info-block--highlight .contact-info-block__heading {
  color: rgba(255,255,255,0.5);
}

.contact-info-block--highlight p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: none;
}

.contact-offices {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-style: normal;
}

.contact-office {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-office strong {
  font-size: 0.9375rem;
  font-weight: var(--fw-semi);
  color: var(--navy);
}

.contact-office span {
  font-size: 0.8125rem;
  color: rgba(29,62,73,0.55);
}

.contact-service-areas {
  font-size: 0.9375rem;
  font-weight: var(--fw-med);
  color: var(--navy);
  max-width: none;
}

.contact-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-social__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: var(--fw-med);
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-social__link:hover { color: var(--blue-soft); }

@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-col { position: static; }
}

@media (max-width: 600px) {
  .form-row--half { flex-direction: column; }
}

/* =============================================================================
   Consultation page
   ============================================================================= */

.consult-detail__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: start;
}

.consult-detail__main h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.consult-detail__main p { max-width: none; }

.consult-detail__sidebar { position: sticky; top: 100px; }

.consult-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.consult-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.consult-step__num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: var(--fw-bold);
}

.consult-step strong {
  display: block;
  font-weight: var(--fw-semi);
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.consult-step p { font-size: 0.9375rem; color: rgba(29,62,73,0.7); max-width: none; margin: 0; }

.consult-formats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.consult-format {
  background: var(--cream);
  border-radius: 8px;
  padding: 1.25rem;
}

.consult-format h3 { font-size: 0.9375rem; margin-top: 0; margin-bottom: 0.375rem; color: var(--navy); }
.consult-format p { font-size: 0.875rem; color: rgba(29,62,73,0.7); margin: 0; max-width: none; }

@media (max-width: 1024px) {
  .consult-detail__grid { grid-template-columns: 1fr; }
  .consult-detail__sidebar { position: static; }
  .consult-formats { grid-template-columns: 1fr; }
}

/* =============================================================================
   Services hub page
   ============================================================================= */

.services-hub { background: var(--navy); }

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

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--teal);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.service-card--featured {
  grid-column: span 1;
  background: var(--blue-soft);
  position: relative;
}

.service-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.service-card:hover .service-card__img img { transform: scale(1.05); }

.service-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.service-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  align-self: flex-start;
}

.service-card__body h3 {
  font-size: 1rem;
  font-weight: var(--fw-semi);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-top: 0.25rem;
}

.service-card__body p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: none;
  flex: 1;
}

.service-card__price {
  font-size: 0.9375rem;
  font-weight: var(--fw-semi);
  color: var(--white);
}

.service-card__body .text-link {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  align-self: flex-start;
  margin-top: 0.25rem;
}

.service-card:hover .text-link { color: var(--white); }

/* Featured consultation section */
.service--consult-feature .service__content { background: var(--cream); color: var(--navy); }
.service--consult-feature .service__body p { max-width: none; }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* =============================================================================
   Project page — Lisbon Oasis
   ============================================================================= */

/* Award + Stats bar */
.project-stats {
  background: var(--navy);
  color: var(--white);
  padding-block: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.project-stats__inner {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
}

.project-stats__award {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.project-stats__award img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.project-stats__award div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.project-stats__award strong {
  font-size: 0.875rem;
  font-weight: var(--fw-semi);
  color: var(--white);
  line-height: 1.3;
}

.project-stats__award span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.project-stats__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.project-stats__grid {
  display: flex;
  gap: clamp(1.5rem, 4vw, 4rem);
  flex-wrap: wrap;
}

.project-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.project-stat__number {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: var(--fw-bold);
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.project-stat__label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Project overview */
.project-overview { background: var(--cream); }

.project-overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.project-overview__text .section-heading { color: var(--navy); margin-bottom: 1.25rem; }
.project-overview__text p { max-width: none; margin-bottom: 1rem; }

.project-features-list {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(29,62,73,0.12);
}

.project-features-list__label {
  font-size: 0.7rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(29,62,73,0.5);
  margin-bottom: 0.875rem;
}

.project-features-list ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}

.project-features-list li {
  font-size: 0.875rem;
  color: var(--navy);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.project-features-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: 0.5rem;
  top: 0.3em;
  color: var(--blue-soft);
}

.project-overview__media {
  border-radius: 8px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.project-overview__media img {
  width: 100%;
  height: auto;
  display: block;
}

/* Project service section colour themes */
.service--stonework .service__content       { background: var(--teal); color: var(--white); }
.service--construction-method .service__content { background: var(--cream); color: var(--navy); }
.service--timber .service__content          { background: var(--sand); color: var(--navy); }
.service--waterfalls .service__content      { background: var(--taupe); color: var(--navy); }

/* Gallery */
.project-gallery { background: var(--navy); }
.project-gallery .section-heading { color: var(--white); }
.project-gallery .section-label { color: rgba(255,255,255,0.5); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 0.75rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 6px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  display: block;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

@media (max-width: 1024px) {
  .project-overview__grid { grid-template-columns: 1fr; }
  .project-overview__media { position: static; }
  .project-features-list ul { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-item--wide { grid-column: span 2; }
  .project-stats__divider { display: none; }
}

@media (max-width: 768px) {
  .project-stats__inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .project-stats__grid { gap: 1.25rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item--tall, .gallery-item--wide { grid-row: span 1; grid-column: span 1; }
}

/* =============================================================================
   Our Creations page
   ============================================================================= */

/* Intro strip */
.creations-intro { background: var(--blue-soft); color: var(--white); }
.creations-intro__inner { text-align: center; max-width: 780px; margin-inline: auto; }
.creations-intro__inner .lead { max-width: none; color: rgba(255,255,255,0.88); }

/* Koi Ponds & Water Features service sections */
.service--koi .service__content           { background: var(--sand);  color: var(--navy); }
.service--waterfalls-wf .service__content { background: var(--teal);  color: var(--white); }
.service--architectural .service__content { background: var(--cream); color: var(--navy); }

/* NSPs & Biopools service sections */
.service--nsp-plantbased .service__content { background: var(--blue-soft); color: var(--white); }
.service--nsp-plantbased .service__body p  { max-width: none; }
.service--nsp-plantfree .service__content  { background: var(--navy); color: var(--white); }
.service--nsp-plantfree .service__body p   { max-width: none; }

/* Consultation page service sections */
.service--consult-what .service__content { background: var(--teal); color: var(--white); }
.service--consult-what .service__body p { max-width: none; }
.service--joel .service__content { background: var(--cream); color: var(--navy); }
.service--joel .service__body p { max-width: none; }
.service--joel .service__heading em { color: rgba(29,62,73,0.6); }

/* Featured project */
.featured-project { background: var(--cream); }
.featured-project__inner {}
.featured-project__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
.featured-project__badge img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 15px;
}
.featured-project__badge span {
  font-size: 0.75rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(29,62,73,0.55);
}
.featured-project__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.featured-project__media {
  border-radius: 8px;
  overflow: hidden;
}
.featured-project__media img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease);
}
.featured-project__media:hover img { transform: scale(1.03); }
.featured-project__content {}
.featured-project__content p { max-width: none; line-height: 1.75; }
.featured-project__content p + p { margin-top: 1rem; }

/* Category grid */
.creations-grid-section { background: var(--navy); }
.creations-grid-section .section-heading { color: var(--white); }
.creations-grid-section .section-label { color: rgba(255,255,255,0.5); }

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

.creation-card {
  display: flex;
  flex-direction: column;
  background: var(--teal);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.creation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.creation-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.creation-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.creation-card:hover .creation-card__img img { transform: scale(1.05); }
.creation-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.creation-card__body h3 {
  font-size: 1rem;
  font-weight: var(--fw-semi);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.creation-card__body p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: none;
  flex: 1;
}
.creation-card__body .text-link {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.25rem;
  align-self: flex-start;
}
.creation-card:hover .text-link { color: var(--white); gap: 0.875rem; }

@media (max-width: 1024px) {
  .creations-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-project__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .creations-grid { grid-template-columns: 1fr; }
}

/* About page — dealer list */
.about__dealer-list {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about__dealer-list li {
  font-size: 0.9375rem;
  line-height: 1.6;
  padding-left: 1.25rem;
  position: relative;
}

.about__dealer-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  opacity: 0.5;
}

/* About page — service colour themes */
.service--philosophy .service__content  { background: var(--teal);  color: var(--white); }
.service--engineering .service__content { background: var(--cream); color: var(--navy); }
.service--filtration .service__content  { background: var(--sand);  color: var(--navy); }
.service--natural .service__content     { background: var(--taupe); color: var(--navy); }
.service--craft .service__content       { background: var(--navy);  color: var(--white); }
.service--craft .service__body p        { color: rgba(255,255,255,0.85); }

/* About page — what we create strip */
.about-services {
  background: var(--cream);
}

.about-services__inner {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.about-services__inner .section-heading {
  margin-bottom: 1.25rem;
}

.about-services__inner .lead {
  margin-bottom: 2.5rem;
  color: var(--navy);
  max-width: none;
}

.about-services__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Alignment rule (apply site-wide):
   - Headings, section labels, hero/intro leads  → text-align: center
   - Body paragraphs inside grid columns         → text-align: left, max-width: none
   - Standalone body paragraphs (CTA strips etc) → text-align: left, max-width: 52–64ch
   Never use text-align: justify (causes word-spacing rivers on mobile & in translation) */

p {
  max-width: 64ch; /* fallback for standalone paragraphs outside grid columns */
}

p + p {
  margin-top: 1rem;
}

.lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: var(--fw-light);
  line-height: 1.75;
}

/* =============================================================================
   Buttons
   ============================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  width: fit-content;      /* never stretch beyond text width */
  max-width: 100%;         /* but don't overflow small viewports */
}

.btn--white {
  background: var(--white);
  color: var(--navy);
}

.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn--outline-white {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
}

.btn--outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--navy);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29,62,73,0.3);
}

.btn--outline-dark {
  border: 1.5px solid var(--navy);
  color: var(--navy);
}

.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.text-link {
  font-size: 0.875rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition);
}

.text-link::after {
  content: '→';
  font-size: 1em;
}

.text-link:hover {
  gap: 0.875rem;
}

/* =============================================================================
   Header & Navigation
   ============================================================================= */

.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 200;
  background: var(--navy);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.nav {
  display: flex;
  align-items: center;
  height: 86px;
  gap: 0;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-inline-end: auto;
}

.nav__logo img {
  height: 62px;
  width: auto;
}

/* Menu */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.8rem;
  font-weight: var(--fw-med);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav__link:hover,
.nav__item.is-open > .nav__link {
  color: var(--white);
}

.nav__item--has-dropdown > .nav__link {
  padding-inline-end: 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav__item--has-dropdown > .nav__link::after {
  content: '';
  display: block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.5);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.nav__item--has-dropdown:hover > .nav__link::after,
.nav__item--has-dropdown.is-open > .nav__link::after {
  transform: rotate(180deg);
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 230px;
  background: var(--teal);
  border-radius: 6px;
  padding: 8px 0 0.625rem;
  box-shadow: 0 10px 36px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown.is-open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 0.625rem 1.375rem;
  font-size: 0.8rem;
  font-weight: var(--fw-med);
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.04em;
  transition: color var(--transition), background var(--transition);
}

.nav__dropdown a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Nav Actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-inline-start: 1.5rem;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.65);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.25rem;
  transition: color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.lang-switcher__btn:hover {
  color: var(--white);
}

.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  min-width: 160px;
  padding: 0.4rem 0;
  list-style: none;
  z-index: 300;
}

.lang-switcher__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background var(--transition);
}

.lang-switcher__option:hover {
  background: var(--cream);
}

.lang-switcher__option--active {
  font-weight: 700;
}

.nav__lang {
  font-size: 0.8rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.nav__lang:hover {
  color: var(--white);
}

.nav__cart {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}

.nav__cart:hover {
  color: var(--white);
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-inline-start: auto;
  flex-shrink: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
  flex-shrink: 0;
}

.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================================================
   Hero
   ============================================================================= */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 86px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=1920,fit=crop/YbNBB8waGeCnVbbV/biopool-portugal-natural-swimming-pool-YrD4aKbj0XFrJDK8.jpg');
  background-size: cover;
  background-position: center 40%;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(29,62,73,0.45) 0%,
    rgba(29,62,73,0.15) 45%,
    rgba(13,31,38,0.72) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding-block: clamp(3.5rem, 8vw, 7rem);
  max-width: 820px;
}

.hero__content .display-title {
  margin-bottom: 1.5rem;
}

.hero__content .lead {
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.75rem;
  max-width: 52ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* =============================================================================
   About / Intro
   ============================================================================= */

.about {
  background: var(--blue-soft);
  color: var(--white);
}

.about__header {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.about__header .section-heading {
  margin-bottom: 1.5rem;
}

.about__header .lead {
  max-width: none;
  color: rgba(255,255,255,0.85);
}

.about__body {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--gap);
  align-items: start;
}

.about__text p {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: rgba(255,255,255,0.88);
  max-width: none;
}

.about__text p + p {
  margin-top: 1.1rem;
}

.about__text .guide-links {
  margin-top: 1.75rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
}

.about__text .guide-links a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.4);
  transition: text-decoration-color var(--transition);
}

.about__text .guide-links a:hover {
  text-decoration-color: var(--white);
}

.about__sidebar {}

.award-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.award-card__badge {
  width: 90px;
  height: 90px;
  object-fit: cover;
  margin-bottom: 1.25rem;
  border-radius: 15px;
}

.award-card p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  max-width: none;
}

.award-card strong {
  font-weight: var(--fw-semi);
  color: var(--white);
}

/* Hero award — centred in the about header */
.award-card--hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 2.75rem;
  margin-inline: auto;
  max-width: 500px;
  padding: 2.25rem 2.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  margin-bottom: 0;
}

.award-card--hero .award-card__badge {
  width: 160px;
  height: 160px;
  margin-bottom: 1.25rem;
  margin-inline: auto;
}

.award-card--hero p {
  font-size: 1rem;
  text-align: center;
  max-width: 36ch;
}

.award-badges {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  padding: 1.75rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
}

.award-badges__label {
  font-size: 0.7rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  max-width: none;
}

.award-badges img {
  width: 160px;
  height: 160px;         /* same square as footer badges */
  object-fit: contain;
  border-radius: 15px;
  opacity: 0.82;
  transition: opacity var(--transition);
}

.award-badges img:hover {
  opacity: 1;
}

/* Services Tags */
.services-tags {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.services-tags__label {
  font-size: 0.9375rem;
  font-weight: var(--fw-med);
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.875rem;
  max-width: none;
}

.services-tags__list {
  font-size: 0.9375rem;
  line-height: 2.2;
  color: rgba(255,255,255,0.78);
}

.services-tags__list a {
  font-weight: var(--fw-med);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.25);
  transition: color var(--transition), text-decoration-color var(--transition);
}

.services-tags__list a:hover {
  color: var(--white);
  text-decoration-color: rgba(255,255,255,0.7);
}

/* =============================================================================
   Consultation CTA
   ============================================================================= */

/* Consultation pricing card grids — stack on mobile */
@media (max-width: 700px) {
  .consult-cards-3,
  .consult-cards-2 {
    grid-template-columns: 1fr !important;
  }
}
@media (min-width: 701px) and (max-width: 900px) {
  .consult-cards-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.consult-cta {
  background: var(--teal);
  color: var(--white);
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.consult-cta__grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  width: 100%;
}

.consult-cta__grid .consult-cta__body {
  margin-inline: auto;
  max-width: min(52ch, 100%);
}

.consult-cta__grid .btn {
  justify-self: center;   /* prevents grid stretch */
  align-self: center;
  width: fit-content;     /* only as wide as the text */
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}

.consult-cta__left {}

.consult-cta__eyebrow {
  font-size: 0.75rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.875rem;
}

.consult-cta__heading {
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  font-weight: var(--fw-light);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.consult-cta__heading strong {
  font-weight: var(--fw-bold);
}

.consult-cta__body {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  max-width: 52ch;
  margin-bottom: 2rem;
}

.consult-cta__availability {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  margin-top: 1rem;
  font-style: italic;
}


/* =============================================================================
   Service Sections
   ============================================================================= */

.service {
  overflow: hidden;
}

.service__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(420px, 55vw, 640px);
}

.service__media {
  position: relative;
  overflow: hidden;
}

.service__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.service:hover .service__media img {
  transform: scale(1.04);
}

.service__content {
  padding: clamp(3rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service__heading {
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: var(--fw-bold);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.service__heading em {
  font-style: normal;
  font-weight: var(--fw-light);
  display: block;
}

.service__body {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.78;
  margin-bottom: 2rem;
}

.service__body p {
  max-width: none;
}

.service__body p + p {
  margin-top: 1rem;
}

/* Colour themes */
.service--biopools .service__content {
  background: var(--cream);
  color: var(--navy);
}

.service--water-features .service__content {
  background: var(--sand);
  color: var(--navy);
}

.service--naturescapes .service__content {
  background: var(--taupe);
  color: var(--navy);
}

.service--regenerative .service__content {
  background: var(--cream);
  color: var(--navy);
}

.service--conversions .service__content {
  background: var(--navy);
  color: var(--white);
}

.service--conversions .service__body p {
  color: rgba(255,255,255,0.85);
}

.service--conversions .text-link {
  color: rgba(255,255,255,0.8);
}

.service--conversions .text-link:hover {
  color: var(--white);
}

/* Grid reversal for alternating layout */
.service__grid--reverse .service__media {
  order: 2;
}

.service__grid--reverse .service__content {
  order: 1;
}

/* =============================================================================
   Footer
   ============================================================================= */

.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.4fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-block: clamp(3.5rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer__logo {
  height: 105px;
  width: auto;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.footer__tagline {
  font-size: 1.0625rem;
  font-weight: var(--fw-light);
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}

.footer__email {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  display: inline-block;
}

.footer__email:hover {
  color: var(--white);
}

/* Social icons */
.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  align-items: center;
  justify-content: center;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.55);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.footer__social-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
}

/* Award strip above copyright */
.footer__award-strip {
  display: flex;
  flex-direction: row;          /* side by side on desktop */
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  flex-wrap: wrap;
  padding-block: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2rem;
}

.footer__award-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__award-item img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 15px;
  opacity: 0.85;
  transition: opacity var(--transition);
}

/* SF Garden Show — footer: fixed square; sidebar: full-width with white bg */
.footer__award-item img[alt*="San Francisco"] {
  object-fit: contain;
  background: var(--white);
  padding: 7px;
}

.award-badges img[alt*="San Francisco"] {
  background: var(--white);
  padding: 7px;
}

/* Monterey Bay — footer: fixed square; sidebar: full-width with white bg */
.footer__award-item img[alt*="Monterey"] {
  width: 160px;
  min-width: 160px;
  height: 160px;
  object-fit: contain;
  background: var(--white);
  padding: 7px;
}

.award-badges img[alt*="Monterey"] {
  background: var(--white);
  padding: 7px;
}

.footer__award-item img:hover {
  opacity: 1;
}

.footer__col-heading {
  font-size: 0.7rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer__col li + li {
  margin-top: 0.6rem;
}

.footer__col a,
.footer__col p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  transition: color var(--transition);
  line-height: 1.5;
  max-width: none;
}

.footer__col a:hover {
  color: var(--white);
}

.footer__col address {
  font-style: normal;
}

.footer__col address p + p {
  margin-top: 0.5rem;
}

.footer__bottom {
  padding-block: 1.75rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.04em;
}

/* =============================================================================
   Scroll Animations
   ============================================================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.35s; }
.reveal--delay-4 { transition-delay: 0.5s; }

/* =============================================================================
   Responsive — Tablet
   ============================================================================= */

@media (max-width: 1024px) {
  .about__body {
    grid-template-columns: 1fr;
  }

  .about__sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .services-tags {
    grid-column: 1 / -1;
  }

  .consult-cta__grid {
    grid-template-columns: 1fr;
  }

  .service__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  /* Force image above content in every section when stacked —
     prevents two adjacent images appearing back-to-back between sections */
  .service__grid--reverse .service__media  { order: -1; }
  .service__grid--reverse .service__content { order: 0; }

  .service__media {
    min-height: 50vw;
    max-height: 480px;
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* =============================================================================
   Responsive — Mobile
   ============================================================================= */

@media (max-width: 768px) {

  /* Nav */
  .nav__menu {
    display: none;
  }

  /* Hide entire nav__actions on mobile — lang switcher moves into menu drawer */
  .nav__actions {
    display: none;
  }

  .nav__toggle {
    display: flex;
    margin-inline-start: auto;
  }

  /* Language switcher inside mobile menu */
  .nav__lang-mobile {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: auto;
  }

  .nav__lang-mobile a {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    transition: all 0.2s;
  }

  .nav__lang-mobile a.active,
  .nav__lang-mobile a:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.08);
  }

  /* Mobile nav drawer */
  .nav__menu.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    inset: 0;
    top: 76px;
    background: var(--navy);
    padding: 1.5rem;
    overflow-y: auto;
    z-index: 190;
    gap: 0;
  }

  .nav__menu.is-open .nav__link {
    font-size: 1.1rem;
    padding: 1rem 0.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
  }

  .nav__menu.is-open .nav__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 0.5rem 0;
    display: none;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .nav__menu.is-open .nav__item--has-dropdown.is-open .nav__dropdown {
    display: block;
  }

  .nav__menu.is-open .nav__dropdown a {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .nav__menu.is-open .nav__actions-mobile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    margin-top: auto;
  }

  /* Hero */
  .hero__bg {
    background-attachment: scroll;
  }

  /* About */
  .about__sidebar {
    grid-template-columns: 1fr;
  }

  /* Service */
  .service__media {
    min-height: 60vw;
  }

  .service__content {
    padding: clamp(2rem, 6vw, 3rem);
  }

  /* Footer */
  .footer__main {
    grid-template-columns: 1fr;
  }

  .footer__col {
    text-align: center;
  }

  .footer__col address {
    text-align: center;
  }

  .footer__award-strip {
    flex-direction: column;     /* stacked on mobile */
    gap: 1.75rem;
  }
}
