:root {
  --white: #ffffff;
  --ink: #111111;
  --orange: #ff6b00;
  --light-orange: #ffa24c;
  --green: #7CB518;
  --light-green: #A7D129;
  --sand: #f8f3ea;
  --line: #e8decd;
  --text-soft: #4a4a4a;
  --text-green: #243B1D;
  --pale-green: #f1f8e9;
  --shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

/* Skip navigation link — visible only on keyboard focus */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0 0 8px 0;
  text-decoration: none;
  transition: top 0.15s;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* Global focus indicator for keyboard navigation */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top right, #fff4e3 0%, var(--white) 40%);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: 0.02em;
}

h2.subheading {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 1.6rem);
  line-height: 1.3;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0 0 1em;
  color: var(--text-soft);
}

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

u.orange {
  text-decoration-color: var(--orange);
  /* text-decoration-thickness: 2px; */
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  /* border-bottom: 1px solid var(--line); */
  box-shadow: 0 0px 10px rgba(0,0,0,.15);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
}

.brand strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
}

.brand small {
  color: var(--text-green);
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding-bottom: 0.2rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
  transition: transform 0.24s ease;
}

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

.cta-inline {
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
}

.hero {
  padding: 5rem 0;
  border-bottom: 10px solid var(--green);
  background: white;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--text-green);
  font-weight: 700;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.18rem;
  max-width: 64ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
}

.button-primary {
  background: var(--light-orange);
  color: var(--ink);
}

.button-ghost {
  border-color: #767676;
  color: var(--ink);
  background: var(--white);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.4rem;
}

.hero-points li {
  padding-left: 1.35rem;
  position: relative;
}

.hero-points li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.hero-card {
  /* background: linear-gradient(135deg, #fff7ea, #f5f9eb);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow); */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.hero-card img {
  width: min(330px, 84%);
}

.section {
  padding: 4.4rem 0;
}

.section-alt {
  /* background: var(--sand); */
  background: url("https://res.cloudinary.com/doh6kaeau/image/upload/f_auto/q_auto/w_2048/c_scale/pexels-solyartphotos-15413481_f1fdw2.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding: 8rem 0;
  border-bottom: 10px solid var(--orange);
}

.section-alt .container {
  background: rgba(255,255,255,.8);
  padding: 2.5rem;
  border-radius: 18px;
}

.section-alt.why-choose-us p {
  margin-bottom: 0;
}

.section-accent {
  background: linear-gradient(160deg, #fff8ef 0%, #eef4e2 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 1.4rem;
}

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

.why-photo {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  max-height: 520px;
}

.cards {
  display: grid;
  gap: 1rem;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem;
  background: var(--white);
}

.card.strong {
  box-shadow: var(--shadow);
}

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

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.checklist li {
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  background: #fffdfa;
}

.text-link {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
}

.centered {
  text-align: center;
}

.page-hero {
  padding: 3rem 0 1.3rem;
}

.page-hero.services {
  background: url("https://res.cloudinary.com/doh6kaeau/image/upload/f_auto/q_auto/w_2048/c_scale/pexels-solyartphotos-15805131_s9dqiv.jpg") no-repeat;
  background-size: cover;
  background-position: center -100px;
  padding: 6rem 0;
  border-bottom: 10px solid var(--green);
}

.page-hero.about {
  background: url("https://res.cloudinary.com/doh6kaeau/image/upload/f_auto/q_auto/w_2048/c_scale/pexels-solyartphotos-15728881_sqof7j.jpg") no-repeat;
  background-size: cover;
  background-position: center -100px;
  padding: 6rem 0;
  border-bottom: 10px solid var(--green);
}

.page-hero.faq, .page-hero.contact {
  /* background: rgba(78, 105, 38, .3); */
  background: var(--pale-green);
  background-size: cover;
  background-position: center -100px;
  padding: 6rem 0;
  border-bottom: 10px solid var(--light-green);
}

.page-hero.services .container, .page-hero.about .container {
  background: rgba(255,255,255,.85);
  padding: 2rem;
  border-radius: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  gap: 1rem;
  align-items: start;
}

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

.contact-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.8rem;
  transition: opacity 0.35s ease, transform 0.45s ease, max-height 0.45s ease, margin-top 0.35s ease;
  transform-origin: top;
  max-height: 1000px;
}

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

.contact-form .hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  background: var(--white);
}

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

.contact-form button {
  justify-self: start;
}

.contact-form-card {
  overflow: hidden;
}

.contact-form-card.is-submitting .button-primary {
  animation: contact-button-pulse 0.9s ease-in-out infinite;
}

.contact-form-card.is-sent .contact-form {
  opacity: 0;
  transform: translateY(10px);
  max-height: 0;
  margin-top: 0;
  pointer-events: none;
}

.contact-feedback {
  margin-top: 0.85rem;
  margin-bottom: 0;
  color: #9f2d1f;
  font-weight: 600;
}

.contact-thank-you {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid #c9e1ad;
  background: linear-gradient(145deg, #f9fff1 0%, #eef8df 100%);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.45s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.contact-thank-you h3 {
  margin: 0 0 0.35rem;
  color: var(--text-green);
}

.contact-thank-you p {
  margin: 0;
  color: var(--text-green);
}

.contact-thank-you.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes contact-button-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-form,
  .contact-thank-you {
    transition: none;
  }

  .contact-form-card.is-submitting .button-primary {
    animation: none;
  }
}

/* FAQ list */
.faq-list {
  display: grid;
  gap: 2rem;
}

.faq-item h3 {
  margin-bottom: 0.75rem;
  font-size: 2.25rem;
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 3px;
}

.faq-item ul {
  margin: 0.5rem 0 1rem 1.2rem;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

/* Hamburger toggle button — hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--ink);
  border-radius: 8px;
  cursor: pointer;
  padding: 0.45rem 0.55rem;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Active nav link indicator */
.site-nav a[aria-current="page"] {
  color: var(--orange);
}

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-footer {
  /* margin-top: 4rem; */
  background: #121212;
  color: #f7efe2;
  padding: 3rem 0 1.5rem;
}

.site-footer p,
.site-footer a {
  color: #e7dac5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.2rem;
}

.footer-grid h2,
.footer-grid h3 {
  color: #fff5e4;
}

.footer-note {
  margin-top: 1.7rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.disclaimer {
  max-width: 45ch;
  text-align: right;
}

/* Bio section styling */
.bio-grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

.bio-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--white);
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.bio-img-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.bio-img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--orange);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.bio-content h3 {
  margin-top: 0;
  font-size: 2rem;
  color: var(--ink);
}

.bio-content .bio-title {
  display: block;
  font-weight: 700;
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
}

.bio-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 1rem 4%;
    flex-direction: column;
    gap: 1rem;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .site-nav.is-open {
    display: flex;
  }

  .cta-inline {
    display: none;
  }

  .hero-grid,
  .split,
  .footer-grid,
  .contact-grid,
  .why-grid,
  .cards.three,
  .cards.two {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-card {
    min-height: 260px;
  }

  .disclaimer {
    text-align: left;
  }

  .bio-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .bio-img {
    width: 220px;
    height: 220px;
  }

  .seals-grid {
    gap: 1.5rem;
  }
}

/* Seals banner styling */
.seals-banner {
  margin: 9rem 0 3rem;
  padding: 4rem 0;
  background: #252525;
}

.seals-banner .container {
  display: flex;
  justify-content: center;
}

.seals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  /* max-width: 900px; */
}

.seals-grid img {
  flex: 0 0 auto;
  max-width: 150px;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  transition: all 0.3s ease;
}
.seals-grid img.wide {
  max-width: 200px;
}

.seals-grid img:nth-child(4),
.seals-grid img:nth-child(6) {
  filter: brightness(0) invert(1);
}

.seals-grid img:hover {
  transform: scale(1.05);
}

.seals-grid img:nth-child(4):hover,
.seals-grid img:nth-child(6):hover {
  filter: none;
}

@media (max-width: 640px) {
  .seals-grid {
    gap: 1.25rem;
  }
  .seals-grid img {
    max-width: 100%;
    max-height: 200px;
  }
}
