:root{
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f6f7f9;
  --text: #0f172a;
  --muted: #475569;
  --border: rgba(15, 23, 42, 0.12);
  --accent: #e0a070;
  --accent-2: #c88858;

  --radius: 14px;
  --shadow: 0 12px 30px rgba(2, 6, 23, 0.10);
  --container: 1120px;
}

/* Dark theme overrides (applied via .theme-dark on <body>) */
body.theme-dark{
  --bg: #101a2d;
  --surface: #14213a;
  --surface-2: rgba(148, 163, 184, 0.12);
  --text: #e2e8f0;
  --muted: rgba(226, 232, 240, 0.78);
  --border: rgba(226, 232, 240, 0.18);
  --accent: #e0b070;
  --accent-2: #e0a070;
}

/* Respect OS preference when user has not chosen a theme */
@media (prefers-color-scheme: dark){
  body:not(.theme-light):not(.theme-dark){
    --bg: #101a2d;
    --surface: #14213a;
    --surface-2: rgba(148, 163, 184, 0.12);
    --text: #e2e8f0;
    --muted: rgba(226, 232, 240, 0.78);
    --border: rgba(226, 232, 240, 0.18);
    --accent: #e0b070;
    --accent-2: #e0a070;
  }
}

*{box-sizing:border-box;}
html,body{height:100%;}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
  position:relative;
}
/* Global background watermark */
body::before{
  content:"";
  position:fixed;
  inset:0;
  background-image:url("../media/logo-300x300.png");
  background-repeat:no-repeat;
  background-position:center;
  background-size:min(520px, 70vmin);
  opacity:0.12;
  pointer-events:none;
  z-index:-1;
}

.topbar-social{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:32px;
  border-radius:999px;
  border:1px solid var(--border);
  background:var(--surface-2);
  text-decoration:none;
  color:var(--muted);
}

.topbar-social:hover{
  border-color:rgba(224,160,112,0.35);
  background:rgba(224,160,112,0.10);
  color:var(--accent);
}

.topbar-social:focus-visible{
  outline:3px solid rgba(224, 160, 112, 0.45);
  outline-offset:3px;
}

.topbar-social .icon{
  width:18px;
  height:18px;
}

a{color:inherit; text-decoration:none;}
a:hover{text-decoration:underline;}

/* Accessibility: visible focus for keyboard users */
:where(a, button, input, textarea, select, [tabindex]):focus{outline:none;}
:where(a, button, input, textarea, select, [tabindex]):focus-visible{
  outline:3px solid rgba(224, 160, 112, 0.45);
  outline-offset:3px;
  border-radius:12px;
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important; transition:none !important;}
}

.container{max-width:var(--container); margin:0 auto; padding:0 20px;}

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  border-radius:10px;
  background:var(--surface);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  z-index:1000;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,0.92);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--border);
}

body.theme-dark .site-header{
  background:rgba(15,23,42,0.82);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{display:flex; align-items:center; gap:10px; min-width:0;}
.brand-logo{
  width:40px;
  height:40px;
  border-radius:10px;
  display:block;
  object-fit:contain;
  background:transparent;
}
.brand-mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:12px;
  background:var(--text);
  color:#fff;
  font-weight:700;
  letter-spacing:0.02em;
}
.brand-text{font-weight:700; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}

.site-nav{
  display:flex;
  align-items:center;
  gap:14px;
}

.site-nav a{
  color:var(--text);
  font-weight:500;
  padding:8px 10px;
  border-radius:10px;
}

.site-nav a:hover{background:var(--surface-2); text-decoration:none;}

.site-nav a[aria-current="page"]{background:var(--surface-2);}

.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:var(--surface);
  border-radius:12px;
  padding:10px;
  cursor:pointer;
}

.nav-toggle-lines{
  display:block;
  width:18px;
  height:12px;
  position:relative;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background:var(--text);
  border-radius:99px;
}
.nav-toggle-lines::before{top:1px;}
.nav-toggle-lines::after{bottom:1px;}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:12px 16px;
  border:1px solid transparent;
  font-weight:600;
  color:var(--text);
  cursor:pointer;
  text-decoration:none;
}
.btn:hover{text-decoration:none;}
.btn-primary{background:var(--accent); color:#0f172a;}
.btn-primary:hover{background:var(--accent-2);}
.btn-secondary{background:transparent; border-color:var(--border);}
.btn-secondary:hover{background:var(--surface-2);}
.btn-small{padding:10px 14px;}

.theme-toggle{white-space:nowrap;}

.hero{
  padding:40px 0;
  background:
    linear-gradient(180deg, var(--surface-2), rgba(255,255,255,0)),
    url("../media/background-hero-msd.webp");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

body.theme-dark .hero{
  background:
    linear-gradient(180deg, rgba(11,18,32,0.86), rgba(11,18,32,0.08)),
    url("../media/background-hero-msd.webp");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap:22px;
  align-items:start;
}
.kicker{color:var(--muted); font-weight:600; margin:0 0 10px;}
.hero h1{font-size:44px; line-height:1.1; margin:0 0 12px; letter-spacing:-0.02em;}
.lead{font-size:18px; margin:0;}
.fine{color:var(--muted); margin:14px 0 0;}
.hero-cta{display:flex; flex-wrap:wrap; gap:12px; margin-top:18px;}

/* Improve contrast for the email line over the hero background image */
.hero .fine{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,0.78);
  border:1px solid var(--border);
  color:var(--text);
}

.hero .fine a{
  color:inherit;
  font-weight:700;
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:2px;
}

.hero .fine a:hover{color:var(--accent);}

body.theme-dark .hero .fine{
  background:rgba(11,18,32,0.62);
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:12px;
}

.hero-stats .stat{
  border:1px solid var(--border);
  border-radius:14px;
  background:var(--surface);
  padding:12px 14px;
}

.hero-card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--surface);
  box-shadow:var(--shadow);
  padding:16px;
  display:grid;
  gap:10px;
}

.hero-photo{
  width:100%;
  height:240px;
  border-radius:12px;
  object-fit:cover;
  display:block;
  border:1px solid var(--border);
}

.hero-slogan{
  margin:0;
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text);
}
.stat-title{font-weight:700;}
.stat-desc{color:var(--muted); font-size:14px; margin-top:2px;}

.section{padding:56px 0;}
.section.alt{background:var(--surface-2);}
.section-head{display:flex; flex-direction:column; gap:6px; margin-bottom:18px;}
.section-head h2{margin:0;}

.section-head-row{
  flex-direction:row;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
}

.muted{color:var(--muted);}

.carousel-controls{display:flex; gap:10px; flex-wrap:wrap;}

.testimonial-carousel{position:relative; overflow:hidden;}
.testimonial-carousel{padding:0 52px;}

.carousel-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.92);
  color:var(--text);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 10px 26px rgba(2,6,23,0.10);
  z-index:2;
}

body.theme-dark .carousel-arrow{
  background:rgba(15,23,42,0.82);
}

.carousel-arrow:hover{border-color:rgba(224,160,112,0.35); color:var(--accent);}
.carousel-arrow:focus-visible{outline:3px solid rgba(224, 160, 112, 0.45); outline-offset:3px;}

.carousel-arrow-prev{left:10px;}
.carousel-arrow-next{right:10px;}

@media (max-width: 720px){
  .testimonial-carousel{padding:0 34px;}
  .carousel-arrow{width:36px; height:36px;}
  .carousel-arrow-prev{left:6px;}
  .carousel-arrow-next{right:6px;}
}
.testimonial-track{
  display:flex;
  gap:14px;
  padding:2px;
  transform:translateX(var(--carousel-offset, 0px));
  transition:transform 380ms ease;
}

.testimonial-track:focus-visible{
  outline:3px solid rgba(224, 160, 112, 0.45);
  outline-offset:3px;
  border-radius:14px;
}

@media (prefers-reduced-motion: reduce){
  .testimonial-track{transition:none;}
}

.testimonial-card{
  scroll-snap-align:start;
  flex:0 0 auto;
  width:min(360px, calc(100vw - 44px));
  min-height:380px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--surface);
  padding:16px;
  box-shadow:0 10px 26px rgba(2,6,23,0.08);
  display:grid;
  gap:10px;
  justify-items:center;
  text-align:center;
}

.testimonial-avatar{
  width:96px;
  height:96px;
  object-fit:cover;
  border-radius:999px;
  border:1px solid var(--border);
}

.testimonial-card .stars{
  color:var(--accent);
  letter-spacing:0.08em;
  font-size:14px;
  margin-bottom:10px;
}

.testimonial-card .quote{margin:0; color:var(--text);}

.testimonial-card .who{
  display:flex;
  align-items:baseline;
  justify-content:center;
  gap:12px;
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid var(--border);
  width:100%;
}

.testimonial-card .name{font-weight:700;}

.grid{display:grid; gap:14px;}
.cards{grid-template-columns:repeat(4, minmax(0,1fr));}
.list-cards{grid-template-columns:repeat(3, minmax(0,1fr));}
.features{grid-template-columns:repeat(2, minmax(0,1fr));}

/* Home services: reveal remaining services inline */
.cards .service-extra{display:none;}
.cards.is-expanded .service-extra{display:block; animation:serviceReveal 240ms ease both;}

@keyframes serviceReveal{
  from{opacity:0; transform:translateY(-6px);}
  to{opacity:1; transform:translateY(0);}
}

@media (prefers-reduced-motion: reduce){
  .cards.is-expanded .service-extra{animation:none;}
}

.why-features{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
}
.why-features .feature h3{margin:0;}

.why-features{align-items:stretch; text-align:center;}

.why-features .feature{
  background:transparent;
  border:none;
  padding:10px 8px;
  box-shadow:none;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  flex:0 1 180px;
}

.why-features .icon-badge{
  width:56px;
  height:56px;
  border-radius:18px;
  border:none;
  background: var(--accent);
  color: #fff;
}

.why-features .icon{
  width:26px;
  height:26px;
}

.why-features .icon path{
  stroke-width:2.6;
}

.why-features .feature h3{color:var(--accent); font-weight:800; font-size:17px;}

.why-features .feature p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  max-width:22ch;
}

.card{
  display:block;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--surface);
  padding:16px;
  transition:transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.card-icon{
  width:100%;
  height:110px;
  border-radius:12px;
  object-fit:cover;
  border:1px solid var(--border);
  margin-bottom:12px;
  display:block;
}
.card h3{margin:0 0 6px; font-size:16px;}
.card p{margin:0; color:var(--muted); font-size:14px;}
.card:hover{transform:translateY(-1px); box-shadow:0 10px 26px rgba(2,6,23,0.10); border-color:var(--accent);}

.cards .card:hover .card-heading{color:var(--accent);}

.card-heading{
  margin:0 0 6px;
  font-size:16px;
  display:flex;
  align-items:center;
  gap:8px;
}

.card-heading .icon{
  color:var(--accent);
}

.after-grid-link{margin:14px 0 0;}

/* Center CTA under grids when used as a button */
.after-grid-link{
  display:flex;
  justify-content:center;
}

/* Contact form */
.contact-form label{
  display:block;
  font-weight:700;
  margin:0 0 6px;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}

.field{margin:0 0 12px;}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:var(--surface);
  color:var(--text);
  font:inherit;
}

.contact-form textarea{resize:vertical; min-height:120px;}

.contact-form input::placeholder,
.contact-form textarea::placeholder{color:rgba(71,85,105,0.75);}

body.theme-dark .contact-form input::placeholder,
body.theme-dark .contact-form textarea::placeholder{color:rgba(226,232,240,0.55);}

.contact-form input:focus,
.contact-form textarea:focus{outline:none;}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible{
  outline:3px solid rgba(224, 160, 112, 0.45);
  outline-offset:3px;
}

.form-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px;}
.form-note{margin:12px 0 0; font-size:14px;}

@media (max-width: 720px){
  .form-grid{grid-template-columns:1fr;}
}

/* Floating WhatsApp button */
.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  width:56px;
  height:56px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#25D366;
  color:#ffffff;
  border:1px solid rgba(15, 23, 42, 0.18);
  box-shadow:var(--shadow);
  z-index:60;
  text-decoration:none;
}

body.theme-dark .whatsapp-float{
  background:#25D366;
  color:#ffffff;
  border-color:rgba(226,232,240,0.18);
}

.whatsapp-float:hover{
  text-decoration:none;
  transform:translateY(-1px);
}

.whatsapp-icon{width:28px; height:28px; display:block;}

/* Inline SVG icon styling */
.icon{
  width:18px;
  height:18px;
  display:inline-block;
  flex:0 0 auto;
}

.icon-badge{
  width:36px;
  height:36px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--surface-2);
  border:1px solid var(--border);
}

.feature{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--surface);
  padding:16px;
}
.feature h3{margin:0 0 6px; font-size:16px;}
.feature p{margin:0; color:var(--muted);}

.split{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:18px;
  align-items:start;
}

/* FAQ */
.faq{
  display:grid;
  gap:12px;
  max-width:760px;
  margin:0 auto;
  text-align:center;
}

.faq-item{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--surface);
  padding:14px 16px;
  transition:transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.faq-item summary{
  cursor:pointer;
  font-weight:800;
  list-style:none;
  position:relative;
  display:block;
  padding-right:44px;
}

.faq-item summary::-webkit-details-marker{display:none;}

.faq-item summary::after{
  content:"+";
  width:28px;
  height:28px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--border);
  background:var(--surface-2);
  color:var(--muted);
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  transition:transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.faq-item[open]{
  border-color:rgba(224,160,112,0.35);
  box-shadow:0 10px 26px rgba(2,6,23,0.08);
  transform:translateY(-1px);
}

.faq-item[open] summary::after{
  content:"–";
  color:var(--accent);
  border-color:rgba(224,160,112,0.35);
  transform:translateY(-50%) rotate(180deg);
}

.faq-content{
  margin-top:10px;
  display:grid;
  grid-template-rows:0fr;
  opacity:0;
  transform:translateY(-4px);
  transition:grid-template-rows 260ms ease, opacity 220ms ease, transform 220ms ease;
}

.faq-content > *{overflow:hidden;}

.faq-item[open] .faq-content{
  grid-template-rows:1fr;
  opacity:1;
  transform:translateY(0);
}

.faq-content p{margin:0;}

@media (prefers-reduced-motion: reduce){
  .faq-item,
  .faq-item summary::after,
  .faq-content{transition:none;}
}

.faq-cta{margin-top:16px; display:flex; justify-content:center;}

.panel{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--surface);
  padding:18px;
}

.steps{margin:10px 0 0; padding-left:18px; color:var(--muted);} 
.steps li{margin:8px 0;}

.bullets{margin:10px 0 0; padding-left:18px; color:var(--muted);} 
.bullets li{margin:8px 0;}

.panel-actions{display:flex; gap:10px; margin-top:14px; flex-wrap:wrap;}

.cta-panel{
  border:1px solid var(--border);
  border-radius:calc(var(--radius) + 2px);
  background:var(--surface);
  box-shadow:var(--shadow);
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.cta-actions{display:flex; gap:12px; flex-wrap:wrap;}

.page-hero{
  padding:34px 0;
  border-bottom:1px solid var(--border);
  background:linear-gradient(180deg, rgba(224,160,112,0.08), rgba(255,255,255,0));
}

body.theme-dark .page-hero{
  background:linear-gradient(180deg, rgba(224,176,112,0.16), rgba(11,18,32,0));
}
.page-hero h1{margin:0 0 6px; font-size:34px; letter-spacing:-0.02em;}

.page-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:14px;
}

.trust-pills{
  list-style:none;
  padding:0;
  margin:14px 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.trust-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(15,23,42,0.02);
  color:var(--text);
  font-weight:600;
  font-size:13px;
}

body.theme-dark .trust-pill{background:rgba(148, 163, 184, 0.08);}

.trust-pill .dot{
  width:7px;
  height:7px;
  border-radius:999px;
  background:var(--accent);
  flex:0 0 auto;
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:var(--surface);
  color:var(--text);
  font-weight:600;
  font-size:13px;
}

.chip:hover{border-color:rgba(224,160,112,0.35); text-decoration:none;}

.process-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:12px;
}

.process-step{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--surface);
  padding:16px;
  display:grid;
  gap:8px;
}

.process-step{
  box-shadow:0 8px 20px rgba(2,6,23,0.06);
}

.process-step:hover{
  border-color:rgba(224,160,112,0.35);
}

.process-step .step-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.process-step .icon-badge{
  width:36px;
  height:36px;
  border-radius:12px;
  background:rgba(224,160,112,0.14);
  border:1px solid rgba(224,160,112,0.25);
  color:var(--text);
}

.process-step .step-num{
  width:30px;
  height:30px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(224,160,112,0.14);
  border:1px solid rgba(224,160,112,0.25);
  font-weight:800;
  color:var(--text);
}

.process-step h3{margin:0; font-size:16px;}
.process-step p{margin:0; color:var(--muted);}

@media (max-width: 980px){
  .process-grid{grid-template-columns:repeat(2, minmax(0, 1fr));}
}

@media (max-width: 520px){
  .process-grid{grid-template-columns:1fr;}
}

.note{margin-top:16px; padding:14px 16px; border:1px dashed var(--border); border-radius:var(--radius); background:rgba(15,23,42,0.02);}

.gallery{grid-template-columns:repeat(3, minmax(0,1fr));}
.gallery-item{
  display:block;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--surface);
  overflow:hidden;
  margin:0;
  min-height:160px;
  box-shadow:0 8px 20px rgba(2,6,23,0.06);
}

.gallery-item img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.service-card{
  display:grid;
  gap:10px;
  cursor:pointer;
}

.service-icon{
  width:100%;
  height:140px;
  border-radius:12px;
  object-fit:cover;
  border:1px solid var(--border);
  display:block;
}

.content-photo{
  width:100%;
  max-width:560px;
  height:auto;
  border-radius:14px;
  border:1px solid var(--border);
  box-shadow:0 10px 26px rgba(2,6,23,0.10);
  margin:12px 0 14px;
}

.contact-cards{display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:12px; margin-top:14px;}
.contact-card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--surface);
  padding:14px;
  display:block;
}

a.contact-card:hover{
  text-decoration:none;
  border-color:rgba(224,160,112,0.35);
  box-shadow:0 10px 26px rgba(2,6,23,0.10);
}
.contact-label{
  color:var(--muted);
  font-size:13px;
  display:flex;
  align-items:center;
  gap:10px;
}
.contact-label .icon-badge{
  width:32px;
  height:32px;
  border-radius:12px;
}
.contact-value{font-weight:700; margin-top:2px;}

.site-footer{border-top:1px solid var(--border); padding:34px 0 18px; background:var(--surface-2);}
.footer-inner{display:flex; align-items:flex-start; justify-content:space-between; gap:18px; flex-wrap:wrap;}
.footer-cols{display:flex; gap:40px; flex-wrap:wrap;}
.footer-cols h3{margin:0 0 10px; font-size:14px; text-transform:uppercase; letter-spacing:0.08em; color:var(--muted);} 
.footer-cols a, .footer-cols span{display:block; padding:6px 0; color:var(--text);} 

/* Footer social buttons reuse .topbar-social styles; keep them inline */
.footer-cols .topbar-social{display:inline-flex; padding:0;}
.footer-social{display:flex; flex-wrap:wrap; gap:10px;}
.brand-footer{margin-bottom:10px;}
.footer-bottom{margin-top:18px; padding-top:14px; border-top:1px solid var(--border); color:var(--muted); font-size:14px;}

.footer-bottom-inner{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:12px;
}

.footer-bottom-left{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.footer-policy{
  color:var(--muted);
  text-decoration:none;
  border-bottom:1px dashed transparent;
}

.footer-policy:hover,
.footer-policy:focus-visible{
  color:var(--text);
  border-bottom-color:var(--border);
}

.footer-bottom-center{
  display:flex;
  justify-content:center;
  gap:10px;
}

.footer-bottom-right{min-height:1px;}

@media (max-width: 640px){
  .footer-bottom-inner{
    grid-template-columns:1fr;
    justify-items:center;
    text-align:center;
  }

  .footer-bottom-left{justify-content:center;}
}

@media (max-width: 980px){
  .hero{padding:34px 0;}
  .hero-inner{grid-template-columns:1fr;}
  .hero-photo{height:220px;}
  .cards{grid-template-columns:repeat(2, minmax(0,1fr));}
  .list-cards{grid-template-columns:repeat(2, minmax(0,1fr));}
  .split{grid-template-columns:1fr;}
  .features{grid-template-columns:1fr;}
  .gallery{grid-template-columns:repeat(2, minmax(0,1fr));}
}

@media (max-width: 720px){
  .nav-toggle{display:inline-flex;}
  .site-nav{
    position:absolute;
    left:0;
    right:0;
    top:100%;
    width:auto;
    padding:12px;
    border-radius:0;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
    border-left:0;
    border-right:0;
    background:var(--surface);
    box-shadow:var(--shadow);
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    display:none;
    z-index:10;
  }
  .site-nav.is-open{display:flex;}
  .site-nav a{padding:10px 12px;}
  .hero{padding:30px 0;}
  .hero h1{font-size:36px;}
  .hero-photo{height:200px;}
  .hero-stats{grid-template-columns:1fr;}
  .contact-cards{grid-template-columns:1fr;}
  .gallery{grid-template-columns:1fr;}
}

/* Pinterest-style masonry gallery */
.masonry{
  column-count: 4;
  column-gap: 14px;
}

.masonry-item{
  break-inside: avoid;
  margin: 0 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(2,6,23,0.08);
}

.masonry-item img{
  width: 100%;
  height: auto;
  display: block;
}

.masonry-item:hover{
  transform: translateY(-1px);
  border-color: rgba(224,160,112,0.35);
  box-shadow: 0 14px 34px rgba(2,6,23,0.14);
}

@media (max-width: 1100px){
  .masonry{column-count: 3;}
}

@media (max-width: 900px){
  .masonry{column-count: 2;}
}

@media (max-width: 520px){
  .masonry{column-count: 1;}
}
