:root{
  --text:#111111;
  --muted:#6b7280;
  --bg:#ffffff;
  --bg-soft:#f5f5f3;
  --line:rgba(17,17,17,0.08);
  --white:#ffffff;
  --shadow:0 14px 40px rgba(0,0,0,0.08);
  --shadow-hover:0 22px 50px rgba(0,0,0,0.12);
  --radius:22px;
  --radius-sm:14px;
  --container:1240px;
}

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

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

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

a{
  color:inherit;
}

iframe{
  border:0;
}

.title{
  margin:0;
  font-family:"League Spartan", sans-serif;
  letter-spacing:-0.035em;
  line-height:0.94;
}

/* =========================
   GLOBAL LAYOUT
========================= */

.section{
  max-width:var(--container);
  margin:0 auto;
  padding:96px 28px;
}

.alt-section{
  max-width:none;
  background:var(--bg-soft);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding-left:max(28px, calc((100vw - var(--container)) / 2 + 28px));
  padding-right:max(28px, calc((100vw - var(--container)) / 2 + 28px));
}

.section-header{
  max-width:820px;
  margin-bottom:36px;
}

.section-label{
  margin:0 0 10px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--muted);
}

.section h1,
.section h2{
  margin:0;
  font-size:clamp(2.2rem, 4vw, 4rem);
}

.section p{
  margin:0 0 18px;
  font-size:1.04rem;
  color:#2d2d2d;
}

.section-note{
  max-width:760px;
  margin-top:24px;
  color:var(--muted);
}

.split-section .split-layout{
  display:grid;
  grid-template-columns:420px 1fr;
  gap:48px;
  align-items:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:36px;
  box-shadow:var(--shadow);
}

.split-image{
  width:100%;
}

.split-image img{
  width:100%;
  height:auto;
  display:block;
  border-radius:18px;
}

.split-copy .section-header{
  margin-bottom:22px;
  max-width:none;
}

.split-copy .content-grid.two-col{
  gap:24px;
}

.split-copy .center-cta{
  margin-top:28px;
}

.split-copy .btn{
  min-height:52px;
}

.content-grid{
  display:grid;
  gap:30px;
}

.two-col{
  grid-template-columns:repeat(2, minmax(0, 1fr));
  align-items:start;
}

.intro-copy{
  max-width:900px;
}

.image-break{
  width:100%;
  height:420px;
  overflow:hidden;
}

.image-break img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.image-break-scissors img{
  object-position:center 49%;
}

.image-break-scissors::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:80px;
  background:linear-gradient(to bottom, rgba(0,0,0,0), #111);
  pointer-events:none;
}

/* =========================
   HERO NAV
========================= */
.nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:120;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:18px 20px;
  transition:
    background .3s ease,
    backdrop-filter .3s ease,
    border-color .3s ease,
    box-shadow .3s ease,
    padding .3s ease;
}

.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:42px;
  padding:0 18px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  text-decoration:none;
  background:transparent;
  color:#fff;
  border:1.5px solid rgba(255,255,255,0.9);
  transition:
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}

.nav-cta-dark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:42px;
  padding:0 18px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  text-decoration:none;
  background:#111;
  color:#fff;
  border:1.5px solid #111;
  transition:
    background .25s ease,
    border-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}

.nav-cta-dark:hover{
  background:#000;
  border-color:#000;
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(0,0,0,0.14);
}

.nav-center a,
.site-nav a{
  position:relative;
  text-decoration:none;
}

.nav-center a::after,
.site-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:1.5px;
  border-radius:999px;
  background:currentColor;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .28s ease;
  opacity:.9;
}

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

.mobile-book{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  height:64px;
  background:#111;
  color:#fff;
  display:none;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.1em;
  text-transform:uppercase;
  text-decoration:none;
  z-index:9999;
  box-shadow:0 -6px 20px rgba(0,0,0,0.18);

  transform:translateY(100%);
  transition:transform .30s ease;
}

.mobile-book.show{
  transform:translateY(0);
}

.mobile-book:hover{
  background:#000;
}

.nav.scrolled{
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.nav.scrolled .nav-cta{
  background:#111;
  color:#fff;
  border:1.5px solid #111;
}

.nav-cta:hover{
  background:#fff;
  color:#111;
  border-color:#fff;
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(0,0,0,0.12);
}

.nav.scrolled .nav-cta:hover{
  background:#000;
  color:#fff;
  border-color:#000;
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(0,0,0,0.18);
}

.nav-left,
.nav-right{
  display:flex;
  align-items:center;
  gap:16px;
}

.logo-link{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}

.logo{
  height:54px;
  width:auto;
  object-fit:contain;
}

.nav-center{
  display:flex;
  align-items:center;
  gap:32px;
}

.nav-center a{
  text-decoration:none;
  color:rgba(255,255,255,0.96);
  font-size:14px;
  font-weight:600;
  letter-spacing:0.015em;
  text-shadow:0 1px 8px rgba(0,0,0,0.16);
  transition:opacity .22s ease, transform .22s ease;
}

.nav-center a:hover{
  opacity:0.78;
  transform:translateY(-1px);
}

/* =========================
   SOCIAL ICONS
========================= */
.social-links,
.social-links-dark{
  display:flex;
  align-items:center;
  gap:18px;
}

.social-links a,
.social-links-dark a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:50%;
  text-decoration:none;
  transition:all .25s ease;
}

.social-links i,
.social-links-dark i{
  font-size:16px;
}

/* homepage / hero nav */
.nav .social-links a{
  background:rgba(255,255,255,0.12);
  color:#fff;
}

.nav .social-links a:hover{
  background:#fff;
  color:#111;
  transform:translateY(-2px);
}

/* =========================
   CONTACT PAGE
========================= */

.contact-hero{
  padding-top:56px;
  padding-bottom:32px;
}

.contact-hero-copy{
  max-width:900px;
}

.page-intro{
  max-width:760px;
  font-size:1.08rem;
  color:var(--muted);
  margin-top:14px;
}

.contact-image-band{
  position:relative;
  width:100%;
  height:420px;
  overflow:hidden;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.contact-image-band img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 60%;
}

.contact-image-band-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0.52));
  pointer-events:none;
}

.contact-image-band-text{
  position:absolute;
  left:max(28px, calc((100vw - var(--container)) / 2 + 28px));
  right:max(28px, calc((100vw - var(--container)) / 2 + 28px));
  bottom:24px;
  z-index:2;
  color:#fff;
}

.contact-image-band-text .section-label{
  color:rgba(255,255,255,0.85);
  margin:0 0 6px;
}

.contact-image-band-text h2{
  margin:0;
  font-size:clamp(1.6rem, 2.5vw, 2.2rem);
  color:#fff;
}

.contact-main-section{
  padding-top:56px;
}

.contact-shell{
  display:grid;
  grid-template-columns:minmax(0, 1.3fr) minmax(320px, 0.8fr);
  gap:32px;
  align-items:start;
}

.contact-form-card,
.contact-info-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:32px;
  box-shadow:var(--shadow);
}

.contact-card-header{
  margin-bottom:24px;
}

.contact-card-header h2{
  margin-bottom:10px;
}

.contact-card-header p:last-child{
  margin-bottom:0;
  color:var(--muted);
}

.contact-form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}

.form-field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.form-field-full{
  grid-column:1 / -1;
}

.form-field label{
  font-size:0.94rem;
  font-weight:600;
  color:#111;
}

.form-field label span{
  color:var(--muted);
  font-weight:500;
}

.form-field input,
.form-field textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  color:#111;
  padding:14px 15px;
  font:inherit;
  transition:border-color .2s ease, box-shadow .2s ease;
}

.form-field textarea{
  resize:vertical;
  min-height:150px;
}

.form-field input:focus,
.form-field textarea:focus{
  outline:none;
  border-color:#2890df;
  box-shadow:0 0 0 3px rgba(40,144,223,0.10);
}

.form-actions{
  padding-top:10px;
}

.contact-info-stack{
  display:grid;
  gap:22px;
}

.contact-info-item{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.contact-info-label{
  margin:0;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--muted);
}

.contact-info-value{
  margin:0;
  font-size:1.02rem;
  line-height:1.55;
  color:#111;
}

.contact-info-value a{
  text-decoration:none;
  border-bottom:1px solid rgba(0,0,0,0.18);
}

.contact-info-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.contact-bottom-cta{
  max-width:none;
  margin:0;
  background:linear-gradient(to bottom, #2a2a2a, #1a1a1a);
  color:#fff;
  border-top:1px solid rgba(255,255,255,0.05);
}

.contact-bottom-cta .section{
  text-align:center;
  padding:80px 28px;
}

.contact-bottom-cta h2{
  margin-bottom:12px;
  color:#fff;
}

.contact-bottom-cta p{
  max-width:640px;
  margin:0 auto 28px;
  color:var(--muted);
}

.contact-bottom-cta .section-label{
  color:rgba(255,255,255,0.62);
}

/* inner pages */
.social-links-dark a{
  background:rgba(0,0,0,0.04);
  color:#111;
}

.social-links-dark a:hover{
  background:#111;
  color:#fff;
  transform:translateY(-2px);
}

.nav.scrolled .nav-center a{
  color:#111;
  text-shadow:none;
}

.nav.scrolled .social-links a{
  background:rgba(0,0,0,0.05);
  color:#111;
}

.nav.scrolled .social-links a:hover{
  background:#111;
  color:#fff;
}

/* =========================
   HERO
========================= */
.hero{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  isolation:isolate;
  background:#111;
}

.hero-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 44%;
  transform:scale(1.01);
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:rgba(0,0,0,0.35);
}

.hero-content{
  position:relative;
  z-index:2;
  width:min(100%, 900px);
  padding:170px 24px 76px;
  text-align:center;
  color:#fff;
}

.hero-eyebrow{
  margin:0 0 14px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.92);
  text-shadow:0 2px 14px rgba(0,0,0,0.28);
}

.hero h1{
  margin:0 0 18px;
  font-size:clamp(3.3rem, 7vw, 6.15rem);
  color:#fff;
  text-shadow:0 6px 20px rgba(0,0,0,0.25);
}

.hero-subtext{
  max-width:650px;
  margin:0 auto 34px;
  font-size:clamp(1rem, 1.8vw, 1.16rem);
  line-height:1.45;
  color:rgba(255,255,255,0.92);
  text-shadow:0 2px 10px rgba(0,0,0,0.25);
}

.hero-buttons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

/* =========================
   BUTTONS
========================= */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:0 30px;
  border-radius:var(--radius-sm);
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .3s ease,
    color .3s ease,
    border-color .3s ease;
}

.btn span{
  position:relative;
  z-index:2;
}

.btn-solid{
  background:#fff;
  color:#111;
  border:1px solid #fff;
  box-shadow:0 14px 30px rgba(0,0,0,.18);
}

.btn-solid:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 40px rgba(0,0,0,.24);
}

.btn-outline{
  overflow:hidden;
  background:rgba(255,255,255,0.06);
  color:#fff;
  border:1.5px solid rgba(255,255,255,0.9);
  backdrop-filter:blur(6px);
}

.btn-outline::before{
  content:"";
  position:absolute;
  inset:0;
  background:#fff;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .36s ease;
  z-index:1;
}

.btn-outline:hover::before{
  transform:scaleX(1);
}

.btn-outline:hover{
  color:#111;
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(0,0,0,.22);
}

.btn-dark{
  position:relative;
  overflow:hidden;
  background:rgba(17,17,17,0.03);
  color:#111;
  border:1.5px solid rgba(17,17,17,0.14);
  backdrop-filter:none;
}

.btn-dark::before{
  content:"";
  position:absolute;
  inset:0;
  background:#111;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .36s ease;
  z-index:1;
}

.btn-dark:hover::before{
  transform:scaleX(1);
}

.btn-dark:hover{
  color:#fff;
  box-shadow:0 18px 34px rgba(0,0,0,.10);
}

.btn-dark span{
  position:relative;
  z-index:2;
}

/* =========================
   CARDS
========================= */
.cards-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:22px;
}

.info-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:var(--shadow);
  transition:transform .22s ease, box-shadow .22s ease;
}

.info-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-hover);
}

.info-card h3{
  margin:0 0 10px;
  font-size:1.12rem;
  line-height:1.2;
  letter-spacing:-0.02em;
}

.info-card p{
  margin:0;
  color:var(--muted);
  font-size:0.98rem;
}

/* =========================
   LISTS / PILLS
========================= */
.service-list ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:14px;
}

.service-list li{
  position:relative;
  padding-left:20px;
  font-weight:500;
  color:#222;
}

.service-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#111;
}

.center-cta{
  margin-top:34px;
}

.areas-served{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:12px;
  margin-bottom:26px;
}

.areas-served span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 17px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  font-weight:600;
  font-size:0.95rem;
  box-shadow:0 4px 14px rgba(0,0,0,0.04);
}

/* =========================
   CTA
========================= */
.cta-section{
  text-align:center;
  padding-top:72px;
  padding-bottom:72px;
}

.cta-section h2{
  margin-bottom:12px;
}

.cta-section p{
  max-width:620px;
  margin:0 auto 26px;
  color:var(--muted);
}

/* =========================
   REVIEWS PAGE
========================= */

.reviews-page{
  background:var(--bg-soft);
}

.reviews-hero{
  padding-top:72px;
  padding-bottom:28px;
}

.reviews-hero-copy{
  max-width:900px;
}

/* Image Band */

.reviews-image-band{
  position:relative;
  width:100%;
  height:360px;
  overflow:hidden;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.reviews-image-band img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 34%;
  transition:transform 6s ease;
}

.reviews-image-band:hover img{
  transform:scale(1.05);
}

.reviews-image-band-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0.58));
  pointer-events:none;
}

.reviews-image-band-text{
  position:absolute;
  left:max(28px, calc((100vw - var(--container)) / 2 + 28px));
  right:max(28px, calc((100vw - var(--container)) / 2 + 28px));
  bottom:28px;
  z-index:2;
  color:#fff;
}

.reviews-image-band-text .section-label{
  color:rgba(255,255,255,0.82);
  margin:0 0 6px;
}

.reviews-image-band-text h2{
  margin:0;
  color:#fff;
  font-size:clamp(1.7rem, 2.6vw, 2.4rem);
  max-width:760px;
}

/* Combined Widget Section */

.reviews-widget-section{
  padding-top:24px;
  padding-bottom:36px;
}

.reviews-widget-shell{
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  padding:30px 26px 26px;
  box-shadow:0 20px 50px rgba(0,0,0,0.06);
  overflow:hidden;
}

.reviews-widget-cta{
  text-align:center;
  max-width:640px;
  margin:0 auto;
}

.reviews-widget-cta h2{
  margin-bottom:10px;
  font-size:clamp(2.1rem, 4vw, 3.3rem);
  line-height:0.96;
}

.reviews-widget-cta p{
  max-width:540px;
  margin:0 auto 18px;
  color:var(--muted);
}

.reviews-widget-cta .hero-buttons{
  justify-content:center;
  margin-top:8px;
}

.reviews-divider{
  width:100%;
  height:1px;
  background:var(--line);
  margin:28px 0 24px;
}

/* Elfsight cleanup / polish */

.reviews-widget-shell .es-load-more-button-container{
  margin-top:20px !important;
  display:flex;
  justify-content:center;
}

.reviews-widget-shell .es-load-more-button{
  background:rgba(17,17,17,0.03) !important;
  border:1.5px solid rgba(17,17,17,0.14) !important;
  border-radius:999px !important;
  padding:14px 28px !important;
  font-size:12px !important;
  letter-spacing:0.08em !important;
  text-transform:uppercase !important;
  transition:all .3s ease !important;
}

.reviews-widget-shell .es-load-more-button:hover{
  background:#111 !important;
  color:#fff !important;
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(0,0,0,.10);
}

.reviews-widget-shell .es-button-base-overlay{
  padding:0 !important;
}

/* Bottom CTA */

.reviews-bottom-cta{
  text-align:center;
  padding-top:24px;
  padding-bottom:84px;
}

.reviews-bottom-cta h2{
  margin-bottom:12px;
}

.reviews-bottom-cta p{
  max-width:620px;
  margin:0 auto 28px;
  color:var(--muted);
}

/* =========================
   CTA BAND
========================= */
.cta-band{
  background:#111;
  color:#fff;
  border-top:1px solid rgba(255,255,255,0.06);
  border-bottom:1px solid rgba(255,255,255,0.06);
  max-width:none;
  padding-left:max(28px, calc((100vw - var(--container)) / 2 + 28px));
  padding-right:max(28px, calc((100vw - var(--container)) / 2 + 28px));
  text-align:center;
  position:relative;
}

.cta-band .section-label{
  color:rgba(255,255,255,0.68);
}

.cta-band h2{
  color:#fff;
  max-width:900px;
  margin:0 auto 14px;
}

.cta-band p{
  max-width:620px;
  margin:0 auto 28px;
  color:rgba(255,255,255,0.78);
}

.cta-band .hero-buttons{
  justify-content:center;
}

.cta-band .btn-solid{
  background:#fff;
  color:#111;
  border:1px solid #fff;
}

.cta-band .btn-outline{
  background:rgba(255,255,255,0.04);
  color:#fff;
  border:1.5px solid rgba(255,255,255,0.35);
}

.cta-band .btn-outline::before{
  background:#fff;
}

.cta-band .btn-outline:hover{
  color:#111;
}

.cta-band .btn-solid:hover{
  box-shadow:0 0 0 4px rgba(255,255,255,0.08);
}

.cta-band::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:120px;
  height:1px;
  background:rgba(255,255,255,0.2);
}

/* =========================
   LOCATION
========================= */
.location-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:30px;
  align-items:stretch;
}

.location-info{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--shadow);
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.location-top{
  display:flex;
  flex-direction:column;
  gap:26px; 
}

.location-item{
  display:flex;
  flex-direction:column;
  gap:6px;
}

/* label */
.location-label{
  margin:0;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--muted);
}

.location-value{
  margin:0;
  font-size:1.05rem;
  color:#111;
  line-height:1.5;
}

.location-value a{
  text-decoration:none;
  border-bottom:1px solid rgba(0,0,0,0.2);
}

.location-bottom{
  margin-top:24px;
}

.location-info p{
  margin:0 0 14px;
}

.location-info p:last-child{
  margin-bottom:0;
}

.location-info strong{
  color:#111;
}

.text-link{
  font-weight:600;
  text-decoration:none;
  border-bottom:1px solid currentColor;
}

/* =========================
   MAP
========================= */
.map-wrap{
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:#ddd;
  height:100%;
}

.map-wrap iframe{
  display:block;
  width:100%;
  height:100%;
  min-height:360px;
}

/* =========================
   INNER PAGES
========================= */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}

.site-header-inner{
  max-width:var(--container);
  margin:0 auto;
  padding:18px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:30px;
}

.site-nav a{
  text-decoration:none;
  color:#111;
  font-size:14px;
  font-weight:600;
  letter-spacing:0.015em;
  transition:opacity .22s ease, transform .22s ease;
}

.site-nav a:hover{
  opacity:0.65;
  transform:translateY(-1px);
}

.site-nav a.active{
  opacity:1;
}

.logo-dark{
  height:48px;
}

/* =========================
   GALLERY PAGE
========================= */
.gallery-page{
  background:var(--bg-soft);
}

.gallery-hero{
  padding:72px 20px 28px;
}

.gallery-hero-inner{
  max-width:var(--container);
  margin:0 auto;
}

.gallery-hero h1{
  font-size:clamp(2.8rem, 6vw, 5.4rem);
  color:#111;
  margin:0 0 14px;
}

.gallery-intro{
  max-width:720px;
  font-size:1.05rem;
  color:var(--muted);
  margin:0;
}

.gallery-widget-section{
  padding-top:36px;
  padding-bottom:20px;
}

.gallery-widget-shell{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:22px;
  box-shadow:0 20px 50px rgba(0,0,0,0.06);
  overflow:hidden;
}

.gallery-widget-shell .eapps-instagram-feed,
.gallery-widget-shell [class*="eapps-instagram-feed"],
.gallery-widget-shell iframe{
  border-radius:20px !important;
  overflow:hidden !important;
}

.gallery-cta-section{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding-top:40px;
  padding-bottom:80px;
}

.gallery-cta-section .section-label,
.gallery-cta-section h2,
.gallery-cta-section p{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.gallery-cta-section h2{
  max-width:920px;
}

.gallery-cta-section p{
  max-width:620px;
  margin-top:10px;
  margin-bottom:28px;
}

/* =========================
   FOOTER
========================= */
.footer{
  border-top:1px solid var(--line);
  background:#fff;
}

.footer-inner{
  max-width:var(--container);
  margin:0 auto;
  padding:28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.footer p{
  margin:0;
  color:var(--muted);
  font-size:0.95rem;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}

.footer-links a{
  text-decoration:none;
  color:var(--muted);
  font-size:0.95rem;
}

.footer-links a:hover{
  color:#111;
}

/* =========================
   TEAM PAGE
========================= */

.team-hero{
  padding-top:44px;
  padding-bottom:8px;
}

.team-section{
  display:grid;
  gap:24px;
  margin-top:24px;
}

.team-banner{
  width:100%;
  height:540px;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  background:#ddd;
}

.team-banner img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 29%;
}

.team-name-inline{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.team-badge-mobile{
  display:none;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:10px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  line-height:1;
}

.team-card{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:30px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.team-card:hover{
  transform:translateY(-6px);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.10),
    0 0 0 1px rgba(0,0,0,0.04);
  border-color:rgba(0,0,0,0.12);
  background:#fff;
}

.team-card-featured{
  border-color:rgba(17,17,17,0.12);
  box-shadow:0 18px 50px rgba(0,0,0,0.10);
}

.team-card-featured:hover{
  box-shadow:
    0 24px 70px rgba(0,0,0,0.12),
    0 0 0 1px rgba(0,0,0,0.05);
}

.team-card-media{
  align-self:start;
  height:360px;
  overflow:hidden;
  border-radius:22px;
}

.team-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.4s ease;
}

.team-card:hover .team-card-media img{
  transform:scale(1.04);
}

.team-card-content{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:18px;
}

.team-card-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
}

.team-name{
  font-size:clamp(2rem, 4vw, 3rem);
  margin:0 0 6px;
}

.team-tagline{
  margin:0;
  font-size:1.02rem;
  color:var(--muted);
}

.team-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  white-space:nowrap;
  flex-shrink:0;
}

.team-bio{
  margin:0;
  max-width:820px;
}

.team-services{
  border-top:1px solid var(--line);
  padding-top:18px;
}

.team-services summary{
  cursor:pointer;
  list-style:none;
  font-weight:700;
  font-size:0.98rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.team-services summary::-webkit-details-marker{
  display:none;
}

.team-services summary::after{
  content:"+";
  font-size:20px;
  line-height:1;
  transition:transform 0.2s ease;
}

.team-services[open] summary::after{
  content:"−";
}

.team-services-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-top:18px;
}

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

.team-service-item{
  background:#f8f8f8;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.team-service-item:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(0,0,0,0.06);
  border-color:rgba(0,0,0,0.10);
}

.team-service-item h3{
  margin:0 0 8px;
  font-size:1rem;
  line-height:1.2;
}

.team-service-item p{
  margin:0 0 6px;
  font-weight:700;
  color:#111;
}

.team-service-item span{
  color:var(--muted);
  font-size:0.92rem;
  line-height:1.4;
}

.team-services-note{
  margin-top:16px;
  color:var(--muted);
}

.team-card-actions{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:0;
}

.team-card:hover .btn-solid{
  transform:translateY(-1px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px){
  .cards-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px){
  .nav{
    padding:22px 20px;
  }

  .nav-center{
    gap:18px;
  }

  .nav-center a{
    font-size:13px;
  }

  .two-col{
    grid-template-columns:1fr;
  }

  .hero-image{
    object-position:center 34%;
  }

  .site-header-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .site-nav{
    flex-wrap:wrap;
    gap:14px 18px;
  }

  .split-section .split-layout{
    grid-template-columns:1fr;
    gap:28px;
    padding:24px;
  }

  .team-card{
    grid-template-columns:1fr;
    gap:22px;
  }

  .team-card-media{
    height:320px;
  }

  .team-card-top{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }

  .team-services-grid,
  .team-services-grid-two{
    grid-template-columns:1fr;
  }

  .contact-shell{
    grid-template-columns:1fr;
    gap:24px;
  }

  .contact-form-card,
  .contact-info-card{
    padding:26px;
  }

  .contact-image-band{
    height:320px;
  }

  .contact-image-band-text h2{
    font-size:1.4rem;
  }

  .contact-form-grid{
    grid-template-columns:1fr;
  }

  .reviews-image-band{
    height:280px;
  }

  .reviews-image-band-text h2{
    font-size:1.45rem;
  }
  
}

@media (max-width: 768px){
  .nav{
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    position:fixed;
    top:0;
    left:0;
    right:0;
    padding:16px 20px;
  }

  .nav-cta{
    display:none;
  }

  .nav-cta-dark{
    display:none;
  }
  
  .btn-outline{
    backdrop-filter:none;
    background:rgba(0,0,0,0.22);
    border-color:rgba(255,255,255,0.85);
  }

  .hero-subtext{
    text-shadow:0 2px 10px rgba(0,0,0,0.45);
  }

  .hero-eyebrow{
    text-shadow:0 2px 10px rgba(0,0,0,0.45);
  }

  .nav-center{
    flex-wrap:wrap;
    gap:10px 14px;
  }
  
  .nav-center a{
    font-size:12px;
  }

  .logo{
    height:44px;
  }

  .hero{
    min-height:auto;
    height:auto;
  }

  .hero-content{
    padding:190px 20px 140px;
  }

  .hero h1{
    font-size:clamp(2.9rem, 12vw, 4.5rem);
  }

  .hero-image{
    transform:none;
    object-position:center 24%;
  }

  .alt-section{
    padding-left:20px;
    padding-right:20px;
  }

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

  .cards-grid + .center-cta{
    margin-top:28px;
  }

  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .gallery-hero{
    padding:48px 20px 20px;
  }

  .gallery-widget-shell{
    padding:14px;
    border-radius:22px;
  }

  .reviews-hero{
    padding-top:48px;
    padding-bottom:20px;
  }

  .reviews-image-band{
    height:220px;
  }

  .reviews-image-band img{
    object-position:center 34%;
  }

  .reviews-image-band-text{
    bottom:22px;
  }

  .reviews-image-band-text h2{
    font-size:1.2rem;
    max-width:420px;
  }

  .reviews-widget-section{
    padding-top:18px;
    padding-bottom:30px;
  }

  .reviews-widget-shell{
    padding:24px 16px 18px;
    border-radius:24px;
  }

  .reviews-widget-cta h2{
    font-size:clamp(1.9rem, 8vw, 2.8rem);
  }

  .reviews-divider{
    margin:22px 0 20px;
  }
  
  .logo-dark{
    height:42px;
  }

  .image-break{
    height:220px;
  }

  .image-break img{
    height:100%;
    object-fit:cover;
  }

  .image-break-scissors img{
    object-position:center 49%;
  }

  .image-break-cta img{
    object-position:center 42%;
  }

  .mobile-book{
    display:flex;
  }

  body{
    padding-bottom:64px;
  }

  .contact-hero{
    padding-top:42px;
    padding-bottom:24px;
  }

  .contact-image-band{
    height:280px;
  }

  .contact-image-band img{
    object-position:center 55%;
  }

  .contact-image-band-text{
    bottom:22px;
  }

  .contact-image-band-text h2{
    font-size:1.3rem;
  }

  .contact-form-card,
  .contact-info-card{
    padding:24px;
    border-radius:22px;
  }

  .contact-card-header h2{
    font-size:1.5rem;
  }

  .contact-info-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .contact-info-actions .btn,
  .form-actions .btn{
    width:100%;
    max-width:none;
  }

  .contact-bottom-cta{
    padding-bottom:96px;
  }

  .site-nav{
    flex-wrap:wrap;
    gap:10px 14px;
  }
  
  .site-nav a{
    font-size:12px;
  }
  
}

@media (max-width: 560px){
  .hero-subtext{
    font-size:1rem;
  }

  .btn{
    width:100%;
    max-width:280px;
  }

  .areas-served{
    gap:10px;
  }

  .areas-served span{
    width:100%;
    justify-content:flex-start;
    border-radius:14px;
  }

  .hero-image{
    object-position:center 24%;
  }

  .team-banner{
    height:260px;
  }

  .team-banner img{
    object-position:center 35%;
  }

  .team-card{
    padding:18px;
    border-radius:22px;
  }

  .team-card-media{
    height:280px;
    border-radius:18px;
  }

  .team-card-media img{
    border-radius:18px;
  }

  .team-name{
    font-size:clamp(2.3rem, 10vw, 3.2rem);
  }

  .team-tagline{
    font-size:0.98rem;
  }

  .team-badge{
    align-self:flex-start;
    margin-top:2px;
  }

  .team-card-actions .btn{
    width:100%;
    max-width:none;
  }

  .team-card-featured .team-badge{
    display:none;
  }
  
  .team-card-featured .team-badge-mobile{
    display:inline-flex;
  }
  
  .team-name-inline{
    gap:10px;
  }
  
  .team-badge-mobile{
    padding:5px 9px;
    font-size:9px;
  }
  
  .contact-hero{
    padding-top:40px;
    padding-bottom:24px;
  }

  .page-intro{
    font-size:1rem;
  }

  .contact-form-card,
  .contact-info-card{
    padding:20px;
    border-radius:20px;
  }

  .contact-image-band{
    height:200px;
  }

  .contact-image-band-text{
    left:20px;
    right:20px;
    bottom:18px;
  }

  .contact-image-band-text h2{
    font-size:1.2rem;
    line-height:1.2;
  }

  .form-field input,
  .form-field textarea{
    padding:13px 14px;
    font-size:0.95rem;
  }

  .contact-info-value{
    font-size:0.98rem;
  }

  .reviews-image-band{
    height:190px;
  }

  .reviews-image-band img{
    object-position:center 34%;
  }

  .reviews-image-band-text{
    left:20px;
    right:20px;
    bottom:18px;
  }

  .reviews-image-band-text h2{
    font-size:1.05rem;
    line-height:1.2;
  }

  .reviews-widget-shell{
    padding:20px 12px 14px;
    border-radius:20px;
  }

  .reviews-widget-cta p{
    font-size:0.98rem;
  }

  .reviews-bottom-cta{
    padding-bottom:96px;
  }

  .nav-center{
  gap:8px 12px;
  }

  .nav-center a{
    font-size:11px;
  }

  .site-nav{
    gap:8px 12px;
  }
  
  .site-nav a{
    font-size:11px;
  }
  
}

/* =========================
   EVENTS PAGE
========================= */

.events-page{
  background:var(--bg-soft);
}

.events-hero{
  padding-top:72px;
  padding-bottom:28px;
}

.events-hero-copy{
  max-width:900px;
}

.events-image-band{
  position:relative;
  width:100%;
  height:320px;
  overflow:hidden;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.events-image-band img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 38%;
}

.events-image-band-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,0.12), rgba(0,0,0,0.54));
  pointer-events:none;
}

.events-image-band-text{
  position:absolute;
  left:max(28px, calc((100vw - var(--container)) / 2 + 28px));
  right:max(28px, calc((100vw - var(--container)) / 2 + 28px));
  bottom:28px;
  z-index:2;
  color:#fff;
}

.events-image-band-text .section-label{
  color:rgba(255,255,255,0.82);
  margin:0 0 6px;
}

.events-image-band-text h2{
  margin:0;
  color:#fff;
  font-size:clamp(1.7rem, 2.6vw, 2.4rem);
  max-width:760px;
}

.events-widget-section{
  padding-top:28px;
  padding-bottom:36px;
}

.events-widget-shell{
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  padding:30px 26px 26px;
  box-shadow:0 20px 50px rgba(0,0,0,0.06);
  overflow:hidden;
}

.events-widget-intro{
  text-align:center;
  max-width:700px;
  margin:0 auto;
}

.events-widget-intro h2{
  margin-bottom:10px;
  font-size:clamp(2.1rem, 4vw, 3.2rem);
  line-height:0.96;
}

.events-widget-intro p{
  max-width:560px;
  margin:0 auto;
  color:var(--muted);
}

.events-divider{
  width:100%;
  height:1px;
  background:var(--line);
  margin:28px 0 24px;
}

/* Elfsight Event Widget polish */
.events-widget-shell [class*="event-calendar"],
.events-widget-shell [class*="EventCalendar"],
.events-widget-shell [class*="eapps-widget"],
.events-widget-shell iframe{
  border-radius:20px !important;
}

.events-widget-shell button{
  border-radius:999px !important;
}

.events-bottom-cta{
  text-align:center;
  padding-top:24px;
  padding-bottom:84px;
}

.events-bottom-cta h2{
  margin-bottom:12px;
}

.events-bottom-cta p{
  max-width:620px;
  margin:0 auto 28px;
  color:var(--muted);
}

@media (max-width: 920px){
  .events-image-band{
    height:250px;
  }

  .events-image-band-text h2{
    font-size:1.45rem;
  }
}

@media (max-width: 768px){
  .events-hero{
    padding-top:48px;
    padding-bottom:20px;
  }

  .events-image-band{
    height:210px;
  }

  .events-image-band img{
    object-position:center 32%;
  }

  .events-image-band-text{
    bottom:22px;
  }

  .events-image-band-text h2{
    font-size:1.2rem;
    max-width:420px;
  }

  .events-widget-section{
    padding-top:18px;
    padding-bottom:30px;
  }

  .events-widget-shell{
    padding:24px 16px 18px;
    border-radius:24px;
  }

  .events-widget-intro h2{
    font-size:clamp(1.9rem, 8vw, 2.8rem);
  }

  .events-divider{
    margin:22px 0 20px;
  }
}

@media (max-width: 560px){
  .events-image-band{
    height:185px;
  }

  .events-image-band-text{
    left:20px;
    right:20px;
    bottom:18px;
  }

  .events-image-band-text h2{
    font-size:1.05rem;
    line-height:1.2;
  }

  .events-widget-shell{
    padding:20px 12px 14px;
    border-radius:20px;
  }

  .events-widget-intro p{
    font-size:0.98rem;
  }

  .events-bottom-cta{
    padding-bottom:96px;
  }
}
