:root{
--deep-green:#0F3B3F;
--menu-green:#0B1617;
--menu-footer-bg:#0F3B3F;
--gold:#B69163;
--gold-hover:#9f7c52;
--champagne:#EEE7DD;
--ivory:#FBF9F4;
--charcoal:#2E2E2E;
--title-color:#b89b6a;
--subtitle-color:#EEE7DD;
--title-font:Inter,sans-serif;
--title-size:clamp(1.65rem, 2.4vw, 2.2rem);
--subtitle-font:Inter,sans-serif;
--subtitle-size:.82rem;
--transition:all .3s ease;
--shadow:0 14px 30px rgba(0,0,0,0.12);
--scroll-progress:0%;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Inter,sans-serif;
background:var(--ivory);
color:var(--charcoal);
line-height:1.6;
text-rendering:optimizeLegibility;
overflow-x:hidden;
}

body::before{
content:"";
position:fixed;
inset:0;
pointer-events:none;
z-index:-1;
background:
  radial-gradient(900px 450px at 82% -8%, rgba(182,145,99,0.14), transparent 60%),
  radial-gradient(700px 350px at 8% 105%, rgba(182,145,99,0.08), transparent 58%);
}

h1,h2,h3,h4{
font-family:var(--title-font) !important;
font-size:var(--title-size) !important;
color:var(--title-color) !important;
line-height:1.2;
font-weight:600;
letter-spacing:0.2px;
}

.tag,
.section-header span,
.section-tag,
.hero-map-intro h2{
font-family:var(--subtitle-font) !important;
font-size:var(--subtitle-size) !important;
color:var(--subtitle-color) !important;
line-height:1.2;
letter-spacing:2px;
text-transform:uppercase;
font-weight:600;
}

.container{
width:min(1200px,90%);
margin:auto;
}

header{
position:fixed;
width:100%;
top:0;
z-index:999;
background:var(--menu-footer-bg) !important;
backdrop-filter:blur(20px);
transition:background .25s ease, box-shadow .25s ease;
}

header::after{
content:"";
position:absolute;
left:0;
top:100%;
height:2px;
width:var(--scroll-progress);
background:linear-gradient(90deg, var(--gold), #d8b98f);
transition:width .08s linear;
}

header.is-scrolled{
box-shadow:0 10px 26px rgba(0,0,0,0.32);
}

.navbar{
min-height:90px;
display:flex;
align-items:center;
justify-content:space-between;
padding:16px 0;
flex-wrap:wrap;
gap:12px;
}

.logo{
display:flex;
align-items:center;
text-decoration:none;
}

.logo img{
height:48px;
width:auto;
display:block;
}

.desktop-nav .menu{
display:flex;
list-style:none;
gap:35px;
}

.menu-toggle{
display:flex;
flex-direction:column;
justify-content:center;
gap:5px;
width:44px;
height:44px;
background:rgba(255,255,255,0.12);
border:1px solid rgba(216,185,143,0.45);
backdrop-filter:blur(6px);
border-radius:10px;
padding:10px;
cursor:pointer;
}

.menu-toggle span{
height:2px;
background:white;
border-radius:2px;
}

.mobile-nav{
display:none;
position:absolute;
top:100%;
left:0;
right:0;
background:var(--menu-footer-bg) !important;
backdrop-filter:blur(10px);
padding:20px;
margin-top:10px;
transform-origin:top;
}

.mobile-nav.active{
display:block;
animation:mobileDrop .22s ease both;
}

@keyframes mobileDrop{
  from{opacity:0; transform:translateY(-8px) scaleY(0.96);} 
  to{opacity:1; transform:translateY(0) scaleY(1);} 
}

.mobile-nav .menu{
display:flex;
flex-direction:column;
gap:16px;
}

@media (max-width: 767px){
  .navbar{
    min-height:76px;
    padding:12px 0;
  }

  .logo img{
    height:40px;
  }

  .menu-toggle{
    display:flex;
    width:40px;
    height:40px;
    padding:9px;
  }

  .desktop-nav{
    display:none;
  }

  .mobile-nav{
    display:none;
    padding:16px;
    margin-top:8px;
  }

  .mobile-nav.active{
    display:block;
  }

  .mobile-nav .menu{
    gap:12px;
  }

  .btn-header{
    width:42px;
    height:42px;
    font-size:1.05rem;
  }
}

@media (min-width: 768px){
  .menu-toggle{
    display:none;
  }

  .mobile-nav{
    display:none !important;
  }

  .desktop-nav{
    display:block;
  }
}

.menu a{
color:white;
text-decoration:none;
font-weight:500;
transition:color .25s ease;
position:relative;
}

.menu a:hover{
color:var(--champagne);
}

.menu a.is-active{
color:var(--champagne);
}

.mobile-nav .menu a{
display:inline-flex;
align-self:flex-start;
padding:6px 10px;
border-radius:999px;
width:max-content;
}

.mobile-nav .menu a.is-active{
background:rgba(255,255,255,0.08);
box-shadow:inset 0 0 0 1px rgba(182,145,99,0.28);
}

.menu a::after{
content:"";
position:absolute;
left:0;
right:0;
bottom:-8px;
height:2px;
background:linear-gradient(90deg, transparent, var(--gold), transparent);
transform:scaleX(0);
transform-origin:center;
transition:transform .25s ease;
}

.menu a:hover::after{
transform:scaleX(1);
}

.menu a.is-active::after{
transform:scaleX(1);
}

.btn-header{
display:inline-flex;
align-items:center;
justify-content:center;
width:48px;
height:48px;
border-radius:50%;
background:var(--gold);
color:white;
text-decoration:none;
font-size:1.25rem;
transition:var(--transition);
}

.btn-header:hover{
background:var(--gold-hover);
transform:translateY(-2px);
}

.hero{
min-height:100vh;
display:flex;
align-items:center;
padding:140px 0 80px;
background:
    linear-gradient(rgba(22,42,43,.75), rgba(22,42,43,.8)),
    url('../img/01-Hero/hero01.png') center/cover no-repeat;
  position:relative;
  overflow:hidden;
  }

  .hero::after{
  content:"";
  position:absolute;
  width:640px;
  height:640px;
  right:-220px;
  top:-180px;
  background:radial-gradient(circle, rgba(182,145,99,0.26), rgba(182,145,99,0));
  pointer-events:none;
}

.hero-grid{
display:grid;
grid-template-columns:1fr;
gap:32px;
align-items:center;
}

@media (max-width: 767px){
  .hero-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .hero-content{
    order:2;
    text-align:center;
  }

  .hero-image{
    order:1;
  }

  .hero-image img{
    width:min(180px,100%);
  }

  .hero-buttons{
    align-items:center;
  }

  .hero h1{
    font-size:1.95rem;
  }

  .hero-highlight{
    white-space:normal;
    display:block;
  }

  .hero-buttons{
    margin-top:28px;
    gap:12px;
  }
}

@media (min-width: 768px){
  .hero-grid{
    grid-template-columns:minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap:40px;
    align-items:center;
  }

  .hero-content{
    max-width:560px;
  }
}

.hero-image{
order:2;
}

.hero-content{
order:1;
}

.hero-content{
color:white;
position:relative;
z-index:1;
}

.tag{
display:inline-block;
padding:8px 12px;
color:var(--gold);
text-transform:uppercase;
letter-spacing:2px;
font-size:0.8rem;
border:1px solid #d8b98f;
background:rgba(255,255,255,0.06);
backdrop-filter:blur(4px);
box-shadow:inset 0 0 0 1px rgba(216,185,143,0.18);
}

.hero h1{
font-size:clamp(2rem, 5.2vw, 2.9rem);
line-height:1.1;
font-family:Inter,sans-serif;
margin:20px 0;
font-weight:700;
max-width:680px;
white-space:normal;
}

.hero h1 span{
color:var(--gold);
}

.hero-highlight{
color:#f2d8a6;
font-style:italic;
font-weight:700;
display:inline-block;
margin-top:6px;
white-space:nowrap;
}

.hero p{
line-height:1.8;
max-width:500px;
color:#f4ecdf;
font-size:clamp(1rem, 2.6vw, 1.06rem);
}

.hero-buttons{
display:flex;
flex-direction:column;
align-items:center;
gap:14px;
margin-top:40px;
width:100%;
}

.hero-buttons a{
min-width:210px;
}

.btn-primary{
background:var(--gold);
padding:16px 30px;
color:white;
text-decoration:none;
border-radius:999px;
display:inline-flex;
align-items:center;
justify-content:center;
font-weight:600;
letter-spacing:0.5px;
transition:all .3s ease;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.btn-outline,
.btn-secondary{
border:1px solid #1f4d4a;
padding:16px 30px;
color:white;
text-decoration:none;
border-radius:999px;
display:inline-flex;
align-items:center;
justify-content:center;
font-weight:600;
letter-spacing:0.5px;
transition:all .3s ease;
background:transparent;
}

.btn-primary:hover,
.btn-outline:hover,
.btn-secondary:hover{
transform:translateY(-2px);
box-shadow:0 14px 28px rgba(0,0,0,0.25);
}

.btn-primary:focus-visible,
.btn-outline:focus-visible,
.btn-secondary:focus-visible,
.menu a:focus-visible,
.btn-header:focus-visible,
.cta input:focus-visible,
.cta textarea:focus-visible,
.cta button:focus-visible{
outline:2px solid var(--champagne);
outline-offset:3px;
}

.hero-image{
display:flex;
justify-content:center;
align-items:center;
background:transparent;
order:1;
}

.hero-image img{
width:min(220px,100%);
height:auto;
border-radius:20px;
object-fit:contain;
box-shadow:none;
}

.stats{
padding:24px 0;
background:var(--deep-green);
position:relative;
overflow:hidden;
}

.stats::before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
transform:translateX(-100%);
animation:shineStats 2.6s ease-in-out infinite;
pointer-events:none;
}

.stats h2{
font-size:3rem;
color:white;
font-family:Inter,sans-serif;
position:relative;
display:inline-block;
animation:rollNumber 2.2s cubic-bezier(.2,.8,.2,1) both;
font-variant-numeric:tabular-nums;
}

@keyframes rollNumber{
  0%{opacity:0; transform:translateY(-40px) scale(0.88);} 
  25%{opacity:0.4; transform:translateY(-16px) scale(0.96);} 
  55%{opacity:1; transform:translateY(8px) scale(1.03);} 
  100%{opacity:1; transform:translateY(0) scale(1);} 
}

@keyframes shineStats{
  0%{transform:translateX(-100%);} 
  100%{transform:translateX(100%);} 
}

.stats-grid{
display:grid;
grid-template-columns:1fr;
gap:20px;
text-align:center;
}

.stats-grid > div{
padding:8px 6px;
border-radius:14px;
background:rgba(255,255,255,0.08);
border:1px solid rgba(255,255,255,0.12);
backdrop-filter:blur(2px);
}

.stats h2{
font-size:3rem;
color:white;
font-family:Inter,sans-serif;
font-variant-numeric:tabular-nums;
}

.stats p{
color:#f6f0e6;
text-transform:uppercase;
letter-spacing:2px;
font-size:0.85rem;
font-weight:600;
}

.hero-map-highlight{
padding:28px 0;
background:var(--deep-green);
}

.hero-map-highlight-content{
background:transparent;
border:1px solid rgba(22,42,43,0.08);
border-radius:18px;
padding:12px;
box-shadow:0 12px 28px rgba(0,0,0,0.08);
}

.hero-map-intro{
text-align:center;
padding:14px 10px 8px;
background-color:var(--deep-green);
border-radius:14px;
border:1px solid rgba(182,145,99,0.35);
}

.hero-map-intro h2{
font-family:Inter,sans-serif;
font-size:.82rem;
font-weight:600;
text-transform:uppercase;
letter-spacing:2px;
color:rgba(255,255,255,0.9);
margin-bottom:8px;
}

.hero-map-intro h3{
font-size:2rem;
line-height:1.5;
color:#b89b6a;
margin-bottom:14px;
font-weight:600;
}

.hero-map-intro p{
max-width:920px;
margin:0 auto 10px;
line-height:1.75;
color:#f6f0e6;
text-align:justify;
text-wrap:pretty;
}

.hero-map-intro p strong{
color:var(--gold);
}

.hero-map-divider{
width:min(720px, 92%);
height:1px;
margin:16px auto 18px;
background:linear-gradient(90deg, rgba(22,42,43,0) 0%, rgba(22,42,43,0.35) 50%, rgba(22,42,43,0) 100%);
}

.hero-map-highlight-content > img{
width:100%;
height:auto;
aspect-ratio:1200 / 507;
display:block;
border-radius:12px;
object-fit:contain;
object-position:center;
background:#e9e0d1;
}

.hero-map-qualities-title{
font-family:Inter,sans-serif;
font-size:2rem;
text-align:center;
background:transparent;
color:#b89b6a;
margin:28px 0 18px;
}

.hero-map-qualities-divider{
width:min(640px, 88%);
background:var(--champagne);
margin:0 auto 16px;
background:linear-gradient(90deg, rgba(182,145,99,0) 0%, rgba(182,145,99,0.5) 50%, rgba(182,145,99,0) 100%);
}

.hero-map-essence-material{
margin:22px 0 0;
}

.hero-map-qualities-grid{
display:grid;
grid-template-columns:1fr;
gap:12px;
}

.hero-map-quality-item{
background:var(--menu-green);
color:var(--ivory);
border-radius:14px;
padding:16px 14px;
min-height:138px;
text-align:center;
border:1px solid rgba(22,42,43,0.18);
box-shadow:var(--shadow);
transition:transform .25s ease, box-shadow .25s ease;
}

.hero-map-quality-item:hover{
transform:translateY(-3px);
box-shadow:0 18px 34px rgba(0,0,0,0.18);
}

.hero-map-quality-item h4{
font-family:Inter,sans-serif !important;
font-size:1rem !important;
line-height:1.35;
margin-bottom:8px;
color:var(--gold) !important;
}

.hero-map-quality-item p{
font-size:0.95rem;
line-height:1.6;
color:var(--ivory);
}

.about,
.portfolio,
.testimonials,
.cta{
padding:44px 0;
}

.process{
background:var(--deep-green);
padding:32px 0 14px;
}

.process .container{
background:transparent;
border:none;
border-radius:24px;
padding:28px 20px;
box-shadow:none;
}

.process .section-header span{
color:var(--champagne);
}

.process .section-header h2{
color:#b89b6a;
}

.about-story{
padding:100px 0 40px;
background:linear-gradient(135deg, rgba(22,42,43,0.95), rgba(22,42,43,0.8));
}

.about-story-content{
display:flex;
justify-content:center;
}

.about-story .about-overlay{
margin:0;
max-width:900px;
}

.about-grid{
display:grid;
grid-template-columns:1fr;
gap:24px;
align-items:center;
}

.about-top{
display:grid;
grid-template-columns:1fr;
gap:0;
}

.about-top-content{
display:grid;
grid-template-columns:1fr;
gap:0;
background:var(--menu-green);
border-radius:14px;
overflow:hidden;
box-shadow:var(--shadow);
}

.about-top-image{
display:flex;
align-items:center;
justify-content:center;
background:var(--menu-green);
padding:0;
}

.about-top-image img{
width:100%;
height:100%;
min-height:360px;
max-height:420px;
object-fit:cover;
object-position:center;
display:block;
}

.about-intro{
display:flex;
align-items:center;
justify-content:center;
text-align:left;
background:var(--menu-green);
color:var(--ivory);
padding:24px 28px;
}

.about-intro-title h2{
font-family:Inter,sans-serif;
font-size:2.2rem;
margin-top:-22px;
margin-bottom:14px;
text-align:center;
color:#b89b6a;
}

.about-intro-title p{
color:var(--ivory);
margin-bottom:12px;
line-height:1.7;
text-align:justify;
text-wrap:pretty;
}

.about-intro-title .section-tag{
display:block;
text-align:center;
text-transform:uppercase;
margin-top:-8px;
margin-bottom:14px;
letter-spacing:3px;
color:var(--ivory);
}

.about-gallery-four{
display:grid;
grid-template-columns:repeat(2, minmax(0, 1fr));
gap:12px;
width:100%;
}

.about-card{
position:relative;
overflow:hidden;
border-radius:12px;
box-shadow:var(--shadow);
display:flex;
align-items:center;
justify-content:center;
background:#f4efe8;
min-height:220px;
}

.about-card img{
width:100%;
height:100%;
object-fit:cover;
object-position:center;
display:block;
border-radius:12px;
}


.about-content{
position:relative;
margin-top:-140px;
z-index:2;
padding:0 20px;
}

.about-overlay{
background:rgba(22, 42, 43, 0.68);
backdrop-filter:blur(8px);
padding:28px 32px;
border-radius:16px;
box-shadow:var(--shadow);
color:#f9f7f2;
max-width:720px;
margin:0 auto;
}

.about-overlay h2,
.about-overlay .section-tag{
color:#f9f7f2;
}

.about-overlay p{
color:#f2e9dc;
}

.section-header{
text-align:center;
margin-bottom:36px;
max-width:760px;
margin-left:auto;
margin-right:auto;
}

.section-header span{
color:rgba(255,255,255,0.9);
text-transform:uppercase;
letter-spacing:2px;
font-weight:600;
font-size:.82rem;
}

.section-header h2{
font-family:Inter,sans-serif;
font-size:3rem;
margin-top:10px;
color:white;
line-height:1.1;
}

.process-grid{
display:grid;
grid-template-columns:1fr;
gap:18px;
}

.step{
text-align:center;
background:var(--menu-green);
border:1px solid rgba(182,145,99,0.45);
padding:28px 20px;
border-radius:14px;
color:var(--deep-green);
box-shadow:var(--shadow);
transition:transform .25s ease, box-shadow .25s ease;
}

.step:hover{
transform:translateY(-3px);
box-shadow:0 18px 34px rgba(0,0,0,0.2);
}

.step h3{
font-size:4rem !important;
color:#f6f0e6 !important;
margin-bottom:10px;
}

.step h4{
font-family:Inter,sans-serif !important;
font-size:1.08rem !important;
line-height:1.35;
margin-bottom:10px;
color:#d8b98f !important;
}

.step p{
font-size:0.95rem;
line-height:1.6;
color:#f6f0e6;
}

.portfolio{
background:var(--deep-green);
padding:14px 0 12px;
}

.portfolio .container{
background:transparent;
border:1px solid rgba(22,42,43,0.1);
border-radius:24px;
padding:28px 20px;
box-shadow:0 14px 30px rgba(0,0,0,0.08);
}

.portfolio .section-header span,
.portfolio h2{
color:#f6f0e6;
}

.portfolio .section-header h2{
color:#b89b6a;
}

.portfolio-grid{
display:grid;
grid-template-columns:1fr;
gap:20px;
background:transparent;
padding:12px;
border-radius:16px;
}

.portfolio-item{
overflow:hidden;
border-radius:14px;
background:#fff;
position:relative;
}

.portfolio-item::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(180deg, rgba(11,22,23,0) 35%, rgba(11,22,23,0.38) 100%);
opacity:0;
transition:opacity .35s ease;
pointer-events:none;
}

.portfolio-item img{
width:100%;
height:180px;
object-fit:cover;
display:block;
transition:.7s;
will-change:transform;
}

.portfolio-item:hover img{
transform:scale(1.03);
}

.portfolio-item:hover::after{
opacity:1;
}

.portfolio img{
width:100%;
height:450px;
object-fit:cover;
border-radius:8px;
}

.testimonials{
background:var(--deep-green);
padding:16px 0 32px;
}

.testimonials .container{
background:transparent;
border:none;
border-radius:24px;
padding:28px 20px;
box-shadow:none;
}

.testimonials .section-header span{
color:var(--champagne);
}

.testimonials .section-header h2{
color:#b89b6a;
}

.testimonial-grid{
display:flex;
flex-wrap:wrap;
gap:24px;
align-items:stretch;
}

.testimonial-grid .card{
flex:1 1 100%;
margin:0;
}

.card{
background:var(--menu-green);
border:1px solid rgba(182,145,99,0.38);
padding:30px 24px;
box-shadow:var(--shadow);
backdrop-filter:blur(8px);
color:white;
min-height:100%;
border-radius:14px;
transition:transform .25s ease, box-shadow .25s ease;
will-change:transform;
}

.card:hover{
transform:translateY(-3px);
box-shadow:0 18px 34px rgba(0,0,0,0.2);
}

.card p{
line-height:1.7;
font-size:0.95rem;
text-wrap:pretty;
}

@media (min-width: 640px){
  .hero-buttons{
    flex-direction:row;
  }

  .stats-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .about-gallery-four{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .process-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid .card{
    flex:1 1 calc(50% - 12px);
  }

  .hero-map-qualities-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px){
  .menu{
    display:flex;
  }

  .navbar{
    height:90px;
    padding:0;
  }

  .hero-grid{
    grid-template-columns:1fr 1fr;
    gap:80px;
  }

  .hero-content{
    order:2;
  }

  .hero-image{
    order:1;
  }

  .hero-image img{
    width:min(420px,100%);
  }

  .stats-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .hero-map-highlight{
    padding:36px 0;
  }

  .hero-map-highlight-content{
    padding:18px;
  }

  .hero-map-intro h3{
    font-size:2.35rem;
  }

  .hero-map-qualities-grid{
    grid-template-columns:repeat(5, minmax(0, 1fr));
  }

  .hero-map-qualities-title{
    font-size:2.2rem;
    margin:34px 0 20px;
  }

  .about-top-content{
    grid-template-columns:1.2fr 1fr;
  }

  .about-gallery-four{
    grid-template-columns:repeat(4, minmax(0, 1fr));
  }

  .process-grid{
    grid-template-columns:repeat(5, minmax(0, 1fr));
  }

  .portfolio-grid{
    grid-template-columns:repeat(5, minmax(0, 1fr));
  }

  .testimonial-grid .card{
    flex:1 1 calc(25% - 18px);
  }
}

.stars{
color:#d9b878;
font-size:1.2rem;
display:block;
margin-bottom:16px;
}

.card p{
color:#f4ecdf;
}

.card h4{
font-family:Inter,sans-serif !important;
font-size:0.98rem !important;
line-height:1.4;
font-weight:600;
text-transform:none;
color:#d8b98f;
}

.testimonial-grid .card h4{
margin-top:4px;
}
.map-section{
padding:0 0 44px;
background:var(--deep-green);
}

.map-card{
background:transparent;
border:1px solid rgba(182,145,99,0.38);
border-radius:24px;
overflow:hidden;
box-shadow:var(--shadow);
display:grid;
gap:24px;
padding:24px;
}

.map-info{
color:#f6f0e6;
}

.map-info h2{
font-family:Inter,sans-serif;
font-size:2.1rem;
margin:10px 0 12px;
color:#b89b6a;
}

.map-info p{
line-height:1.7;
margin-bottom:16px;
color:#f6f0e6;
text-align:justify;
}

.map-info ul{
list-style:none;
display:grid;
gap:10px;
padding:0;
margin:0;
}

.map-info li{
line-height:1.6;
color:#f6f0e6;
}

.map-frame{
min-height:320px;
border-radius:18px;
overflow:hidden;
background:var(--menu-green);
}

.map-frame img{
width:100%;
height:100%;
min-height:320px;
object-fit:cover;
display:block;
}

.map-frame iframe{
width:100%;
height:100%;
min-height:320px;
border:0;
display:block;
}

.form-status{
min-height:1.4em;
margin:12px 0 0;
font-size:0.95rem;
font-weight:500;
color:var(--champagne);
opacity:0;
transition:opacity .25s ease;
}

.form-status.is-visible{
opacity:1;
}

.form-status.is-error{
color:#ffcfb2;
}

.form-status.is-success{
color:#dcebdc;
}

@media (min-width: 768px){
  .map-card{
    grid-template-columns:0.95fr 1.05fr;
    align-items:center;
    padding:32px;
  }
}
.cta{
background:var(--deep-green);
color:white;
text-align:center;
padding:18px 0;
}

.cta form{
max-width:700px;
margin:auto;
display:grid;
gap:15px;
margin-top:16px;
text-align:left;
}

.cta-form-grid{
display:grid;
grid-template-columns:1fr;
gap:var(--cta-form-gap, 15px);
}

.cta-form-left{
display:grid;
gap:var(--cta-form-gap, 15px);
}

.cta-form-right{
display:flex;
}

.cta-proof{
display:inline-flex;
align-items:center;
justify-content:center;
gap:8px;
margin-top:10px;
font-size:0.92rem;
color:var(--champagne);
opacity:.96;
}

.cta input,
.cta textarea{
padding:16px;
border:none;
border-radius:10px;
border:1px solid rgba(182,145,99,0.38);
background:rgba(255,255,255,0.98);
font-family:Inter,sans-serif;
font-size:1.08rem;
line-height:1.4;
min-height:var(--cta-control-min-height, 68px);
appearance:none;
}

.cta textarea{
height:170px;
resize:vertical;
}

.cta-form-right textarea{
width:100%;
height:auto;
min-height:170px;
}

.cta button{
padding:16px;
background:var(--gold);
color:white;
border:none;
cursor:pointer;
border-radius:10px;
font-weight:600;
transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
justify-self:center;
min-width:220px;
}

.cta button:hover{
background:var(--gold-hover);
transform:translateY(-2px);
box-shadow:0 14px 28px rgba(0,0,0,0.2);
}

.cta button:disabled{
opacity:.75;
cursor:not-allowed;
transform:none;
box-shadow:none;
}

.site-footer{
background:var(--menu-footer-bg) !important;
padding:70px 0 30px;
color:white;
}

.footer-top{
height:1px;
background:linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
margin-bottom:40px;
}

.footer-grid{
display:grid;
grid-template-columns:1fr;
gap:32px;
align-items:start;
}

@media (min-width: 768px){
  .footer-grid{
    grid-template-columns:1.2fr 1fr 1fr;
  }
}

.footer-column h3{
font-family:Inter,sans-serif;
font-size:1.5rem;
margin-bottom:18px;
color:var(--gold);
}

.footer-column ul{
list-style:none;
padding:0;
margin:0;
display:flex;
flex-direction:column;
gap:12px;
}

.footer-column li{
display:flex;
align-items:flex-start;
gap:10px;
line-height:1.6;
color:rgba(255,255,255,0.9);
}

.footer-icon{
display:inline-flex;
align-items:center;
justify-content:center;
min-width:20px;
margin-top:2px;
color:var(--gold);
font-size:1rem;
}

.footer-column a{
color:inherit;
text-decoration:none;
transition:color .25s ease;
}

.footer-column a:hover{
color:var(--champagne);
}

.footer-brand img{
width:180px;
height:auto;
display:block;
}

.footer-bottom{
margin-top:35px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,0.15);
text-align:center;
color:rgba(255,255,255,0.75);
}

.reveal-on-scroll{
opacity:0;
transform:translateY(22px);
transition:opacity .55s ease, transform .55s ease;
will-change:opacity, transform;
}

.reveal-on-scroll.is-visible{
opacity:1;
transform:translateY(0);
}

.reveal-on-scroll.reveal-delay-1{transition-delay:.08s;}
.reveal-on-scroll.reveal-delay-2{transition-delay:.16s;}
.reveal-on-scroll.reveal-delay-3{transition-delay:.24s;}
.reveal-on-scroll.reveal-delay-4{transition-delay:.32s;}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }

  .reveal-on-scroll{
    opacity:1;
    transform:none;
  }
}

@media (max-width: 768px){
  .hero-map-highlight{
    padding:20px 0;
  }

  .hero-map-highlight-content{
    padding:10px;
  }

  .hero-map-intro{
    padding:12px 10px 8px;
  }

  .hero-map-intro h3{
    font-size:1.55rem;
    line-height:1.35;
    margin-bottom:12px;
  }

  .hero-map-intro p{
    line-height:1.65;
    margin-bottom:8px;
  }

  .hero-map-qualities-title{
    font-size:1.55rem;
    margin:18px 0 14px;
  }

  .hero-map-quality-item{
    min-height:auto;
    padding:14px 12px;
  }

  .hero-map-quality-item h4{
    font-size:0.95rem !important;
  }

  .hero-map-quality-item p{
    font-size:0.9rem;
  }

  .hero-map-highlight-content > img{
    border-radius:10px;
  }

  .about-top-content{
    border-radius:12px;
  }

  .about-top-image img{
    min-height:220px;
    max-height:260px;
  }

  .about-intro{
    padding:18px 16px;
  }

  .about-intro-title h2{
    font-size:1.7rem;
    margin-top:0;
    margin-bottom:10px;
  }

  .about-intro-title p{
    line-height:1.62;
    margin-bottom:10px;
  }

  .testimonials .container{
    padding:22px 16px;
  }

  .testimonial-grid{
    gap:16px;
  }

  .card{
    padding:24px 20px;
  }

  .map-card{
    gap:16px;
    padding:16px;
  }

  .map-info h2{
    font-size:1.8rem;
    margin:8px 0 10px;
  }

  .map-info p{
    margin-bottom:12px;
  }

  .map-info ul{
    gap:8px;
  }

  .map-frame,
  .map-frame iframe{
    min-height:220px;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-brand img{
    width:140px;
  }

  .hero::after{
    width:420px;
    height:420px;
    right:-160px;
    top:-120px;
  }

  .stats::before{
    animation:none;
    opacity:.35;
  }

  .stats h2{
    animation:none;
  }

  .reveal-on-scroll{
    transform:translateY(14px);
    transition-duration:.42s;
  }

  .hero-content{
    padding:0;
  }

  .cta form{
    text-align:center;
  }

  .cta button{
    justify-self:center;
    width:100%;
    max-width:320px;
  }
}

@media (min-width: 768px){
  .cta form{
    max-width:980px;
    --cta-form-gap:15px;
    --cta-control-min-height:68px;
  }

  .cta-form-grid{
    grid-template-columns:1fr 1fr;
    align-items:stretch;
  }

  .cta-form-right textarea{
    min-height:calc((var(--cta-control-min-height) * 3) + (var(--cta-form-gap) * 2));
    height:100%;
  }
}
