:root {
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bg: #ffffff;
  --text: #295e56;
  --muted: rgba(41,94,86,0.65);
  --accent: #295e56;
  --border: rgba(41,94,86,0.16);
  --border-2: rgba(41,94,86,0.28);
  --font: 'Geist', system-ui, sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--font); font-size: 18px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: var(--accent); text-decoration: none; }
a:hover { opacity: 0.75; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: #fff; }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }

@keyframes kenburns { 0% { transform: scale(1) translate(0,0); } 100% { transform: scale(1.14) translate(-1.5%, -1.5%); } }
@keyframes grainshift { 0%{transform:translate(0,0)} 10%{transform:translate(-4%,-3%)} 30%{transform:translate(3%,-5%)} 50%{transform:translate(-3%,4%)} 70%{transform:translate(4%,3%)} 90%{transform:translate(-2%,-4%)} 100%{transform:translate(0,0)} }
@keyframes floatSlow { 0%,100% { transform:translate(0,0); } 50% { transform:translate(14px,-18px); } }
@keyframes pulseRing { 0% { transform:scale(0.85); opacity:0.6; } 100% { transform:scale(1.7); opacity:0; } }
@keyframes loaderBar { from { transform:scaleX(0); } to { transform:scaleX(1); } }
@keyframes loaderFade { 0%, 55% { opacity:1; visibility:visible; } 100% { opacity:0; visibility:hidden; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}

/* header / nav */
.site-header { position: sticky; top: 0; z-index: 120; background: var(--bg); border-bottom: 1px solid var(--border); }
.site-header .bar { max-width: 1280px; margin: 0 auto; padding: 0 clamp(18px,4vw,44px); height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo-link { display: flex; align-items: center; flex: none; transition: transform 0.3s var(--ease); }
.logo-link:hover { transform: scale(1.06) rotate(-2deg); }
.desktop-nav { display: flex; align-items: center; gap: 6px; font-size: 15px; }
.nav-link { padding: 9px 14px; border-radius: 10px; color: var(--muted); transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.25s var(--ease); }
.nav-link:hover { background: rgba(30,74,61,0.08); color: var(--accent); transform: translateY(-1px); }
body[data-page="home"] .nav-link[href="index.html"],
body[data-page="about"] .nav-link[href="about.html"],
body[data-page="services"] .nav-link[href="services.html"],
body[data-page="contact"] .nav-link[href="contact.html"] { background: rgba(30,74,61,0.08); color: var(--accent); font-weight: 600; }
body[data-page="home"] .mobile-drawer-inner a[href="index.html"],
body[data-page="about"] .mobile-drawer-inner a[href="about.html"],
body[data-page="services"] .mobile-drawer-inner a[href="services.html"],
body[data-page="contact"] .mobile-drawer-inner a[href="contact.html"] { color: var(--accent); font-weight: 600; }
.utility { display: flex; align-items: center; gap: 8px; }
.icon-btn { width: 42px; height: 42px; border: none; background: transparent; color: var(--text); border-radius: 11px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.3s var(--ease), transform 0.25s var(--ease); }
.icon-btn:hover { background: rgba(30,74,61,0.10); transform: scale(1.1); }
#hamburgerBtn { display: none; font-size: 19px; }
#hamburgerBtn:hover { transform: scale(1.1) rotate(90deg); }
.contact-wrap { position: relative; }
.contact-pill { display: flex; align-items: center; gap: 8px; background-color: var(--bg); background-image: linear-gradient(120deg, transparent 40%, rgba(41,94,86,0.1) 50%, transparent 60%); background-repeat: no-repeat; background-size: 220% 100%; background-position: 150% 0; border: 1.5px solid var(--border-2); color: var(--accent); cursor: pointer; padding: 10px 18px; border-radius: 999px; font-family: var(--font); font-size: 15px; font-weight: 600; transition: box-shadow 0.3s var(--ease), background-position 0.6s ease; text-decoration: none; }
.contact-pill:hover { box-shadow: 0 6px 16px rgba(0,0,0,0.08); background-position: -20% 0; opacity: 1; }
.contact-menu { position: absolute; top: 52px; right: 0; min-width: 210px; background: #fff; border: 1px solid var(--border-2); border-radius: 14px; padding: 7px; box-shadow: 0 24px 60px rgba(0,0,0,0.2); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.3s var(--ease); }
.contact-wrap.open .contact-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.contact-menu a { display: flex; align-items: center; padding: 11px 12px; border-radius: 9px; color: var(--text); font-size: 15px; transition: background 0.25s var(--ease); }
.contact-menu a:hover { background: rgba(41,94,86,0.06); opacity: 1; }

.btn-primary { display: inline-flex; align-items: center; gap: 6px; background-color: #295e56; background-image: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%); background-repeat: no-repeat; background-size: 220% 100%; background-position: 150% 0; color: #ffffff; border: none; padding: 11px 22px; border-radius: 999px; font-family: var(--font); font-weight: 600; font-size: 14px; letter-spacing: 0.5px; cursor: pointer; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background-position 0.6s ease; text-decoration: none; }
.btn-primary:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 10px 22px rgba(41,94,86,0.3); background-position: -20% 0; opacity: 1; }
.btn-primary:active { transform: scale(0.96); }

.mobile-drawer { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease); border-top: 1px solid var(--border); background: rgba(255,255,255,0.97); }
.mobile-drawer.open { max-height: 420px; }
.mobile-drawer-inner { padding: 12px clamp(18px,4vw,44px) 20px; display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer-inner a { padding: 13px 8px; color: var(--text); font-size: 17px; border-bottom: 1px solid var(--border); }
.mobile-drawer-inner a:last-of-type { border-bottom: none; }
.mobile-drawer-inner .btn-primary { margin-top: 8px; justify-content: center; }

@media (max-width: 900px) { .desktop-nav, #ctaDesktop { display: none !important; } #hamburgerBtn { display: flex !important; } }
@media (max-width: 640px) { body { font-size: 17px; } #contactNum { display: none !important; } }

/* loading overlay */
.loader { position: fixed; inset: 0; z-index: 200; background: #295e56; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; pointer-events: none; overflow: hidden; animation: loaderFade 1.6s ease forwards; }
.loader .blob { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.05); }
.loader-logo { position: relative; width: 96px; height: 96px; display: flex; align-items: center; justify-content: center; }
.loader-logo .ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.35); animation: pulseRing 1.8s ease-out infinite; }
.loader-logo .ring.delay { animation-delay: 0.6s; }
.loader-logo .mark { position: relative; width: 72px; height: 72px; border-radius: 50%; background: #ffffff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.loader-bar { width: 140px; height: 4px; border-radius: 999px; background: rgba(255,255,255,0.25); overflow: hidden; }
.loader-bar > div { width: 100%; height: 100%; background: #ffffff; border-radius: 999px; transform-origin: left; animation: loaderBar 1.3s ease forwards; }

/* film grain */
.grain { position: fixed; inset: -50%; width: 200%; height: 200%; z-index: 90; pointer-events: none; opacity: 0.045; background-image: url('data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%22140%22 height=%22140%22><filter id=%22n%22><feTurbulence type=%22fractalNoise%22 baseFrequency=%220.85%22 numOctaves=%222%22 stitchTiles=%22stitch%22/></filter><rect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23n)%22/></svg>'); animation: grainshift 8s steps(6) infinite; }

/* hero */
.hero { position: relative; width: 100vw; margin-left: calc(50% - 50vw); background: #ffffff; overflow: hidden; }
.hero .frame-v { position: absolute; top: 0; bottom: 0; left: 0; width: 14px; background: #295e56; }
.hero .frame-h { position: absolute; left: 0; right: 0; height: 14px; background: #295e56; }
.hero .frame-h.top { top: 0; } .hero .frame-h.bottom { bottom: 0; }
.hero-grid { max-width: 1600px; margin: 0 auto; position: relative; display: grid; grid-template-columns: 1fr 1.25fr; align-items: center; gap: clamp(20px,4vw,50px); min-height: min(78vh,620px); padding: 14px 0; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr !important; } }
.hero-copy { position: relative; z-index: 1; padding: 40px clamp(24px,4vw,50px) 40px clamp(48px,6vw,90px); }
.hero-media { position: relative; height: 100%; display: flex; align-items: center; }
.hero-media .corner-tr { position: absolute; top: 0; right: 0; width: 100px; height: 56px; background: #295e56; }
.hero-media .corner-br { position: absolute; bottom: -30px; right: -14px; width: 58%; height: 120px; background: #295e56; z-index: 0; }
.hero-media .frame { position: relative; z-index: 1; width: 100%; height: min(64vh,540px); border-radius: 220px 30px 30px 30px; overflow: hidden; }
.hero-media .frame img { width: 100%; height: 110%; object-fit: cover; animation: kenburns 22s ease-in-out infinite alternate; }

.page-hero { position: relative; min-height: 56vh; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero.short { min-height: 46vh; }
.page-hero .bg { position: absolute; inset: 0; z-index: 0; }
.page-hero .bg img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 24s ease-in-out infinite alternate; }
.page-hero .overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,20,17,0.5), rgba(10,20,17,0.92)); }
.page-hero .content { position: relative; z-index: 2; max-width: 1280px; width: 100%; margin: 0 auto; padding: 0 clamp(18px,4vw,44px) clamp(40px,6vw,70px); }
.eyebrow { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }

/* buttons */
.btn-outline-white { display: inline-flex; align-items: center; gap: 14px; background-color: #ffffff; background-image: linear-gradient(120deg, transparent 40%, rgba(41,94,86,0.12) 50%, transparent 60%); background-repeat: no-repeat; background-size: 220% 100%; background-position: 150% 0; border: 1.5px solid var(--border-2); padding: 8px 8px 8px 24px; border-radius: 999px; font-family: var(--font); font-weight: 600; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--text); cursor: pointer; transition: box-shadow 0.3s var(--ease), background-position 0.6s ease; text-decoration: none; }
.btn-outline-white:hover { box-shadow: 0 10px 26px rgba(41,94,86,0.2); background-position: -20% 0; opacity: 1; }
.btn-outline-white:active { transform: scale(0.97); }
.btn-outline-white .arrow-circle { width: 36px; height: 36px; border-radius: 50%; background: #295e56; color: #fff; display: flex; align-items: center; justify-content: center; flex: none; }
.btn-ghost { display: inline-block; margin-top: 26px; background-color: transparent; background-image: linear-gradient(120deg, transparent 40%, rgba(41,94,86,0.14) 50%, transparent 60%); background-repeat: no-repeat; background-size: 220% 100%; background-position: 150% 0; color: var(--text); border: 1px solid var(--border-2); padding: 14px 26px; border-radius: 999px; font-family: var(--font); font-size: 16px; cursor: pointer; transition: background-color 0.3s var(--ease), transform 0.3s var(--ease), background-position 0.6s ease; text-decoration: none; }
.btn-ghost:hover { background-color: rgba(255,255,255,0.06); transform: translateY(-2px); background-position: -20% 0; opacity: 1; }
.btn-ghost:active { transform: scale(0.97); }
.btn-submit { background-image: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.4) 50%, transparent 60%), linear-gradient(135deg, var(--accent), var(--accent)); background-repeat: no-repeat, no-repeat; background-size: 220% 100%, 100% 100%; background-position: 150% 0, 0 0; color: #fff; border: none; padding: 17px; border-radius: 999px; font-family: var(--font); font-weight: 600; font-size: 17px; cursor: pointer; box-shadow: 0 14px 32px rgba(30,74,61,0.35); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background-position 0.6s ease; margin-top: 6px; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(30,74,61,0.5); background-position: -20% 0, 0 0; }
.btn-submit:active { transform: scale(0.98); }

/* editorial split */
.split { max-width: 1280px; margin: 0 auto; padding: clamp(48px,7vw,90px) clamp(18px,4vw,44px); display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px,5vw,64px); align-items: center; }
@media (max-width: 860px) { .split, .two-col, .svc-row, .why-grid { grid-template-columns: 1fr !important; } }
.split-media { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 30px 70px rgba(0,0,0,0.5); }
.split-media img { width: 100%; height: 110%; object-fit: cover; animation: kenburns 26s ease-in-out infinite alternate; }

/* about the super clean */
.about-scs-wrap { padding: clamp(48px,7vw,90px) clamp(18px,4vw,44px); }
.about-scs { max-width: 1280px; margin: 0 auto; position: relative; }
.about-scs-card { background: var(--bg-2); border-radius: 24px; padding: clamp(48px,6vw,64px) clamp(24px,4vw,60px) clamp(48px,6vw,64px) 380px; display: flex; align-items: center; min-height: 340px; }
.about-scs-text { max-width: 640px; }
.about-scs-heading { font-family: var(--serif); font-size: clamp(32px,4.4vw,52px); line-height: 1.05; margin-bottom: 22px; }
.about-scs-text p { color: var(--muted); font-size: 16px; line-height: 1.6; }
.about-scs-text .btn-outline-white { margin-top: 28px; }
.about-scs-photo { position: absolute; left: 40px; top: 50%; transform: translateY(-50%); width: 300px; aspect-ratio: 1; }
.about-scs-ring { position: absolute; inset: -16px; border-radius: 50%; border: 9px solid #295e56; }
.about-scs-photo-inner { position: relative; width: 100%; height: 100%; border-radius: 50%; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.3); }
.about-scs-photo-inner img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 1100px) {
  .about-scs-card { padding-left: 300px; }
  .about-scs-photo { width: 220px; }
}
@media (max-width: 860px) {
  .about-scs-card { padding: clamp(160px,40vw,220px) 24px 32px !important; min-height: 0; }
  .about-scs-photo { left: 50% !important; top: 0 !important; transform: translate(-50%,-30%) !important; width: clamp(160px,50vw,220px) !important; }
}

/* what we offer */
.wwo-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px,5vw,60px); align-items: center; }
.wwo-heading { font-family: var(--serif); font-size: clamp(34px,4.6vw,54px); line-height: 1.05; margin-bottom: 28px; }
.wwo-list { border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.wwo-row { display: flex; align-items: center; gap: 18px; padding: 20px 22px; cursor: pointer; background: #ffffff; border-bottom: 1px solid var(--border); transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.wwo-row:last-child { border-bottom: none; }
.wwo-row:hover { background: #295e56; transform: translateX(4px); box-shadow: 0 14px 30px rgba(41,94,86,0.22); position: relative; z-index: 1; }
.wwo-thumb { width: 64px; height: 64px; border-radius: 12px; overflow: hidden; flex: none; }
.wwo-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.wwo-row:hover .wwo-thumb img { transform: scale(1.08); }
.wwo-text { flex: 1; }
.wwo-text h3 { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 4px; transition: color 0.3s var(--ease); }
.wwo-row:hover .wwo-text h3 { color: #ffffff; }
.wwo-text p { font-size: 14px; line-height: 1.4; color: var(--muted); transition: color 0.3s var(--ease); }
.wwo-row:hover .wwo-text p { color: rgba(255,255,255,0.85); }
.wwo-arrow { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--border-2); color: var(--accent); display: flex; align-items: center; justify-content: center; flex: none; font-size: 15px; transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease); }
.wwo-row:hover .wwo-arrow { border-color: rgba(255,255,255,0.6); color: #ffffff; transform: translateX(3px); }
.wwo-image { border-radius: 22px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 30px 70px rgba(41,94,86,0.25); }
.wwo-image img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s var(--ease); }
@media (max-width: 860px) { .wwo-wrap { grid-template-columns: 1fr !important; } .wwo-image { order: -1; } }

/* services grid */
.svc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
@media (max-width: 860px) { .svc-grid { grid-template-columns: 1fr !important; } }
.svc-card { background-color: #ffffff; background-image: linear-gradient(120deg, transparent 40%, rgba(41,94,86,0.08) 50%, transparent 60%); background-repeat: no-repeat; background-size: 220% 100%; background-position: 150% 0; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), background-position 0.6s ease; cursor: pointer; display: flex; flex-direction: column; height: 100%; color: inherit; }
.svc-card:hover { transform: translateY(-6px) scale(1.015); box-shadow: 0 26px 60px rgba(0,0,0,0.16); border-color: rgba(41,94,86,0.55); background-position: -20% 0; opacity: 1; }
.svc-card .img { height: 210px; overflow: hidden; flex: none; }
.svc-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.svc-card:hover .img img { transform: scale(1.06); }
.svc-card .body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.svc-card h3 { font-family: var(--serif); font-weight: 400; font-size: 26px; margin-bottom: 10px; }
.svc-card p { color: var(--muted); font-size: 16px; flex: 1; }
.svc-card .arrow { display: inline-block; margin-top: 16px; color: var(--accent); white-space: nowrap; transition: transform 0.3s var(--ease); }
.svc-card:hover .arrow { transform: translateX(4px); }

/* why choose us */
.why-wrap { max-width: 1280px; margin: 0 auto; padding: 0 clamp(18px,4vw,44px) clamp(48px,7vw,84px); text-align: center; }
.why-grid { position: relative; margin-top: 48px; background: rgba(41,94,86,0.05); border-radius: 26px; padding: clamp(36px,5vw,60px) clamp(20px,4vw,50px); display: grid; grid-template-columns: 1fr minmax(220px,320px) 1fr; gap: clamp(20px,4vw,40px); align-items: center; }
.why-col { display: flex; flex-direction: column; gap: 32px; }
.why-row { display: flex; align-items: flex-start; gap: 16px; text-align: left; transition: transform 0.3s var(--ease); border-radius: 14px; }
.why-row:hover { transform: translateX(4px); }
.why-icon { flex: none; width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--border-2); background: #ffffff; display: flex; align-items: center; justify-content: center; color: #295e56; }
.why-row h3 { font-size: 19px; margin-bottom: 6px; }
.why-row p { color: var(--muted); font-size: 15px; }
.why-photo { position: relative; width: 100%; aspect-ratio: 1; margin: 0 auto; max-width: 320px; }
.why-photo .arc { position: absolute; inset: -14px; border-radius: 50%; border: 9px solid transparent; transform: rotate(-35deg); }
.why-photo .arc.a { border-top-color: #295e56; border-right-color: #295e56; }
.why-photo .arc.b { border-bottom-color: #295e56; border-left-color: #295e56; }
.why-photo .disc { position: relative; width: 100%; height: 100%; border-radius: 50%; overflow: hidden; z-index: 1; }
.why-photo .disc img { width: 100%; height: 100%; object-fit: cover; }

/* how it works */
.hiw { position: relative; width: 100vw; margin-left: calc(50% - 50vw); background: #295e56; overflow: hidden; }
.hiw .bg { position: absolute; inset: 0; opacity: 0.14; }
.hiw .bg img { width: 100%; height: 100%; object-fit: cover; }
.hiw-inner { position: relative; z-index: 1; max-width: 1600px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: stretch; }
.hiw-intro { flex: 1 1 300px; padding: clamp(36px,5vw,56px) clamp(24px,4vw,44px); display: flex; flex-direction: column; justify-content: center; border-bottom: 1px solid rgba(255,255,255,0.15); }
.hiw-intro h2 { font-family: var(--serif); font-size: clamp(30px,3.6vw,44px); line-height: 1.1; color: #ffffff; }
.hiw-intro p { margin-top: 16px; color: rgba(255,255,255,0.75); font-size: 16px; max-width: 340px; }
.hiw-steps { flex: 2 1 600px; display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); }
.hiw-step { position: relative; padding: clamp(36px,5vw,56px) 28px; display: flex; flex-direction: column; align-items: center; text-align: center; border-left: 1px solid rgba(255,255,255,0.15); transition: background 0.3s var(--ease); }
.hiw-step:hover { background: rgba(255,255,255,0.05); }
.hiw-step .num { position: absolute; top: 22px; font-family: var(--serif); font-size: 64px; color: rgba(255,255,255,0.16); line-height: 1; }
.hiw-step .lbl { position: relative; font-size: 15px; letter-spacing: 1px; color: rgba(255,255,255,0.85); margin-top: 30px; }
.hiw-step .ico { width: 56px; height: 56px; background: #ffffff; border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #295e56; margin: 18px 0 16px; transition: transform 0.3s var(--ease); }
.hiw-step:hover .ico { transform: scale(1.12) rotate(-4deg); }
.hiw-step .title { color: #ffffff; font-size: 17px; font-weight: 500; }

/* testimonials */
.testi-wrap { max-width: 1280px; margin: 0 auto; padding: clamp(52px,8vw,100px) clamp(18px,4vw,44px); text-align: center; }
.testi-row { position: relative; margin-top: 48px; display: flex; align-items: center; justify-content: center; }
.testi-side { flex: 1; background: rgba(41,94,86,0.05); border-radius: 20px; padding: 36px 30px; opacity: 0.65; display: flex; align-items: center; gap: 20px; min-height: 230px; overflow: hidden; text-align: left; }
.testi-side.prev { margin-right: -70px; }
.testi-side.next { margin-left: -70px; flex-direction: row-reverse; text-align: right; }
.testi-side .quote { font-family: var(--serif); font-size: 38px; color: var(--accent); line-height: 0.6; }
.testi-side p { margin-top: 10px; color: var(--muted); font-size: 15px; line-height: 1.5; }
.testi-side .stars { margin-top: 12px; color: var(--accent); font-size: 14px; }
.testi-side .name { margin-top: 8px; font-weight: 600; font-size: 15px; }
@media (max-width: 860px) { .testi-side { display: none !important; } }
.testi-main { position: relative; z-index: 2; background: #295e56; color: #ffffff; border-radius: 22px; padding: clamp(30px,4vw,44px); display: flex; align-items: center; gap: 28px; box-shadow: 0 30px 60px rgba(41,94,86,0.35); flex: 1.4; text-align: left; }
.testi-main .quote { font-family: var(--serif); font-size: 52px; line-height: 0.5; color: rgba(255,255,255,0.5); }
.testi-main blockquote { margin: 14px 0 0; font-size: clamp(17px,1.8vw,20px); line-height: 1.5; min-height: 5.5em; }
.testi-main .stars { margin-top: 16px; font-size: 15px; letter-spacing: 2px; }
.testi-main .name { margin-top: 14px; font-weight: 600; font-size: 17px; }
.testi-main .role { color: rgba(255,255,255,0.7); font-size: 14px; margin-top: 2px; }
.dots-row { margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.dots-row .line { width: 70px; height: 1px; background: var(--border-2); }
.dots { display: flex; gap: 10px; }
.dot { width: 22px; height: 22px; padding: 0; border-radius: 50%; border: 1.5px solid transparent; background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color 0.3s var(--ease), transform 0.25s var(--ease); }
.dot:hover { transform: scale(1.15); }
.dot span { width: 8px; height: 8px; border-radius: 50%; background: rgba(41,94,86,0.25); }
.dot.active { border-color: #295e56; }
.dot.active span { background: #295e56; }

/* cta band */
.cta-band { position: relative; width: 100vw; margin-left: calc(50% - 50vw); background: #295e56; padding: clamp(56px,8vw,90px) clamp(18px,4vw,44px); overflow: hidden; }
.cta-band .bg { position: absolute; inset: 0; opacity: 0.12; }
.cta-band .bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-card { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; background: rgba(255,255,255,0.94); border-radius: 999px; padding: clamp(40px,6vw,60px) clamp(24px,5vw,60px); text-align: center; }
.cta-card h2 { font-family: var(--serif); font-size: clamp(30px,4vw,46px); line-height: 1.1; color: var(--text); }
.cta-card p { margin-top: 16px; color: var(--muted); font-size: 17px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-actions { margin-top: 28px; display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.tel-cta { display: flex; align-items: center; gap: 12px; color: var(--text); }
.tel-cta span.lbl { display: block; font-size: 13px; color: var(--muted); }
.tel-cta span.num { display: block; font-size: 17px; font-weight: 600; }

/* trust strip */
.trust-strip { max-width: 1280px; margin: 0 auto; padding: 22px clamp(18px,4vw,44px) 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; font-size: 14px; color: var(--muted); }

/* two-col about / services rows */
.two-col { max-width: 1280px; margin: 0 auto; padding: clamp(48px,7vw,90px) clamp(18px,4vw,44px); display: grid; grid-template-columns: 1fr 0.8fr; gap: clamp(28px,5vw,60px); align-items: start; }
.two-col .copy { font-size: 19px; line-height: 1.75; color: var(--text); }
.two-col .copy p + p { margin-top: 20px; }

.svc-row { max-width: 1280px; margin: 0 auto; padding: clamp(48px,7vw,84px) clamp(18px,4vw,44px); display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px,5vw,60px); align-items: center; }
.svc-row.reverse { grid-template-columns: 1.1fr 0.9fr; }
.svc-row-media { border-radius: 22px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 30px 70px rgba(0,0,0,0.5); }
.svc-row-media img { width: 100%; height: 110%; object-fit: cover; animation: kenburns 26s ease-in-out infinite alternate; }
.svc-row h2 { font-family: var(--serif); font-size: clamp(28px,3.6vw,42px); }
.svc-row p.desc { margin-top: 16px; color: var(--muted); font-size: 17px; }
.svc-row ul { margin: 20px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 11px; }
.svc-row li { display: flex; gap: 11px; font-size: 16px; }
.svc-row li span.tick { color: var(--accent); }
.svc-alt-bg { background: #ffffff; }

/* contact page */
.contact-form-card { background: #ffffff; border: 1px solid var(--border); border-radius: 24px; padding: clamp(28px,4vw,40px); box-shadow: 0 24px 60px rgba(0,0,0,0.06); display: flex; flex-direction: column; }
.contact-form-card h3 { font-family: var(--serif); font-size: 28px; margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; flex: 1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 7px; font-size: 14px; font-weight: 500; color: var(--text); }
.contact-form input, .contact-form textarea { background: var(--bg); border: 1.5px solid var(--border-2); border-radius: 12px; padding: 14px 16px; color: var(--text); font-family: var(--font); font-size: 16px; transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(30,74,61,0.12); outline: none; }
.contact-form textarea { resize: vertical; }
.contact-spacer { flex: 1; }
.quote-msg { font-size: 13px; color: var(--muted); text-align: center; }
.contact-side { display: flex; flex-direction: column; gap: 20px; }
.contact-photo { position: relative; border-radius: 120px 24px 24px 24px; overflow: hidden; aspect-ratio: 5/4; box-shadow: 0 24px 54px rgba(41,94,86,0.22); }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; }
.contact-info { background: rgba(41,94,86,0.05); border-radius: 20px; padding: 26px; display: flex; flex-direction: column; gap: 20px; }
.contact-info-row { display: flex; align-items: center; gap: 16px; color: var(--text); }
.contact-icon { flex: none; width: 46px; height: 46px; border-radius: 50%; background: #ffffff; border: 1.5px solid var(--border-2); display: flex; align-items: center; justify-content: center; color: #295e56; transition: transform 0.3s var(--ease); }
.contact-info-row:hover .contact-icon { transform: scale(1.1); }
.contact-info-row .lbl { display: block; font-size: 13px; color: var(--muted); }
.contact-info-row .val { font-size: 16px; font-weight: 600; }
.social-row { display: flex; gap: 10px; margin-top: 4px; padding-left: 62px; }
.social-icon { width: 40px; height: 40px; border-radius: 11px; background: #ffffff; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text); transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease); }
.social-icon:hover { box-shadow: 0 0 0 3px rgba(41,94,86,0.18); transform: translateY(-2px); opacity: 1; }
.contact-map { position: relative; width: 100vw; margin-left: calc(50% - 50vw); height: min(60vh,560px); }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.15); }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* footer */
.site-footer { border-top: 1px solid var(--border); background: #ffffff; color: var(--text); }
.site-footer .inner { max-width: 1280px; margin: 0 auto; padding: clamp(44px,6vw,72px) clamp(18px,4vw,44px) 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr !important; row-gap: 32px !important; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr !important; } }
.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer-brand span { font-family: var(--serif); font-size: 22px; color: var(--text); }
.footer-desc { color: var(--muted); font-size: 15px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social .social-icon { background: rgba(41,94,86,0.06); }
.footer-heading { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; font-size: 15px; }
.footer-link { color: var(--text); align-self: flex-start; background-image: linear-gradient(var(--accent),var(--accent)); background-repeat: no-repeat; background-position: left bottom; background-size: 0% 2px; transition: background-size 0.4s var(--ease), transform 0.3s var(--ease); display: inline-block; }
.footer-link:hover { background-size: 100% 2px; transform: translateX(4px); opacity: 1; }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 13px; color: var(--muted); }

/* headings/eyebrow reused */
.section-head { text-align: center; }
.section-head h2 { font-family: var(--serif); font-size: clamp(32px,4.5vw,52px); }
.section-head p { margin-top: 14px; color: var(--muted); font-size: 17px; max-width: 560px; margin-left: auto; margin-right: auto; }
