:root{
  --bg:#ffffff;
  --soft:#f8f3ec;
  --soft-2:#fbf8f3;
  --line:#e8ddcf;
  --text:#24211d;
  --muted:#6d655b;
  --gold:#b89458;
  --gold-deep:#9f7b3f;
  --shadow:0 18px 40px rgba(28, 22, 14, .07);
}
*{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.65;
}
h1,h2,h3{
  margin:0 0 14px;
  font-family:"Cormorant Garamond", Georgia, serif;
  line-height:1.02;
}
a{text-decoration:none}
p{margin:0 0 16px}
img{max-width:100%;display:block}
ul{margin:0;padding-left:20px}
li{margin:8px 0}
.wrap{
  width:min(1180px, 92%);
  margin:0 auto;
}
.floating-actions{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:50;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.floating-actions a{
  border-radius:999px;
  padding:12px 18px;
  font-weight:700;
  box-shadow:var(--shadow);
}
.float-call{
  background:var(--gold);
  color:#fff;
}
.float-quote{
  background:#fff;
  color:var(--text);
  border:1px solid var(--line);
}
.announcement{
  background:#f6eee2;
  border-bottom:1px solid var(--line);
  font-size:14px;
}
.announcement-inner{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  padding:12px 0;
}
.announcement a{color:var(--text)}
.main-nav{
  background:#fff;
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:40;
}
.nav-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:18px 0;
}
.brand-block{line-height:1.1}
.brand-name{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:36px;
  font-weight:700;
}
.brand-sub{
  color:var(--muted);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.14em;
}
.nav-links{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
}
.nav-links a{
  color:var(--text);
  font-weight:600;
}
.nav-btn{
  background:var(--gold);
  color:#fff;
  padding:12px 20px;
  border-radius:999px;
  font-weight:700;
}
.hero{
  background:linear-gradient(180deg, var(--soft-2), #fff 100%);
  padding:44px 0 72px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:46px;
  align-items:center;
}
.eyebrow{
  font-size:12px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold-deep);
  font-weight:700;
  margin-bottom:12px;
}
.hero h1{
  font-size:clamp(50px, 6vw, 86px);
  max-width:720px;
}
.hero-text{
  font-size:18px;
  color:var(--muted);
  max-width:620px;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:28px 0 24px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border-radius:999px;
  font-weight:700;
}
.btn.gold{
  background:var(--gold);
  color:#fff;
}
.btn.soft{
  background:#fff;
  color:var(--text);
  border:1px solid var(--line);
}
.trust-badges{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.trust-badges span{
  background:#fff;
  border:1px solid var(--line);
  color:var(--muted);
  border-radius:999px;
  padding:9px 14px;
  font-size:14px;
}
.hero-visual img{
  border-radius:34px;
  box-shadow:0 28px 70px rgba(30, 24, 17, .13);
}
.value-bar{
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.value-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  padding:22px 0;
}
.value-item strong{
  display:block;
  font-size:16px;
  margin-bottom:4px;
}
.value-item span{
  color:var(--muted);
  font-size:14px;
}
.section{
  padding:86px 0;
}
.soft-section{
  background:var(--soft);
}
.section-head{
  margin-bottom:34px;
}
.section-head.center{
  text-align:center;
}
.section-head h2{
  font-size:clamp(42px, 4.8vw, 70px);
  max-width:860px;
}
.section-head.center h2,
.section-head.center .section-text{
  margin-left:auto;
  margin-right:auto;
}
.section-text{
  color:var(--muted);
  max-width:760px;
}
.service-grid,
.fleet-grid,
.quote-grid,
.about-grid,
.experience-grid,
.testimonial-grid{
  display:grid;
  gap:24px;
}
.service-grid{
  grid-template-columns:repeat(4,1fr);
}
.service-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow);
}
.service-number{
  width:50px;
  height:50px;
  border-radius:50%;
  background:#f3e8d8;
  color:var(--gold-deep);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  margin-bottom:18px;
}
.service-card h3{
  font-size:32px;
}
.service-card p{
  color:var(--muted);
}
.experience-grid{
  grid-template-columns:1fr 1fr;
  align-items:center;
}
.experience-copy h2{
  font-size:clamp(44px, 4.8vw, 68px);
}
.experience-copy p,
.experience-copy li{
  color:var(--muted);
}
.panel-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  padding:30px;
  box-shadow:var(--shadow);
}
.panel-card h3{
  font-size:36px;
  margin-bottom:18px;
}
.panel-list{
  display:grid;
  gap:18px;
}
.panel-list strong{
  display:block;
  font-size:20px;
  margin-bottom:3px;
}
.panel-list span{
  color:var(--muted);
}
.fleet-grid{
  grid-template-columns:repeat(2,1fr);
}
.fleet-card{
  background:linear-gradient(180deg, #fff, #fbf7f1);
  border:1px solid var(--line);
  border-radius:30px;
  padding:30px;
  box-shadow:var(--shadow);
}
.fleet-top{
  display:flex;
  justify-content:flex-start;
  margin-bottom:8px;
}
.fleet-tag{
  background:#f0e3d0;
  color:var(--gold-deep);
  border-radius:999px;
  padding:8px 12px;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.fleet-card h3{
  font-size:40px;
}
.fleet-card p{
  color:var(--muted);
}
.fleet-card a{
  display:inline-block;
  margin-top:10px;
  color:var(--gold-deep);
  font-weight:700;
}
.testimonial-section{
  background:#fff;
}
.testimonial-grid{
  grid-template-columns:repeat(3,1fr);
}
.testimonial-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow);
}
.testimonial-card p{
  font-size:18px;
  color:var(--muted);
}
.testimonial-card strong{
  display:block;
  margin-top:16px;
}
.testimonial-card.featured{
  background:linear-gradient(180deg, #fff, #fbf5ea);
}
.quote-section{
  background:var(--soft);
}
.quote-grid{
  grid-template-columns:.95fr 1.05fr;
  align-items:start;
}
.quote-copy h2{
  font-size:clamp(44px, 4.8vw, 68px);
}
.quote-copy p{
  color:var(--muted);
}
.quote-points{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}
.quote-points span{
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:9px 14px;
  color:var(--muted);
  font-size:14px;
}
.quote-form{
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  padding:28px;
  display:grid;
  gap:14px;
  box-shadow:var(--shadow);
}
.quote-form label{
  display:grid;
  gap:8px;
  font-weight:600;
}
.quote-form input,
.quote-form select,
.quote-form textarea{
  width:100%;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid #dacdbb;
  font:inherit;
  background:#fff;
}
.quote-form button{
  border:0;
  border-radius:999px;
  min-height:54px;
  background:var(--gold);
  color:#fff;
  font-weight:700;
  font-size:16px;
  cursor:pointer;
}
.about-section{
  background:#fff;
}
.about-grid{
  grid-template-columns:.85fr 1.15fr;
  align-items:start;
}
.about-grid h2{
  font-size:clamp(44px, 4.8vw, 66px);
}
.about-grid p{
  color:var(--muted);
}
.cta-band{
  background:#f5ecdf;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.cta-band-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:34px 0;
}
.cta-band h2{
  font-size:clamp(38px, 4vw, 58px);
}
.cta-band-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.footer{
  background:#fff;
  padding:34px 0 50px;
}
.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.footer h3{
  font-size:38px;
}
.footer a{
  color:var(--text);
}
@media (max-width: 1100px){
  .service-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .value-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media (max-width: 920px){
  .hero-grid,
  .experience-grid,
  .fleet-grid,
  .quote-grid,
  .about-grid,
  .testimonial-grid{
    grid-template-columns:1fr;
  }
  .nav-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .nav-links{
    gap:16px;
  }
}
@media (max-width: 640px){
  .announcement-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .service-grid,
  .value-grid{
    grid-template-columns:1fr;
  }
  .hero{
    padding:28px 0 56px;
  }
  .section{
    padding:64px 0;
  }
  .floating-actions{
    left:12px;
    right:12px;
    bottom:12px;
    flex-direction:row;
  }
  .floating-actions a{
    flex:1;
    text-align:center;
  }
}
