:root{
  --bg: #f6f8f7;
  --surface: #ffffff;
  --surface-2: #f0f5f3;
  --text: #0f172a;
  --muted: #475569;
  --border: rgba(15, 23, 42, .10);
  --shadow: 0 12px 30px rgba(15, 23, 42, .10);
  --brand: #0f766e;
  --brand-2: #115e59;
  --radius: 16px;
  --container: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(15,118,110,.12), transparent 55%),
              radial-gradient(900px 500px at 90% 0%, rgba(15,118,110,.10), transparent 55%),
              var(--bg);
  line-height: 1.55;
}

img{ max-width: 100%; height: auto; display: block; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link{
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform .2s ease;
  z-index: 9999;
}
.skip-link:focus{ transform: translateY(0); }

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 248, 247, .75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
}
.brand-mark{
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 25px rgba(15,118,110,.25);
}
.brand-text{ letter-spacing: -0.01em; }

.site-nav{
  display: flex;
  align-items: center;
  gap: 18px;
}
    .site-nav a:not(.btn) {
        text-decoration: none;
        color: var(--muted);
        font-weight: 600;
        font-size: 14px;
    }
        .site-nav a:not(.btn):hover {
            color: var(--text);
        }

.nav-toggle {
    display: none;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .06);
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.nav-toggle span{
  display:block;
  width: 20px; height: 2px;
  background: var(--text);
  margin: 4px 0;
  border-radius: 2px;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  box-shadow: 0 12px 24px rgba(15,118,110,.25);
}
.btn-primary:hover{ box-shadow: 0 18px 34px rgba(15,118,110,.28); }
.btn-ghost{
  background: rgba(255,255,255,.65);
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover{ background: rgba(255,255,255,.9); }
.btn-small{ padding: 10px 14px; font-size: 14px; }

/* Hero */
.hero{ padding: 54px 0 28px; }
.hero-grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: start;
  gap: 36px;
}
.eyebrow{
  margin: 0 0 12px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
h1, h2, h3{
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  letter-spacing: -0.02em;
}
h1{
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}
.hero-cta{ display: flex; flex-wrap: wrap; gap: 12px; margin: 18px 0 18px; }

.trust{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.trust-item{
  background: rgba(255,255,255,.7);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
}
.trust-big{ display:block; font-weight: 900; font-size: 18px; }
.trust-small{ display:block; color: var(--muted); font-size: 12px; font-weight: 600; }

.fineprint{
  margin: 14px 0 0;
  color: rgba(71, 85, 105, .9);
  font-size: 12px;
}

.hero-media{
  position: relative;
  display: grid;
  gap: 14px;
}
.hero-photo{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.hero-photo img{ width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* Hero slider */
.hero-photo.hero-slider{ position: relative; aspect-ratio: 4/5; }

.hero-photo.hero-slider img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-photo.hero-slider img.is-active{ opacity: 1; }

@media (prefers-reduced-motion: reduce){
  .hero-photo.hero-slider img{ transition: none; }
}

.hero-card{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
  padding: 14px 16px;
}
.hero-card-title{ margin: 0; font-weight: 800; }
.hero-card-sub{ margin: 6px 0 10px; color: var(--muted); font-weight: 600; font-size: 13px; }
.checklist{ margin: 0; padding-left: 18px; color: var(--muted); font-weight: 600; font-size: 13px; }
.checklist li{ margin: 6px 0; }

/* Sections */
.section{ padding: 54px 0; }
.section.alt{ background: rgba(255,255,255,.55); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head{
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 22px;
}
.section-head h2{ margin: 0; font-size: 34px; }
.section-head p{ margin: 0; color: var(--muted); font-weight: 600; }

.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: rgba(255,255,255,.75);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .06);
}
.card-icon{
  width: 40px; height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(15,118,110,.12);
  color: var(--brand-2);
  margin-bottom: 12px;
}
.card-icon svg{ width: 22px; height: 22px; }
.card h3{ margin: 0 0 6px; font-size: 22px; }
.card p{ margin: 0 0 10px; color: var(--muted); font-weight: 600; }
.bullets{ margin: 0; padding-left: 18px; color: var(--muted); font-weight: 600; }
.bullets li{ margin: 6px 0; }

.callout{
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(15,118,110,.10), rgba(255,255,255,.8));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.callout h3{ margin: 0 0 6px; font-size: 22px; }
.callout p{ margin: 0; color: var(--muted); font-weight: 600; max-width: 70ch; }

/* Pricing */
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-card{
  background: rgba(255,255,255,.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .06);
}
.price-card h3{ margin: 0 0 12px; font-size: 22px; }
.price-table{ width: 100%; border-collapse: collapse; }
.price-table td{
  padding: 10px 0;
  border-bottom: 1px dashed rgba(15, 23, 42, .12);
  color: var(--muted);
  font-weight: 650;
}
.price-table td:last-child{ text-align: right; color: var(--text); }
.price-table tr:last-child td{ border-bottom: none; }
.note{ margin: 16px 0 0; color: var(--muted); font-weight: 600; }

/* Testimonials */
.testimonials{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.quote{
  margin: 0;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .06);
}
.quote blockquote{
  margin: 0 0 12px;
  font-weight: 650;
  color: var(--muted);
}
.stars{ color: var(--brand-2); font-weight: 900; letter-spacing: .08em; }
.who{ margin-left: 8px; font-weight: 800; }
.center{ margin-top: 18px; display: grid; place-items: start; }

/* Press */
.press{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 18px;
}
.press-copy h2{ margin: 0 0 10px; }
.press-copy p{ margin: 0 0 14px; color: var(--muted); font-weight: 600; }
.press-media{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.press-media img{ width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* Gallery */
.gallery{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.thumb{
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  background: var(--surface);
  cursor: zoom-in;
}
.thumb img{ width: 100%; height: 92px; object-fit: cover; }
.thumb:focus-visible{ outline: 3px solid rgba(15,118,110,.35); outline-offset: 2px; }

.modal{
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(15, 23, 42, .55);
  padding: 20px;
  z-index: 200;
}
.modal.open{ display: grid; }
.modal-img{
  max-width: min(980px, 100%);
  max-height: 82vh;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  background: #fff;
}
.modal-close{
  position: fixed;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.16);
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* Contact */
.contact{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.contact h2{ margin: 0 0 10px; }
.contact p{ margin: 0 0 16px; color: var(--muted); font-weight: 600; }
.contact-cards{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.contact-card{
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.75);
  padding: 14px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .06);
}
.contact-card .label{ display:block; color: var(--muted); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.contact-card .value{ display:block; font-weight: 900; margin-top: 6px; }

.location-box{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.7);
  padding: 14px;
}
.location-box h3{ margin: 0 0 8px; font-size: 20px; }
.location-box .address{ margin: 0; line-height: 1.45; }
.location-actions{ margin-top: 10px; }
.map-embed{
  margin-top: 12px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(15, 23, 42, .08);
}
.map-embed iframe{
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}
@media (max-width: 640px){
  .map-embed iframe{ height: 240px; }
}
.muted{ color: var(--muted); font-weight: 600; }

.form{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  padding: 18px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .06);
}
.form-row{ margin-bottom: 12px; }
label{ display: grid; gap: 6px; font-weight: 750; font-size: 14px; }
input, select, textarea{
  border: 1px solid rgba(15, 23, 42, .16);
  border-radius: 12px;
  padding: 12px 12px;
  font: inherit;
  background: rgba(255,255,255,.95);
}
textarea{ resize: vertical; }
input:focus, select:focus, textarea:focus{
  outline: 3px solid rgba(15,118,110,.25);
  border-color: rgba(15,118,110,.55);
}

/* Footer */
.footer{
  padding: 26px 0 34px;
  border-top: 1px solid var(--border);
}
.footer-inner{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer p{ margin: 0; color: var(--muted); font-weight: 650; }

/* Mobile CTA bar */
.mini-cta{
  display: none;
  position: sticky;
  bottom: 12px;
  margin: 0 auto 12px;
  width: min(var(--container), calc(100% - 24px));
  gap: 10px;
  z-index: 40;
}
.mini-cta-btn{
  flex: 1;
  text-align: center;
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.85);
  font-weight: 900;
  color: var(--text);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .10);
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .trust{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .testimonials{ grid-template-columns: 1fr; }
  .press{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(3, 1fr); }
  .contact{ grid-template-columns: 1fr; }
  .center{ place-items: start; }
  .mini-cta{ display: flex; }
}

@media (max-width: 860px){
  .nav-toggle{ display: inline-flex; }
  .site-nav{
    position: fixed;
    top: 64px;
    right: 16px;
    left: 16px;
    background: rgba(255,255,255,.92);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .site-nav.open{ display: flex; }
  .site-nav a{ padding: 10px 10px; border-radius: 12px; }
  .site-nav a:hover{ background: rgba(15,118,110,.08); }
}
