:root {
  --ink: #221e20;
  --paper: #f7f5f0;
  --paper-dark: #e8e6e6;
  --teal: #496e83;
  --teal-deep: #405f72;
  --white: #ffffff;
}

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

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Quicksand", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 0.5rem 0.75rem;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

.floating-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0.65rem 1rem;
}

.header-shell {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 999px;
  border: 1px solid #d3d0c7;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.9rem;
}

.brand {
  text-decoration: none;
  color: var(--teal-deep);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.site-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.hamburger {
  display: none;
  background: transparent;
  border: 1px solid #bfb9ad;
  border-radius: 8px;
  width: 42px;
  height: 38px;
  padding: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

main {
  padding-top: 4.8rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e8e6e6, #f7f5f0 48%, #e1ebf5);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 8% 12%, rgba(73, 110, 131, 0.2), transparent 46%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 2rem;
  padding: 4rem 1.25rem;
}

.hero-copy h1 {
  margin: 0.15rem 0 0.35rem;
  color: var(--teal-deep);
  font-size: clamp(2.3rem, 6vw, 5.4rem);
  line-height: 0.92;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
}

.hero-copy h2 {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 2rem);
  color: #2e4f64;
  font-family: "Playfair Display", Georgia, serif;
}

.eyebrow,
.eyebrow-2 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #5f6360;
  font-weight: 700;
}

.hero-cta {
  margin-top: 1.2rem;
  display: inline-block;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-weight: 700;
}

.hero-photo-wrap {
  display: flex;
  justify-content: center;
}

.hero-photo-frame {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.hero-stamp {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  z-index: 3;
  background: rgba(34, 30, 32, 0.74);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
}

.media-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(34, 30, 32, 0.28));
  pointer-events: none;
}

.open-banner {
  background: #221e20;
  color: var(--white);
  text-align: center;
  padding: 2.2rem 1rem;
}

.open-banner h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 0.95;
}

.open-banner p {
  margin-top: 1rem;
  font-size: 1.1rem;
}

.quote-strip {
  text-align: center;
  padding: 3rem 1rem;
  background: #f7f5f0;
}

.quote-strip p {
  margin: 0.5rem 0;
  font-size: clamp(1.1rem, 2.4vw, 1.8rem);
}

.quote-strip blockquote {
  margin: 1.4rem auto 0;
  max-width: 850px;
  font-size: clamp(1.5rem, 3.4vw, 2.7rem);
  font-weight: 700;
  color: #2d566e;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
}

.panel-section {
  padding: 3rem 1rem;
  max-width: none;
  margin: 0;
  position: relative;
}

.panel-section > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.panel-section h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

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

.services-grid article,
.reviews-grid article {
  border: 1px solid #d7d2c8;
  background: #fff;
  border-radius: 10px;
  padding: 0.95rem;
  position: relative;
  z-index: 3;
}

.services-section {
  background: #e1ebf5;
}

.service-media {
  margin: -0.95rem -0.95rem 0.8rem;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  height: 150px;
  position: relative;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process {
  background: #f0ece3;
}

.process-stack {
  max-width: 1100px;
  margin: 0 auto 1.2rem;
  min-height: 84px;
  position: relative;
}

.process-stack img {
  position: absolute;
  width: 120px;
  height: 84px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.process-stack .stack-a {
  left: 0;
  top: 0;
  z-index: 1;
}

.process-stack .stack-b {
  left: 76px;
  top: 8px;
  z-index: 2;
}

.process-stack .stack-c {
  left: 150px;
  top: 16px;
  z-index: 3;
}

.reviews {
  background: #f7f5f0;
}

.review-photo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-top: -1.55rem;
  box-shadow: 0 8px 14px rgba(34, 30, 32, 0.2);
}

.reviews-grid span {
  display: block;
  margin-top: 0.4rem;
  color: #666;
}

.faq details {
  border: 1px solid #d7d2c8;
  border-radius: 10px;
  background: #fff;
  padding: 0.8rem;
  margin-bottom: 0.7rem;
}

.faq-section {
  background: #e8e6e6;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.site-footer {
  background: #405f72;
  border-top: 4px solid #496e83;
  color: #fff;
  padding: 2.4rem 1rem 1.25rem;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.site-footer a {
  color: #fff;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  margin: 0.4rem 0 0.55rem;
}

.footer-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  opacity: 0.96;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  opacity: 1;
  text-decoration-color: rgba(255, 255, 255, 0.9);
}

.copyright {
  max-width: 1100px;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 900px) {
  .hero-grid,
  .services-grid,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo-frame {
    width: min(100%, 420px);
  }

  .process-stack {
    min-height: 0;
    display: flex;
    gap: 0.6rem;
  }

  .process-stack img,
  .process-stack .stack-a,
  .process-stack .stack-b,
  .process-stack .stack-c {
    position: static;
    width: 33%;
    height: 82px;
  }
}

@media (max-width: 840px) {
  .hamburger {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #d3d0c7;
    border-radius: 14px;
    padding: 0.8rem;
    display: none;
  }

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