:root{
  --bg:#f6f0e8;
  --bg-soft:#efe4d7;
  --panel:#ffffff;
  --text:#4c3b31;
  --muted:#7b6759;
  --line:#e3d6c8;
  --accent:#8c6b52;
  --accent-dark:#6f5440;
  --max:1200px;
  --radius-xl:34px;
  --radius-lg:26px;
  --radius-md:18px;
  --shadow:0 18px 40px rgba(76,59,49,.08);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

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

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

a{
  color:var(--accent-dark);
  text-decoration:none;
}

a:hover{
  text-decoration:underline;
}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(246,240,232,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(140,107,82,.08);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  min-height:82px;
}

.brand{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.brand-kicker{
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
}

.brand-title{
  font-size:22px;
  line-height:1.1;
  font-weight:500;
  color:var(--text);
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.nav a{
  color:var(--text);
  font-size:15px;
  text-decoration:none;
}

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 24px;
  border-radius:999px;
  border:1px solid transparent;
  font-size:15px;
  font-weight:600;
  text-decoration:none;
  transition:.2s ease;
  cursor:pointer;
}

.btn-primary{
  background:var(--accent);
  color:#fff !important;
}

.btn-primary:hover{
  background:var(--accent-dark);
  text-decoration:none;
}

.btn-secondary{
  background:transparent;
  border-color:var(--line);
  color:var(--text) !important;
}

.btn-secondary:hover{
  border-color:var(--accent);
  text-decoration:none;
}

.hero{
  padding:38px 0 72px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:44px;
  align-items:center;
}

.hero-copy{
  padding:22px 0;
}

.eyebrow{
  margin:0 0 16px 0;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--muted);
}

.hero h1,
.page-hero h1{
  margin:0 0 20px 0;
  font-size:58px;
  line-height:1.03;
  font-weight:500;
  letter-spacing:-.02em;
}

.hero p.lead,
.page-hero p.lead{
  margin:0 0 18px 0;
  font-size:18px;
  line-height:1.85;
  color:#5b493d;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.hero-visual{
  position:relative;
}

.hero-image{
  overflow:hidden;
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow);
  min-height:680px;
  background:#d7c5b2;
}

.hero-image img{
  width:100%;
  height:680px;
  object-fit:cover;
}

.hero-image-puzzle img{
  object-position:center center;
}

.floating-card{
  position:absolute;
  left:-18px;
  bottom:30px;
  max-width:320px;
  background:rgba(255,255,255,.95);
  border:1px solid rgba(140,107,82,.08);
  box-shadow:0 14px 32px rgba(76,59,49,.10);
  border-radius:24px;
  padding:22px;
}

.floating-card strong{
  display:block;
  margin-bottom:8px;
  font-size:18px;
  line-height:1.3;
}

.floating-card p{
  margin:0;
  font-size:15px;
  line-height:1.7;
  color:var(--muted);
}

.section{
  padding:88px 0;
}

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

.section-head{
  max-width:820px;
  margin-bottom:34px;
}

.section-head .eyebrow{
  margin-bottom:10px;
}

.section-head h2{
  margin:0 0 16px 0;
  font-size:44px;
  line-height:1.08;
  font-weight:500;
}

.section-head p{
  margin:0;
  font-size:17px;
  line-height:1.8;
  color:#5b493d;
}

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

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

.card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:30px;
  box-shadow:0 12px 30px rgba(76,59,49,.05);
}

.card h3{
  margin:0 0 14px 0;
  font-size:26px;
  line-height:1.25;
  font-weight:500;
}

.card p{
  margin:0 0 14px 0;
  font-size:16px;
  line-height:1.8;
  color:#655347;
}

.card p:last-child{
  margin-bottom:0;
}

.clean-list{
  margin:16px 0 0 0;
  padding:0;
  list-style:none;
}

.clean-list li{
  position:relative;
  padding-left:18px;
  margin-bottom:10px;
  color:var(--text);
}

.clean-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.75em;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--accent);
  transform:translateY(-50%);
}

.page-hero{
  padding:60px 0 40px 0;
}

.info-band{
  background:linear-gradient(135deg,#ede1d3 0%,#f8f3ec 100%);
  border:1px solid var(--line);
  border-radius:var(--radius-xl);
  padding:40px;
}

.contact-block{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
}

.contact-card{
  background:rgba(255,255,255,.85);
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
}

.contact-card p{
  margin:0 0 12px 0;
}

.site-footer{
  padding:30px 0 42px 0;
  border-top:1px solid rgba(140,107,82,.10);
  background:#f3ece4;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  font-size:14px;
  color:var(--muted);
}

.footer-nav{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.table-like{
  display:grid;
  gap:14px;
}

.table-row{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:18px;
  padding:18px 0;
  border-top:1px solid var(--line);
}

.table-row:first-child{
  border-top:none;
  padding-top:0;
}

.label{
  font-weight:700;
  color:var(--text);
}

.legal-copy{
  max-width:900px;
}

.legal-copy p{
  margin:0 0 16px 0;
  font-size:16px;
  line-height:1.85;
  color:#5f4d42;
}

.legal-copy h2{
  margin:34px 0 14px 0;
  font-size:28px;
  line-height:1.2;
  font-weight:500;
}

@media (max-width:1050px){
  .hero-grid,
  .grid-3,
  .grid-2,
  .contact-block{
    grid-template-columns:1fr;
  }

  .hero h1,
  .page-hero h1{
    font-size:46px;
  }

  .hero-image,
  .hero-image img{
    min-height:520px;
    height:520px;
  }

  .floating-card{
    left:18px;
    right:18px;
    bottom:18px;
    max-width:none;
  }
}

@media (max-width:760px){
  .container{
    width:min(var(--max), calc(100% - 28px));
  }

  .header-inner{
    padding:10px 0;
    align-items:flex-start;
    flex-direction:column;
  }

  .nav{
    gap:14px;
  }

  .hero,
  .section,
  .page-hero{
    padding-top:48px;
    padding-bottom:48px;
  }

  .hero h1,
  .page-hero h1{
    font-size:36px;
    line-height:1.08;
  }

  .hero p.lead,
  .page-hero p.lead,
  .section-head p{
    font-size:16px;
    line-height:1.75;
  }

  .section-head h2{
    font-size:32px;
  }

  .card,
  .info-band,
  .contact-card{
    padding:22px;
  }

  .hero-image,
  .hero-image img{
    min-height:420px;
    height:420px;
  }

  .table-row{
    grid-template-columns:1fr;
    gap:6px;
  }
}