:root {
  --primary: #16324a;
  --primary-dark: #0e2233;
  --accent: #b8492f;
  --accent-dark: #973b26;
  --bg: #faf6f0;
  --surface: #ffffff;
  --text: #201c18;
  --muted: #6f6660;
  --line: #ece4d8;
  --radius: 22px;
  --max-width: 1180px;
  --gold: #d99a3f;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 600; line-height: 1.14; letter-spacing: -.01em; }
h1 { font-size: clamp(2.3rem, 6.5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: .7rem; font-weight: 600; }
h3 { font-size: 1.2rem; margin-bottom: .4rem; font-weight: 600; }
p { color: var(--text); }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.muted { color: var(--muted); }
.small { font-size: .82rem; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
img { max-width: 100%; display: block; }
.icon { width: 20px; height: 20px; flex-shrink: 0; vertical-align: -4px; }

.variant-tag { display: block; text-align: center; background: var(--primary-dark); color: #cfe0f0; font-size: .8rem; padding: .5rem; letter-spacing: .02em; }

/* Header */
.site-header { position: sticky; top: 0; background: rgba(250,246,240,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); z-index: 50; }
.header-inner { display: flex; align-items: center; gap: 1rem; padding: .6rem 1.25rem; }
.brand { display: flex; align-items: center; gap: .6rem; }
.brand-logo { height: 54px; width: auto; display: block; }
.nav-desktop { display: none; margin-left: auto; }
.nav-desktop ul { display: flex; gap: 1.6rem; list-style: none; }
.nav-desktop a { font-weight: 600; font-size: .95rem; color: var(--primary-dark); padding: .3rem 0; border-bottom: 2px solid transparent; }
.nav-desktop a.active, .nav-desktop a:hover { border-color: var(--accent); }
a.header-cta { display: none; margin-left: .5rem; }
.burger { margin-left: auto; background: none; border: none; width: 40px; height: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; }
.burger span { width: 22px; height: 2.5px; background: var(--primary-dark); border-radius: 2px; }
.nav-mobile { display: none; flex-direction: column; background: var(--surface); border-top: 1px solid var(--line); padding: 1rem 1.25rem 1.5rem; }
.nav-mobile.open { display: flex; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: .2rem; }
.nav-mobile a { display: block; padding: .65rem .2rem; font-weight: 600; border-bottom: 1px solid var(--line); }
.nav-mobile a.active { color: var(--accent); }

@media (min-width: 900px) {
  .nav-desktop { display: block; }
  a.header-cta { display: inline-flex; }
  .burger { display: none; }
  .brand-logo { height: 60px; }
}

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.5rem; border-radius: 999px; font-weight: 700; font-size: .95rem; border: 2px solid transparent; cursor: pointer; }
.btn svg { width: 18px; height: 18px; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline-light { border-color: rgba(255,255,255,.6); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn-outline-dark { border-color: var(--primary); color: var(--primary-dark); }
.btn-outline-dark:hover { background: rgba(22,50,74,.06); }

/* Hero */
.hero { padding: 3rem 0 3rem; position: relative; overflow: hidden; }
.hero-inner { display: grid; gap: 2.2rem; align-items: center; }
.hero-text { max-width: 560px; }
.eyebrow { display: inline-block; background: #fdece5; color: var(--accent-dark); padding: .35rem .9rem; border-radius: 999px; font-size: .8rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: .02em; }
.eyebrow.center { display: block; width: fit-content; margin-left: auto; margin-right: auto; }
.hero-sub { font-size: 1.1rem; color: var(--muted); margin: 1rem 0 1.8rem; max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.hero-cta.center { justify-content: center; }
@media (min-width: 640px) { .hero-cta { justify-content: flex-start; } .hero-cta.center { justify-content: center; } }
.hero-media { position: relative; }
.blob { position: absolute; inset: -8% -8% -8% 6%; background: linear-gradient(135deg, var(--gold), var(--accent)); border-radius: 44% 56% 62% 38% / 45% 42% 58% 55%; opacity: .18; z-index: 0; }
.hero-photo { position: relative; z-index: 1; border-radius: 32px; box-shadow: 0 24px 48px rgba(22,50,74,.18); aspect-ratio: 4/5; object-fit: cover; width: 100%; }

.page-hero { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; padding: 3rem 0 3.2rem; }
.page-hero h1 { color: #fff; }
.hero-sub-dark { color: #d7e3f0; margin-top: .6rem; max-width: 55ch; }

@media (min-width: 860px) { .hero-inner { grid-template-columns: 1.05fr .95fr; } }

/* Trust strip */
.trust-strip { background: var(--surface); border-bottom: 1px solid var(--line); padding: 1.4rem 0; border-radius: 26px 26px 0 0; }
.trust-inner { display: flex; flex-direction: column; gap: 1rem; align-items: center; text-align: center; }
.rating-badge { display: flex; align-items: center; gap: .6rem; font-weight: 700; }
.stars { display: flex; gap: 2px; color: var(--gold); }
.star-ic { width: 18px; height: 18px; fill: var(--gold); stroke: var(--gold); }
.chip-row { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.chip { display: inline-flex; align-items: center; gap: .4rem; background: #eef4f0; color: #226b3f; border-radius: 999px; padding: .4rem .85rem; font-size: .85rem; font-weight: 600; }
.chip svg { width: 15px; height: 15px; }

@media (min-width: 720px) { .trust-inner { flex-direction: row; justify-content: space-between; text-align: left; } .chip-row { justify-content: flex-end; } }
.cert-logo-strip { margin-top: 1.3rem; padding-top: 1.2rem; border-top: 1px solid var(--line); text-align: center; }
.cert-logo-label { display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: .8rem; font-weight: 600; }
.cert-logo-row { display: flex; flex-wrap: wrap; gap: 1.6rem; justify-content: center; align-items: center; }
.cert-logo-row img { height: 30px; width: auto; object-fit: contain; }

/* Sections */
.section { padding: 3.4rem 0; }
.section-alt { background: #f2ece1; }
.lead { color: var(--muted); margin-bottom: 1.8rem; max-width: 60ch; }
.lead.center { margin-left: auto; margin-right: auto; }
.grid { display: grid; gap: 1.3rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card { background: var(--surface); border-radius: var(--radius); padding: 1.8rem 1.6rem; box-shadow: 0 8px 24px rgba(32,28,24,.05); border: 1px solid var(--line); }
.service-card { text-align: center; display: flex; flex-direction: column; align-items: center; }
.service-card .icon-badge { width: 52px; height: 52px; border-radius: 16px; background: #fdece5; color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.icon-badge svg { width: 26px; height: 26px; }
.service-card p { color: var(--muted); font-size: .95rem; }

.cert-list { display: flex; flex-direction: column; max-width: 720px; margin: 0 auto; border-top: 1px solid var(--line); }
.cert-row { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .9rem; padding: 1.7rem 1rem; border-bottom: 1px solid var(--line); }
.cert-row .logo-badge { width: 100%; max-width: 168px; height: 68px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cert-row .logo-badge img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cert-row-text p { color: var(--muted); font-size: .92rem; }
@media (min-width: 640px) {
  .cert-row { flex-direction: row; text-align: left; gap: 1.6rem; padding: 1.5rem .5rem; }
  .cert-row .logo-badge { max-width: 140px; height: 60px; }
  .cert-row-text { flex: 1; }
}

.tag { display: inline-block; background: var(--primary); color: #fff; font-size: .7rem; font-weight: 700; padding: .28rem .75rem; border-radius: 999px; margin-bottom: .7rem; letter-spacing: .03em; text-transform: uppercase; }

/* Project cards with real photos */
.project-card, .project-card-lg { background: var(--surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 8px 24px rgba(32,28,24,.05); }
.project-media { position: relative; aspect-ratio: 4/3; overflow: hidden; display: flex; }
.project-media img { width: 100%; height: 100%; object-fit: cover; }
.project-media .project-img-2 { display: none; }
.project-body { padding: 1.5rem 1.4rem; }
.project-card p, .project-card-lg p { color: var(--muted); font-size: .93rem; }
.project-body .place { font-weight: 600; color: var(--accent-dark); margin-bottom: .5rem; }
.project-card-lg .project-media { aspect-ratio: 16/10; }
@media (min-width: 560px) {
  .project-card-lg .project-media { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; aspect-ratio: 16/9; }
  .project-card-lg .project-media .project-img-2 { display: block; width: 100%; height: 100%; object-fit: cover; }
}

.center-cta { text-align: center; margin-top: 2.2rem; }

.review-scroller { display: flex; gap: 1.1rem; overflow-x: auto; padding-bottom: .6rem; scroll-snap-type: x mandatory; }
.review-card { flex: 0 0 82%; scroll-snap-align: start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: 0 8px 24px rgba(32,28,24,.05); text-align: center; }
.review-card .stars { justify-content: center; }
.review-card p { margin: .8rem 0 1rem; font-family: "Fraunces", serif; font-size: 1.05rem; font-style: italic; }
.review-name { font-weight: 700; font-size: .88rem; font-family: "Inter", sans-serif; font-style: normal; }
@media (min-width: 720px) { .review-card { flex: 0 0 360px; } }

.cta-band { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; padding: 3.2rem 0; }
.cta-band-inner { text-align: center; }
.cta-band-inner h2 { color: #fff; }
.cta-band-inner p { color: #ffe3d6; margin: .6rem 0 1.6rem; }
.cta-band .btn-outline-light { border-color: rgba(255,255,255,.7); }

.two-col { display: grid; gap: 2rem; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1.1fr .9fr; align-items: start; } }
.check-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin-top: 1rem; }
.check-list li { display: flex; align-items: center; gap: .6rem; font-weight: 600; }
.check-list svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.rating-card { background: var(--surface); border-radius: var(--radius); padding: 2rem; text-align: center; border: 1px solid var(--line); }
.rating-card .stars { justify-content: center; }
.rating-big { font-size: 3rem; font-weight: 700; color: var(--primary); font-family: "Fraunces", serif; }

.about-text p { margin-bottom: 1.1rem; color: var(--text); }
.team-wrap { display: flex; flex-direction: column; gap: 1rem; }
.team-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.avatar { width: 58px; height: 58px; border-radius: 50%; background: var(--primary); color: #fff; font-family: "Fraunces", sans-serif; font-weight: 700; font-size: 1.35rem; display: flex; align-items: center; justify-content: center; margin: 0 auto .7rem; }
.team-card a { color: var(--accent); font-weight: 700; }

.contact-card { display: flex; align-items: center; gap: 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.3rem; margin-bottom: .9rem; }
.contact-card .avatar { margin: 0; flex-shrink: 0; }
.contact-card a { color: var(--accent); font-weight: 700; display: inline-flex; align-items: center; gap: .4rem; margin-top: .2rem; }
.contact-card svg { width: 16px; height: 16px; }
.info-row { display: flex; align-items: center; gap: .6rem; margin: .9rem 0; color: var(--text); font-weight: 600; }
.info-row svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.map-embed { border-radius: var(--radius); overflow: hidden; margin-top: 1rem; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 240px; border: 0; display: block; }

.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-form label { display: flex; flex-direction: column; gap: .4rem; font-weight: 600; font-size: .9rem; }
.contact-form input, .contact-form textarea { border: 1.5px solid var(--line); border-radius: 12px; padding: .7rem .9rem; font-family: inherit; font-size: .95rem; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }

/* Footer */
.site-footer { background: var(--primary-dark); color: #c6d5e5; padding: 3rem 0 6rem; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-logo { height: 44px; width: auto; margin-bottom: .8rem; filter: brightness(0) invert(1); }
.site-footer h4 { color: #fff; margin-bottom: .6rem; font-family: "Fraunces", sans-serif; }
.site-footer a:hover { color: #fff; }
.site-footer p { margin: .3rem 0; font-size: .92rem; color: #c6d5e5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2rem; padding-top: 1.4rem; display: flex; flex-direction: column; gap: .4rem; font-size: .8rem; color: #9fb2c6; }
.footer-bottom p { color: #9fb2c6; margin: 0; }
.tind-note a { color: #9fb2c6; text-decoration: underline; }

/* Mobile sticky CTA */
.mobile-cta-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .9rem; font-weight: 700; z-index: 60; box-shadow: 0 -6px 18px rgba(0,0,0,.15); }
.mobile-cta-bar svg { width: 18px; height: 18px; }
@media (min-width: 900px) { .mobile-cta-bar { display: none; } }
