:root {
  --ink: #211f1c;
  --muted: #6f6962;
  --paper: #fbfaf7;
  --cream: #f2ece4;
  --rose: #a96f5b;
  --rose-deep: #8e5847;
  --sand: #d7c2b2;
  --line: #e5ddd4;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(55, 43, 35, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rose-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; }
.display {
  margin: 14px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 7vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 400;
}
.section-title {
  margin: 10px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 400;
}
.section-copy { max-width: 660px; color: var(--muted); font-size: 1.04rem; }
.kicker { color: var(--muted); font-size: 1.05rem; max-width: 640px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--rose-deep); border-color: var(--rose-deep); }
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover { color: var(--white); }
.btn-light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-light:hover { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.link-arrow { font-weight: 800; display: inline-flex; gap: 8px; align-items: center; }
.link-arrow span { transition: transform .2s ease; }
.link-arrow:hover span { transform: translateX(4px); }

.announcement {
  background: var(--ink);
  color: #f7f1ea;
  text-align: center;
  padding: 8px 20px;
  font-size: 0.78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 250, 247, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 221, 212, .8);
}
.nav-wrap { min-height: 78px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.brand { font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; white-space: nowrap; }
.nav { display: flex; align-items: center; gap: 30px; font-size: .9rem; font-weight: 700; }
.nav a { position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--ink); transition: right .2s ease; }
.nav a:hover::after, .nav a.active::after { right: 0; }
.nav-actions { justify-self: end; display: flex; align-items: center; gap: 12px; }
.phone-mini { font-size: .84rem; color: var(--muted); font-weight: 700; }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; cursor: pointer; }
.menu-toggle span { display:block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px auto; }

.hero { padding: 54px 0 86px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 54px; align-items: center; }
.hero-copy { padding: 28px 0; }
.hero-copy .display em { color: var(--rose); font-style: italic; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-meta { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 42px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-meta div { min-width: 130px; }
.hero-meta strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.hero-meta span { display:block; color: var(--muted); font-size: .87rem; margin-top: 3px; }
.hero-media { position: relative; min-height: 670px; }
.hero-media .main-img { height: 610px; border-radius: 180px 180px 28px 28px; object-fit: cover; object-position: center; box-shadow: var(--shadow); }
.hero-badge {
  position: absolute;
  left: -28px;
  bottom: 12px;
  width: 178px;
  min-height: 178px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  box-shadow: var(--shadow);
}
.hero-badge strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; font-weight: 400; line-height: 1.1; }
.hero-badge span { display:block; font-size: .72rem; margin-top: 8px; letter-spacing: .1em; text-transform: uppercase; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 28px 24px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display:block; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; font-weight:400; }
.trust-item span { color: var(--muted); font-size: .86rem; }

.section { padding: 110px 0; }
.section-soft { background: var(--cream); }
.section-dark { background: var(--ink); color: var(--white); }
.section-dark .section-copy, .section-dark .kicker { color: #c9c1ba; }
.about-visit-section { background: #f5efe8; color: var(--ink); border-top: 1px solid var(--line); }
.about-visit-section .kicker { color: var(--muted); }
.section-head { display:flex; justify-content:space-between; gap: 40px; align-items:end; margin-bottom: 48px; }

.service-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); overflow:hidden; min-height: 430px; display:flex; flex-direction:column; }
.service-card.featured { background: var(--rose); color: var(--white); border-color: var(--rose); }
.service-card img { height: 215px; object-fit: cover; }
.service-card-body { padding: 24px; display:flex; flex-direction:column; flex:1; }
.service-card .num { color: var(--muted); font-size:.75rem; letter-spacing:.14em; text-transform:uppercase; }
.service-card.featured .num, .service-card.featured p { color:#f2ded5; }
.service-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: 1.75rem; margin: 10px 0 10px; font-weight:400; }
.service-card p { color: var(--muted); font-size:.93rem; margin:0 0 20px; }
.service-card .link-arrow { margin-top:auto; font-size:.9rem; }

.split { display:grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items:center; }
.image-stack { position:relative; min-height: 640px; }
.image-stack .image-a { width: 78%; height: 575px; object-fit:cover; border-radius: 22px; }
.image-stack .image-b { position:absolute; right:0; bottom:0; width: 48%; height: 280px; object-fit:cover; border: 10px solid var(--paper); border-radius: 18px; }
.check-list { display:grid; gap:18px; margin:30px 0; }
.check-item { display:grid; grid-template-columns: 36px 1fr; gap:12px; align-items:start; }
.check-dot { width:30px; height:30px; border-radius:50%; background:var(--cream); display:grid; place-items:center; font-size:.8rem; font-weight:900; }
.check-item strong { display:block; margin-bottom:2px; }
.check-item span { color:var(--muted); font-size:.92rem; }

.menu-list { display:grid; grid-template-columns: 1fr 1fr; gap: 0 54px; margin-top: 30px; }
.menu-item { display:grid; grid-template-columns: 1fr auto; gap:16px; padding: 19px 0; border-bottom:1px solid var(--line); }
.menu-item h4 { margin:0; font-size:1rem; }
.menu-item p { margin:4px 0 0; color:var(--muted); font-size:.88rem; }
.menu-price { font-family:Georgia, "Times New Roman", serif; font-size:1.1rem; white-space:nowrap; }
.note { font-size:.82rem; color:var(--muted); margin-top:20px; }

.experience-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap:60px; align-items:center; }
.experience-image { height: 620px; object-fit:cover; border-radius: 26px; }
.stat-grid { display:grid; grid-template-columns: 1fr 1fr; gap:14px; margin-top:34px; }
.stat { padding:22px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius:16px; }
.stat strong { display:block; font-family:Georgia, "Times New Roman", serif; font-size:2.2rem; font-weight:400; }
.stat span { color:#c9c1ba; font-size:.84rem; }

.testimonial-wrap { display:grid; grid-template-columns: .8fr 1.2fr; gap:70px; align-items:start; }
.quote { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.7rem, 3.7vw, 3.5rem); line-height:1.12; letter-spacing:-.025em; margin:0; }
.quote-mark { font-size:4rem; color:var(--rose); line-height:1; }
.testimonial-meta { margin-top:24px; font-size:.88rem; color:var(--muted); }

.cta-band { padding:80px 0; background:var(--rose); color:var(--white); }
.cta-grid { display:grid; grid-template-columns:1fr auto; align-items:center; gap:40px; }
.cta-band h2 { font-family:Georgia, "Times New Roman", serif; font-size:clamp(2rem,5vw,4.5rem); font-weight:400; line-height:1; margin:0; }
.cta-band p { max-width:620px; color:#f5e6e0; }

.page-hero { padding:76px 0 70px; background:var(--cream); border-bottom:1px solid var(--line); }
.page-hero-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:50px; align-items:end; }
.page-hero .display { font-size:clamp(3.2rem,7vw,6.8rem); }
.page-hero img { height:380px; object-fit:cover; border-radius:20px 100px 20px 20px; }

.category-block { padding:55px 0; border-bottom:1px solid var(--line); }
.category-grid { display:grid; grid-template-columns: .65fr 1.35fr; gap:70px; }
.category-label { position:sticky; top:130px; align-self:start; }
.category-label h2 { font-family:Georgia, "Times New Roman", serif; font-size:2.7rem; font-weight:400; margin:8px 0; }
.category-label p { color:var(--muted); max-width:340px; }

.about-intro { display:grid; grid-template-columns: .8fr 1.2fr; gap:80px; align-items:start; }
.about-intro .lead { font-family:Georgia, "Times New Roman", serif; font-size:clamp(1.7rem,3.3vw,3rem); line-height:1.2; margin:0; }
.values { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:50px; }
.value { padding:28px; border:1px solid var(--line); border-radius:16px; background:var(--white); }
.value b { display:block; font-family:Georgia, "Times New Roman", serif; font-size:1.55rem; font-weight:400; margin-bottom:8px; }
.value p { color:var(--muted); font-size:.9rem; margin:0; }

.contact-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:70px; align-items:start; }
.contact-card { background:var(--ink); color:var(--white); border-radius:24px; padding:36px; position:sticky; top:130px; }
.contact-card h2 { font-family:Georgia, "Times New Roman", serif; font-size:2.25rem; font-weight:400; margin:0 0 22px; }
.contact-row { padding:18px 0; border-top:1px solid rgba(255,255,255,.13); }
.contact-row small { display:block; color:#bdb5ae; text-transform:uppercase; letter-spacing:.12em; margin-bottom:4px; }
.contact-row address { font-style:normal; }
.form-card { background:var(--white); border:1px solid var(--line); border-radius:24px; padding:38px; box-shadow:0 14px 40px rgba(55,43,35,.06); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field { display:grid; gap:7px; }
.field.full { grid-column:1 / -1; }
.field label { font-weight:750; font-size:.84rem; }
.field input, .field select, .field textarea { width:100%; border:1px solid #d8cfc7; background:#fdfcf9; border-radius:12px; padding:13px 14px; outline:none; color:var(--ink); }
.field textarea { min-height:130px; resize:vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color:var(--rose); box-shadow:0 0 0 3px rgba(169,111,91,.12); }
.form-actions { display:flex; align-items:center; justify-content:space-between; gap:18px; margin-top:22px; }
.form-note { color:var(--muted); font-size:.8rem; max-width:420px; }
.success-note { display:none; padding:12px 14px; border-radius:10px; background:#f0eee8; margin-top:16px; font-size:.88rem; }

.faq { display:grid; gap:0; border-top:1px solid var(--line); }
.faq details { border-bottom:1px solid var(--line); padding:22px 0; }
.faq summary { cursor:pointer; font-weight:800; list-style:none; display:flex; justify-content:space-between; gap:20px; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; font-size:1.2rem; font-weight:400; }
.faq details[open] summary::after { content:"−"; }
.faq p { color:var(--muted); max-width:760px; margin:12px 0 0; }

.site-footer { background:#171614; color:#eae4de; padding:68px 0 28px; }
.footer-grid { display:grid; grid-template-columns:1.4fr .7fr .7fr 1fr; gap:42px; }
.footer-brand { font-family:Georgia, "Times New Roman", serif; font-size:1.55rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; }
.footer-copy { color:#a9a19a; max-width:330px; margin-top:16px; }
.footer-col h4 { margin:0 0 14px; color:#a9a19a; font-size:.74rem; letter-spacing:.14em; text-transform:uppercase; }
.footer-col a, .footer-col address, .footer-col p { display:block; color:#eae4de; font-style:normal; font-size:.9rem; margin:7px 0; }
.footer-col a:hover { color:#dcb9aa; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); margin-top:48px; padding-top:24px; display:flex; justify-content:space-between; gap:20px; color:#8f8882; font-size:.78rem; }
.socials { display:block; }
.socials a { color:#eae4de; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(22, 20, 18, .58);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .25s ease;
}
.modal-backdrop.open { display:flex; opacity:1; }
.domain-modal {
  width:min(560px,100%);
  background:var(--paper);
  border-radius:24px;
  box-shadow:0 32px 100px rgba(0,0,0,.28);
  padding:40px;
  position:relative;
  transform:translateY(12px) scale(.985);
  transition:transform .25s ease;
}
.modal-backdrop.open .domain-modal { transform:translateY(0) scale(1); }
.modal-close { position:absolute; right:16px; top:14px; width:42px; height:42px; border:0; border-radius:50%; background:#ece6df; color:var(--ink); font-size:1.7rem; line-height:1; cursor:pointer; }
.modal-close:hover { background:#e1d7ce; }
.modal-kicker { color:var(--rose-deep); font-weight:800; letter-spacing:.12em; text-transform:uppercase; font-size:.72rem; }
.domain-modal h2 { font-family:Georgia, "Times New Roman", serif; font-size:clamp(2rem,6vw,3.15rem); line-height:1.03; letter-spacing:-.03em; font-weight:400; margin:10px 45px 16px 0; }
.domain-modal p { color:var(--muted); margin-bottom:26px; }
.domain-modal .btn { width:100%; min-height:54px; }

.reveal { opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 980px) {
  .nav-wrap { grid-template-columns:1fr auto; }
  .nav { position:absolute; left:20px; right:20px; top:86px; display:none; flex-direction:column; align-items:stretch; gap:0; background:var(--paper); border:1px solid var(--line); border-radius:16px; box-shadow:var(--shadow); padding:12px; }
  .nav.open { display:flex; }
  .nav a { padding:13px 10px; }
  .nav a::after { display:none; }
  .menu-toggle { display:block; justify-self:end; }
  .nav-actions { display:none; }
  .hero-grid, .page-hero-grid, .split, .experience-grid, .testimonial-wrap, .about-intro, .contact-grid { grid-template-columns:1fr; }
  .hero { padding-top:24px; }
  .hero-media { min-height:540px; }
  .hero-media .main-img { height:520px; }
  .hero-badge { left:16px; width:145px; min-height:145px; }
  .service-grid { grid-template-columns:1fr 1fr; }
  .trust-grid { grid-template-columns:1fr 1fr; }
  .trust-item:nth-child(2) { border-right:0; }
  .trust-item:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .section-head { align-items:start; flex-direction:column; }
  .category-grid { grid-template-columns:1fr; gap:10px; }
  .category-label { position:static; }
  .contact-card { position:static; }
  .footer-grid { grid-template-columns:1.4fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column:1 / -1; }
}

@media (max-width: 680px) {
  .container { width:min(100% - 28px, var(--max)); }
  .announcement { font-size:.68rem; }
  .nav-wrap { min-height:68px; }
  .brand { font-size:1.15rem; }
  .hero { padding-bottom:60px; }
  .hero-grid { gap:28px; }
  .hero-media { min-height:440px; }
  .hero-media .main-img { height:420px; border-radius:110px 110px 22px 22px; }
  .hero-badge { width:124px; min-height:124px; bottom:0; left:8px; }
  .hero-badge strong { font-size:1.2rem; }
  .hero-meta { gap:16px; }
  .section { padding:76px 0; }
  .service-grid, .values, .menu-list, .stat-grid, .form-grid, .footer-grid { grid-template-columns:1fr; }
  .service-card { min-height:0; }
  .service-card img { height:240px; }
  .image-stack { min-height:470px; }
  .image-stack .image-a { width:88%; height:430px; }
  .image-stack .image-b { width:52%; height:220px; border-width:7px; }
  .experience-image { height:460px; }
  .cta-grid { grid-template-columns:1fr; }
  .cta-band { padding:64px 0; }
  .page-hero { padding:54px 0; }
  .page-hero img { height:280px; }
  .category-block { padding:42px 0; }
  .form-card, .contact-card { padding:26px; border-radius:18px; }
  .field.full { grid-column:auto; }
  .form-actions { align-items:stretch; flex-direction:column; }
  .form-actions .btn { width:100%; }
  .footer-grid .footer-col:last-child { grid-column:auto; }
  .footer-bottom { flex-direction:column; }
  .domain-modal { padding:30px 22px 22px; border-radius:18px; }
  .domain-modal h2 { margin-right:30px; }
}
