:root {
  --bg: #f6f1e8;
  --paper: #fffdf9;
  --soft: #fbf7f0;
  --teal: #123b3c;
  --teal-2: #1d5455;
  --gold: #c9a46c;
  --gold-2: #a67f49;
  --text: #173839;
  --muted: #5e7272;
  --line: #eadfce;
  --shadow: 0 24px 70px rgba(18, 59, 60, 0.11);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(18,59,60,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap { display:flex; align-items:center; justify-content:space-between; gap:24px; padding:16px 0; }
.brand { display:flex; align-items:center; gap:12px; color:#fff; }
.brand strong { display:block; letter-spacing:.08em; font-size:1.12rem; }
.brand small { display:block; text-transform:uppercase; letter-spacing:.24em; color:#e2c89e; font-size:.68rem; }
.brand-logo {
  width:56px; height:56px; object-fit:cover; border-radius:18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.16); background:#fff;
}
.site-nav { display:flex; align-items:center; gap:22px; }
.site-nav a { color: rgba(255,255,255,0.82); font-size:.95rem; }
.site-nav a.active, .site-nav a:hover { color:#fff; }
.nav-cta { margin-left:6px; }
.nav-toggle { display:none; background:none; border:none; color:#fff; font-size:1.5rem; }
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:10px; border:none;
  padding:14px 22px; border-radius:18px; font-weight:700; transition:.25s ease; cursor:pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { color:#fff; background: linear-gradient(90deg, var(--gold), var(--gold-2)); box-shadow: 0 16px 35px rgba(166,127,73,.25); }
.btn-teal { color:#fff; background: var(--teal); }
.btn-ghost { color:#fff; background: rgba(255,255,255,.09); border:1px solid rgba(255,255,255,.12); }
.hero {
  position: relative; overflow:hidden; background: radial-gradient(circle at top left, rgba(201,164,108,.2), transparent 34%), radial-gradient(circle at bottom right, rgba(255,255,255,.06), transparent 34%), var(--teal);
  color:#fff; padding: 84px 0 92px;
}
.hero-grid { display:grid; grid-template-columns: 1.08fr .92fr; gap:42px; align-items:center; }
.eyebrow {
  display:inline-flex; align-items:center; gap:10px; text-transform:uppercase; letter-spacing:.22em; font-size:.72rem;
  padding:10px 14px; border-radius:999px; color:#e7d3af; border:1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06);
}
.hero h1, h1, h2, h3, .display {
  font-family: "Playfair Display", Georgia, serif;
  line-height: .98;
}
.hero h1 { font-size: clamp(3rem, 7vw, 5.5rem); margin:18px 0 0; }
.hero h1 span { color:#d7b480; display:block; }
.hero p.lead { color: rgba(255,255,255,.82); font-size: 1.12rem; max-width: 700px; margin:22px 0 0; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-top:28px; }
.hero-pills { display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-top:28px; }
.hero-pills div { border:1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.06); border-radius:20px; padding:14px 16px; color: rgba(255,255,255,.88); }
.mockup {
  background: #f7f3eb; border-radius: 34px; padding: 16px; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 32px 82px rgba(0,0,0,.26);
}
.mockup-screen { background:#fff; border-radius:28px; overflow:hidden; box-shadow: 0 10px 30px rgba(20,20,20,.07); }
.mockup-top { display:flex; align-items:center; gap:8px; padding:16px 18px; border-bottom:1px solid #e9dece; }
.mockup-top span { width:12px; height:12px; border-radius:50%; background:#e4d3be; }
.mockup-top .url-pill { margin-left:auto; background: var(--teal); color:#dcc7a5; padding:6px 10px; border-radius:999px; font-size:.66rem; text-transform:uppercase; letter-spacing:.2em; }
.mockup-hero {
  min-height: 360px; padding: 34px; color:#fff;
  background: linear-gradient(120deg, rgba(18,59,60,.92), rgba(18,59,60,.3)), url('../img/mockup-preview.png') center/cover no-repeat;
}
.mockup-cards { display:grid; grid-template-columns: repeat(3,1fr); gap:14px; padding:18px; background:#fff; }
.mockup-card { background: #fbf8f2; border:1px solid #ece2d5; border-radius:22px; padding:14px; }
.mockup-card .thumb { height:104px; border-radius:18px; background: linear-gradient(135deg, #efe4d5, #fff); }
.trust-band { margin-top: -22px; position: relative; z-index: 3; }
.panel {
  background:#fff; border:1px solid var(--line); border-radius: 30px; box-shadow: var(--shadow);
}
.trust-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; padding:18px; }
.trust-item { display:flex; align-items:center; gap:12px; background:#faf6ef; border-radius:22px; padding:15px; }
.trust-icon {
  width:40px; height:40px; border-radius:50%; display:grid; place-items:center; background: var(--teal); color:#fff; font-weight:800;
}
.section { padding: 86px 0; }
.section.soft { background: var(--soft); }
.section-head { display:flex; align-items:end; justify-content:space-between; gap:20px; margin-bottom:34px; }
.section-head h2 { font-size: clamp(2.3rem, 4vw, 4rem); margin:8px 0 0; }
.kicker { text-transform:uppercase; letter-spacing:.24em; font-size:.78rem; color:#8f6e45; }
.muted { color: var(--muted); }
.grid-3 { display:grid; grid-template-columns: repeat(3, 1fr); gap:22px; }
.grid-2 { display:grid; grid-template-columns: repeat(2, 1fr); gap:24px; }
.card {
  position:relative; overflow:hidden; border-radius: 30px; border:1px solid var(--line); background:#fff; padding:28px; box-shadow: 0 10px 30px rgba(0,0,0,.03);
}
.card.dark { background: var(--teal); color:#fff; border-color: rgba(201,164,108,.35); }
.card h3 { font-size: 1.9rem; margin: 10px 0 0; }
.features { list-style:none; padding:0; margin: 18px 0 0; }
.features li { display:flex; gap:10px; margin: 12px 0; }
.check {
  flex: 0 0 24px; width:24px; height:24px; border-radius:50%; display:grid; place-items:center; font-size:.8rem;
  background:#f4ece0; color:#8f6e45;
}
.card.dark .check { background: rgba(255,255,255,.1); color:#e2c89e; }
.location-card { border-radius:26px; background:#fff; border:1px solid var(--line); padding:24px; }
.location-card .pin { width:48px; height:48px; border-radius:18px; background: var(--teal); color:#fff; display:grid; place-items:center; margin-bottom:14px; }
.sitemap-box { overflow:hidden; }
.sitemap-top { background: var(--teal); color:#fff; padding: 28px; }
.stack { padding: 26px; display:grid; gap:12px; }
.stack div { background:#faf5ee; border-radius:18px; padding:14px 16px; }
.quote-box { padding: 34px; }
.form-grid { display:grid; grid-template-columns: repeat(2,1fr); gap:14px; margin-top:24px; }
.fake-field, input, textarea, select {
  width:100%; border-radius:18px; border:1px solid #ebdfcf; background:#fbf8f2; padding:16px 16px; font: inherit; color: var(--text);
}
textarea { min-height: 120px; resize: vertical; }
.field-full { grid-column: 1 / -1; }
.contact-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:16px; }
.info-strip { background:#faf5ee; border-radius:24px; padding:18px; margin-top:22px; }
.faq-list { display:grid; gap:14px; margin-top:30px; }
.faq-item { background:#fff; border:1px solid var(--line); border-radius:26px; padding:22px; box-shadow:0 8px 22px rgba(0,0,0,.03); }
.faq-q { display:flex; justify-content:space-between; gap:20px; align-items:flex-start; }
.faq-q button { border:none; background:#faf4ea; width:34px; height:34px; border-radius:50%; cursor:pointer; }
.faq-a { max-height: 0; overflow:hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 300px; margin-top: 10px; }
.page-hero { padding: 74px 0 46px; background: linear-gradient(180deg, rgba(18,59,60,1), rgba(18,59,60,.94)); color:#fff; }
.page-hero h1 { font-size: clamp(2.7rem, 5vw, 4.8rem); margin: 10px 0 0; }
.breadcrumbs { color: rgba(255,255,255,.65); font-size:.92rem; }
.copy-block { max-width: 760px; }
.site-footer { background: var(--teal); color:#fff; padding: 50px 0; }
.footer-grid { display:grid; grid-template-columns: 1.2fr .7fr .8fr; gap:24px; }
.footer-list { list-style:none; padding:0; margin:0; display:grid; gap:8px; color: rgba(255,255,255,.78); }
.floating-cta {
  position: fixed; right: 18px; bottom: 18px; z-index: 60; color:#fff;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius:999px; padding:14px 18px; font-weight:800; box-shadow: 0 18px 35px rgba(0,0,0,.18);
}
.map-links { display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
.map-links a { padding:12px 16px; border-radius:999px; background:#faf5ee; border:1px solid var(--line); }
.inline-badges { display:flex; flex-wrap:wrap; gap:10px; }
.inline-badges span { padding:10px 14px; border-radius:999px; background:#faf5ee; border:1px solid var(--line); font-size:.9rem; }
@media (max-width: 980px) {
  .hero-grid, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .grid-3, .trust-grid, .mockup-cards { grid-template-columns: 1fr; }
  .section-head { flex-direction:column; align-items:flex-start; }
  .site-nav { position:absolute; left:0; right:0; top:78px; background:rgba(18,59,60,.98); border-bottom:1px solid rgba(255,255,255,.08); padding:18px 16px; display:none; flex-direction:column; align-items:flex-start; }
  .site-nav.open { display:flex; }
  .nav-toggle { display:block; }
}
@media (max-width: 720px) {
  .hero { padding-top: 58px; }
  .hero-pills, .form-grid, .trust-grid { grid-template-columns:1fr; }
  .container { width: min(1180px, calc(100% - 22px)); }
  .btn { width:100%; }
  .contact-actions .btn { width:auto; }
  .nav-cta { display:none; }
  .floating-cta { left: 12px; right:12px; text-align:center; }
}


.lang-switch{
  color:#fff;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  padding:10px 14px;
  border-radius:999px;
  font-size:.9rem;
}
.lang-switch:hover{ background:rgba(255,255,255,.14); }
.hero .lead, .page-hero .lead { max-width: 760px; }
.section-head.split { display:grid; grid-template-columns: 1fr 1fr; gap:32px; align-items:end; margin-bottom:28px; }
.section-head.center { text-align:center; margin-bottom:28px; }
.copy-block { max-width: 720px; }
.compact-cards { margin-top: 20px; }
.mini-card{ border:1px solid var(--line); background:#fff; border-radius:22px; padding:18px; box-shadow:0 10px 26px rgba(18,59,60,.05); }
.mini-card h3{ margin:0 0 8px; font-size:1.25rem; }
.site-stack{ display:grid; gap:12px; margin-top:16px; }
.stack-item{ background:#faf5ee; border-radius:16px; padding:12px 14px; font-weight:600; color:#244848; }
.fake-form{ margin-top:20px; }
.field{ border:1px solid var(--line); background:#fbf8f2; border-radius:18px; padding:16px 18px; color:#7d8d8d; }
.field-full{ grid-column:1 / -1; min-height:100px; }
.btn-outline{ border:1px solid var(--teal); color:var(--teal); background:#fff; }
.btn-outline:hover{ background:var(--teal); color:#fff; }
@media (max-width: 980px){
  .section-head.split, .hero-grid, .split-grid, .grid-3, .grid-2 { grid-template-columns: 1fr !important; }
}
@media (max-width: 780px){
  .nav-toggle{ display:block; }
  .site-nav{
    position:absolute; left:16px; right:16px; top:78px; display:none; flex-direction:column; align-items:stretch;
    background:rgba(18,59,60,.97); border:1px solid rgba(255,255,255,.08); padding:14px; border-radius:22px;
  }
  .site-nav.open{ display:flex; }
  .nav-wrap{ position:relative; }
  .lang-switch, .nav-cta{ width:100%; justify-content:center; }
}


.brand-logo-only {
  display: inline-flex;
  align-items: center;
}
.brand-logo-only span { display:none; }
.brand-logo {
  width: 110px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
@media (max-width: 640px) {
  .brand-logo {
    width: 86px;
  }
}
