:root{
  --bg:#f7f4ee;
  --bg-soft:#efe9df;
  --bg-soft-2:#fcfaf6;
  --text:#1d2430;
  --muted:#5e6673;
  --line:#d8d2c7;
  --card:#fbfaf7;
  --accent:#14233b;
  --accent-2:#c6a46a;
  --accent-2-soft:#d8c19a;
  --white:#ffffff;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{
  color:inherit;
  text-decoration:none;
}

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

.container{
  width:min(1160px, 92%);
  margin:0 auto;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  background:rgba(247,244,238,.97);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid var(--line);
  z-index:50;
}

.site-header::after{
  content:"";
  display:block;
  height:2px;
  background:linear-gradient(90deg,var(--accent-2),transparent 40%);
}

.header-inner{
  min-height:86px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:28px;
  align-items:center;
  padding:12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:270px;
}

.brand-balloon{
  width:48px;
  height:48px;
  object-fit:contain;
  flex-shrink:0;
}

.brand-copy strong{
  display:block;
  font-size:1.08rem;
  line-height:1.1;
}

.brand-copy small{
  display:block;
  color:var(--muted);
  font-size:.92rem;
  margin-top:4px;
}

.brand-copy span{
  display:block;
  color:var(--accent-2);
  font-size:.86rem;
  font-weight:700;
  margin-top:3px;
  letter-spacing:.02em;
}

.main-nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px 20px;
  font-size:.98rem;
}

.main-nav a{
  color:var(--muted);
  padding:6px 0;
  transition:.2s ease;
}

.main-nav a:hover{
  color:var(--accent);
}

.header-right{
  display:flex;
  align-items:center;
  gap:14px;
}

.lang-switch{
  display:flex;
  gap:10px;
}

.lang-switch a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border:1px solid var(--line);
  border-radius:999px;
  background:var(--bg-soft-2);
  font-weight:700;
  transition:.2s ease;
}

.lang-switch a:hover{
  border-color:var(--accent-2);
  color:var(--accent);
  background:#fff7ea;
}

.btn{
  display:inline-block;
  padding:14px 18px;
  border-radius:12px;
  border:1px solid var(--accent);
  font-weight:700;
  transition:.2s ease;
}

.btn.primary{
  background:var(--accent);
  color:var(--white);
}

.btn.primary:hover{
  background:#1c3153;
}

.btn.secondary{
  background:var(--white);
  color:var(--accent);
  border-color:rgba(20,35,59,.28);
}

.btn.secondary:hover{
  border-color:var(--accent-2);
  background:#fffaf0;
}

.btn.light.primary{
  background:var(--white);
  color:var(--accent);
  border-color:var(--white);
}

.btn.light.secondary{
  background:transparent;
  color:var(--white);
  border-color:rgba(255,255,255,.55);
}

.btn.light.secondary:hover{
  background:rgba(255,255,255,.08);
}

.btn-header{
  padding:12px 16px;
  background:transparent;
  color:var(--accent);
  border-color:rgba(20,35,59,.22);
}

.btn-header:hover{
  background:#fffaf0;
  border-color:var(--accent-2);
}

/* HERO */
.hero{
  padding:64px 0 52px;
  background:linear-gradient(180deg, #fbfaf7 0%, #f3eee6 100%);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:42px;
  align-items:center;
}

.hero-copy{
  max-width:700px;
}

.kicker{
  display:inline-block;
  margin-bottom:12px;
  color:var(--accent-2);
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.9rem;
}

.hero h1{
  margin:0 0 18px;
  font-size:clamp(2.4rem, 4.2vw, 4.35rem);
  line-height:1.02;
  letter-spacing:-0.03em;
  font-weight:700;
  max-width:700px;
}

.lead{
  font-size:1.05rem;
  line-height:1.72;
  color:var(--muted);
  max-width:640px;
}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.signature-block{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:28px;
}

.signature-line{
  width:56px;
  height:2px;
  background:linear-gradient(90deg,var(--accent-2),var(--accent-2-soft));
  border-radius:999px;
}

.signature-text{
  margin:0;
  font-weight:700;
  color:var(--accent);
}

.hero-visual{
  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-photo-frame{
  width:100%;
  max-width:540px;
  min-height:470px;
  background:linear-gradient(180deg,#f8f6f1,#eee6da);
  border:1px solid rgba(198,164,106,.38);
  border-radius:28px;
  box-shadow:0 18px 40px rgba(20,35,59,.05);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:34px 24px 0;
  position:relative;
  overflow:hidden;
}

.hero-photo-frame::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:28px;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.35);
  pointer-events:none;
}

.hero-photo{
  width:min(100%, 360px);
  height:auto;
  object-fit:contain;
  object-position:center bottom;
  margin-top:24px;
}

/* SECTIONS */
.section{
  padding:66px 0;
}

.section-soft{
  background:var(--bg-soft-2);
}

.section-heading{
  margin-bottom:26px;
}

.section-heading-wide h2{
  max-width:920px;
}

h2{
  font-size:clamp(1.9rem, 2.8vw, 3rem);
  line-height:1.06;
  letter-spacing:-0.025em;
  margin:0;
  font-weight:700;
}

h3{
  font-size:clamp(1.2rem, 1.45vw, 1.5rem);
  line-height:1.18;
  letter-spacing:-0.01em;
  margin:0 0 14px;
  font-weight:700;
}

p{
  margin:0 0 16px;
}

.muted{
  color:var(--muted);
}

.narrow{
  max-width:760px;
}

.quote{
  margin:0 0 12px;
  font-size:1.35rem;
  line-height:1.28;
  font-weight:700;
}

/* GRID */
.grid-2{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:24px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:24px;
}

.grid-4{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:20px;
}

/* CARDS */
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:20px;
  padding:26px 26px 24px;
  box-shadow:0 10px 28px rgba(20,35,59,.035);
}

.card-target{
  min-height:270px;
}

.card-target p{
  font-size:1rem;
  line-height:1.7;
  color:#2f3743;
}

.property-card .btn{
  margin-top:8px;
}

.method-card{
  background:linear-gradient(180deg,#fffdf9,#f6f0e8);
  border-color:rgba(198,164,106,.35);
}

.placeholder{
  display:grid;
  place-items:center;
  aspect-ratio:5/4;
  background:#ece7de;
  border:1px dashed #bfae8e;
  border-radius:12px;
  color:#5f6876;
  font-weight:700;
  margin-bottom:14px;
}

.list-clean{
  padding-left:18px;
  margin:0;
}

.list-clean li{
  margin-bottom:8px;
}

/* CTA BAND */
.cta-band{
  padding:50px 0;
  background:linear-gradient(135deg,#14233b,#1d314f);
  color:var(--white);
}

.cta-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:26px;
  align-items:center;
}

.cta-band .muted{
  color:rgba(255,255,255,.82);
}

/* FOOTER BASE */
.site-footer{
  background:#111a29;
  color:#dbe0e7;
  padding:46px 0;
  margin-top:46px;
}

.site-footer h3{
  color:var(--white);
  margin:0 0 10px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:24px;
}

.footer-brand{
  display:none !important;
}

.footer-brand img{
  width:44px;
  height:44px;
  object-fit:contain;
  filter:brightness(0) invert(1);
}

.tagline{
  color:var(--white);
  font-weight:700;
}

/* FINAL CTA + FOOTER */
.final-cta-band {
  background: #f5f2eb;
  color: #1d2430;
  padding: 72px 0 56px;
  margin: 0;
  border: 0;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 44px;
  align-items: center;
}

.final-cta-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #14233b;
}

.final-cta-copy p {
  margin: 0;
  max-width: 700px;
  color: #4a5360;
  font-size: 1rem;
  line-height: 1.7;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.btn-light-solid {
  background: #14233b;
  color: #ffffff;
  border: 1px solid #14233b;
}

.btn-light-solid:hover {
  background: #1d3153;
  color: #ffffff;
  border-color: #1d3153;
}

.btn-outline-light {
  background: transparent;
  color: #14233b;
  border: 1px solid rgba(20,35,59,0.35);
}

.btn-outline-light:hover {
  background: rgba(20,35,59,0.06);
  color: #14233b;
  border-color: #14233b;
}

.final-footer {
  background: #0b1d36;
  color: #ffffff;
  padding: 52px 0 38px;
  margin: 0;
  border-top: none;
}

.final-cta-band + .final-footer {
  margin-top: 0;
}

.final-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.2fr 1fr;
  gap: 34px;
  align-items: start;
}

.final-footer-col h3,
.final-footer-col h4 {
  margin: 0 0 12px;
  color: #ffffff;
}

.final-footer-col h3 {
  font-size: 1.95rem;
  line-height: 1.1;
}

.final-footer-col h4 {
  font-size: 1rem;
}

.final-footer-col p {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
}

.footer-agency-logo {
  display: none !important;
}

.footer-tagline {
  margin-top: 18px;
}

.brand-col {
  min-width: 0;
}

.final-cta-band::before,
.final-cta-band::after,
.final-footer::before,
.final-footer::after {
  display: none !important;
  content: none !important;
}

.footer-spacer,
.separator,
.section-separator,
.footer-divider {
  display: none !important;
}

/* FORMS */
.form-card{
  display:grid;
  gap:10px;
}

.form-card label{
  font-weight:700;
  font-size:.95rem;
  color:var(--accent);
}

.form-card input,
.form-card select,
.form-card textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:10px;
  padding:12px 14px;
  font:inherit;
  background:#fff;
  color:var(--text);
}

.form-card textarea{
  min-height:140px;
  resize:vertical;
}

/* RESPONSIVE */
@media (max-width:1180px){
  .header-inner{
    grid-template-columns:1fr;
    gap:16px;
  }

  .main-nav{
    justify-content:flex-start;
  }

  .header-right{
    justify-content:flex-start;
  }
}

@media (max-width:1100px) {
  .final-cta-grid,
  .final-footer-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-actions {
    align-items: flex-start;
  }
}

@media (max-width:1080px){
  .grid-4{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .card-target{
    min-height:auto;
  }

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

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

  .hero h1{
    font-size:clamp(2.3rem, 4vw, 3.8rem);
  }
}

@media (max-width:980px){
  .hero-grid{
    grid-template-columns:1fr;
  }

  .hero-visual{
    order:-1;
  }

  .hero-photo-frame{
    min-height:unset;
    padding:24px 18px 0;
  }

  .hero-photo{
    width:min(100%,300px);
    margin-top:8px;
  }
}

@media (max-width:768px) {
  .final-cta-band {
    padding: 54px 0 42px;
  }

  .final-footer {
    padding: 42px 0 28px;
  }

  .final-cta-copy h2 {
    font-size: 2.4rem;
  }
}

@media (max-width:720px){
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid{
    grid-template-columns:1fr;
  }

  h2{
    font-size:2rem;
    line-height:1.08;
  }

  h3{
    font-size:1.28rem;
  }

  .quote{
    font-size:1.18rem;
  }

  .lang-switch{
    gap:8px;
  }

  .lang-switch a{
    width:40px;
    height:40px;
  }

  .hero h1{
    font-size:2.55rem;
    line-height:1.03;
  }
}
