:root {
  --bg: #fffaf8;
  --paper: #fffdfc;
  --blush: #f6dedb;
  --blush-2: #f2c7c6;
  --rose: #cf697d;
  --rose-deep: #ad5064;
  --ink: #2b171b;
  --muted: #746468;
  --line: rgba(82, 45, 52, .13);
  --gold: #b9874f;
  --shadow: 0 18px 60px rgba(72, 31, 38, .12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 9999;
  background: var(--ink); color: white; padding: 10px 14px; border-radius: 10px;
}
.skip-link:focus { top: 16px; }

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

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 250, 248, .87);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(91, 48, 54, .08);
}
.nav-wrap { height: 86px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.brand { display: inline-flex; flex-direction: column; line-height: 1; min-width: max-content; }
.brand-script { font-family: "Parisienne", cursive; font-size: 35px; letter-spacing: .01em; }
.brand-script .heart { color: var(--rose); }
.brand-tag { text-transform: uppercase; letter-spacing: .28em; font-size: 8px; margin-top: 5px; font-weight: 700; }
.main-nav { display: flex; justify-content: center; align-items: center; gap: 24px; font-size: 14px; }
.main-nav a { position: relative; padding: 8px 0; }
.main-nav a::after { content: ""; position: absolute; height: 1px; left: 50%; right: 50%; bottom: 0; background: var(--rose); transition: .25s ease; }
.main-nav a:hover::after { left: 0; right: 0; }
.nav-actions { display: flex; gap: 10px; }
.menu-btn { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 14px; background: white; padding: 11px; }
.menu-btn span { display: block; height: 1.5px; background: var(--ink); margin: 5px 0; }

.btn {
  border: 0; border-radius: 999px; min-height: 44px; padding: 10px 20px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  cursor: pointer; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--rose), #df7e91); color: white; box-shadow: 0 10px 24px rgba(205, 103, 123, .28); }
.btn-primary:hover { box-shadow: 0 14px 32px rgba(205, 103, 123, .34); }
.btn-outline { background: rgba(255,255,255,.72); border: 1px solid rgba(54, 27, 33, .24); }
.btn-soft { background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.9); box-shadow: 0 10px 30px rgba(76,44,49,.08); }
.btn-lg { padding: 13px 25px; min-height: 54px; }
.btn-icon { font-weight: 400; }

.hero { position: relative; min-height: 660px; display: flex; align-items: center; padding: 66px 0 74px; background: linear-gradient(120deg, #f7deda 0%, #f7e6e0 45%, #f6ece6 100%); overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: auto -12% -45% 38%; height: 520px; background: radial-gradient(circle at center, rgba(255,255,255,.85), transparent 68%); }
.hero-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; filter: blur(8px); opacity: .55; }
.hero-glow-a { left: -150px; top: -180px; background: rgba(255,255,255,.65); }
.hero-glow-b { right: -160px; bottom: -240px; background: #ebc0bc; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .24em; font-size: 12px; font-weight: 700; color: #7f5a61; margin: 0 0 14px; }
.hero h1, .section h2, .final-cta h2 { font-family: "Italiana", serif; font-weight: 400; letter-spacing: -.03em; }
.hero h1 { font-size: clamp(64px, 8vw, 104px); line-height: .94; margin: 0 0 14px; }
.hero-subtitle { font-family: "Italiana", serif; font-size: clamp(25px, 3vw, 36px); line-height: 1.2; margin: 0; }
.hero-subtitle strong { font-weight: 400; }
.location-line { margin: 13px 0 24px; font-size: 18px; }
.location-line span { color: var(--rose-deep); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 32px; }
.hero-points > div { display: flex; gap: 11px; align-items: center; padding-top: 16px; border-top: 1px solid rgba(86,50,56,.14); }
.hero-points > div > span { font-size: 30px; color: var(--rose-deep); }
.hero-points p { margin: 0; text-transform: uppercase; letter-spacing: .08em; font-size: 11px; line-height: 1.35; }
.hero-points small { display: block; font-size: 9px; color: var(--muted); }
.hero-visual { position: relative; min-height: 500px; border-radius: 38px; overflow: hidden; box-shadow: var(--shadow); isolation: isolate; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(46,25,30,.25)); pointer-events: none; }
.hero-visual img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; }
.hero-note { position: absolute; right: 34px; bottom: 32px; z-index: 2; font-family: "Parisienne", cursive; font-size: 39px; line-height: .9; color: #8e5b2e; transform: rotate(-4deg); text-shadow: 0 2px 12px rgba(255,255,255,.4); }
.hero-note span { color: var(--rose); }
.hero-badge { position: absolute; top: 22px; left: 22px; z-index: 2; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.84); backdrop-filter: blur(12px); font-size: 12px; font-weight: 700; letter-spacing: .05em; }
.hero-badge span { color: var(--gold); }

.section { padding: 96px 0; }
.section-tint { background: #f9eeee; }
.section-heading { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 34px; }
.section h2 { font-size: clamp(44px, 5vw, 64px); line-height: 1; margin: 0; }
.section-lead { max-width: 470px; color: var(--muted); margin: 0; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { background: white; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 12px 35px rgba(73,39,45,.08); border: 1px solid rgba(80,50,55,.05); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(73,39,45,.12); }
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-body { padding: 22px; }
.service-kicker { margin: 0 0 2px; color: var(--rose-deep); text-transform: uppercase; font-size: 10px; letter-spacing: .18em; font-weight: 800; }
.service-card h3 { font-family: "Italiana", serif; font-size: 28px; margin: 2px 0 8px; font-weight: 400; }
.service-card p { color: var(--muted); margin: 0 0 17px; font-size: 14px; }
.text-link, .link-button { border: 0; background: transparent; padding: 0; cursor: pointer; font-weight: 800; color: var(--rose-deep); }
.text-link span { transition: margin .2s ease; }
.text-link:hover span { margin-left: 5px; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 16px; }
.gallery-item { border: 0; padding: 0; background: none; overflow: hidden; border-radius: var(--radius-md); cursor: zoom-in; position: relative; }
.gallery-item::after { content: "Ver"; position: absolute; right: 14px; bottom: 14px; background: rgba(255,255,255,.88); border-radius: 999px; padding: 7px 11px; font-size: 11px; font-weight: 800; opacity: 0; transform: translateY(5px); transition: .2s ease; }
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-large { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

.why { background: linear-gradient(135deg, #fffaf8, #f6e5e0); }
.why-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: center; }
.why-copy h2 { margin-bottom: 18px; }
.why-copy > p:not(.eyebrow) { color: var(--muted); max-width: 480px; margin-bottom: 26px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.benefit-card { background: rgba(255,255,255,.8); padding: 28px; border-radius: 24px; min-height: 230px; border: 1px solid rgba(85,49,55,.08); box-shadow: 0 12px 36px rgba(72,39,45,.07); }
.benefit-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--blush); display: grid; place-items: center; color: var(--rose-deep); font-size: 25px; margin-bottom: 22px; }
.benefit-card h3 { font-family: "Italiana", serif; font-weight: 400; font-size: 26px; line-height: 1.1; margin: 0 0 10px; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 14px; }

.reviews-grid { display: grid; grid-template-columns: minmax(0, 760px); justify-content: center; gap: 18px; }
.review-card { margin: 0; background: white; border-radius: 24px; padding: 30px; border: 1px solid rgba(80,50,55,.06); box-shadow: 0 12px 35px rgba(73,39,45,.07); }
.stars { color: #cf8c3e; letter-spacing: .14em; margin-bottom: 14px; }
.review-card h3 { font-family: "Italiana", serif; font-size: 30px; font-weight: 400; margin: 0 0 12px; }
.review-card p { font-family: "DM Sans", sans-serif; font-size: 16px; line-height: 1.6; margin: 0 0 18px; }
.review-card footer { color: var(--muted); font-size: 13px; }

.location-section { background: #fffdfb; }
.location-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: stretch; }
.location-card, .map-card { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(80,50,55,.07); background: white; }
.location-card { padding: 38px; }
.location-card h2 { margin-bottom: 12px; }
.location-big { font-family: "Italiana", serif; font-size: 30px; margin: 0 0 8px; }
.muted { color: var(--muted); }
.contact-list { margin-top: 28px; display: grid; gap: 10px; }
.contact-row { width: 100%; display: grid; grid-template-columns: 42px 1fr auto; gap: 12px; align-items: center; border: 1px solid var(--line); background: #fffafa; border-radius: 16px; padding: 12px 14px; text-align: left; cursor: pointer; transition: .2s ease; }
.contact-row:hover { transform: translateX(4px); border-color: rgba(202,103,122,.45); }
.contact-row > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--blush); color: var(--rose-deep); font-weight: 800; }
.contact-row strong { display: block; }
.contact-row small { color: var(--muted); }
.contact-row b { color: var(--rose-deep); }
.map-card { position: relative; min-height: 520px; }
.map-card iframe { border: 0; width: 100%; height: 100%; min-height: 520px; filter: saturate(.75) sepia(.08); }
.map-caption { position: absolute; left: 18px; bottom: 18px; display: flex; gap: 12px; align-items: center; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-radius: 16px; padding: 12px 16px; box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.map-caption span { color: var(--rose-deep); font-size: 24px; }
.map-caption strong, .map-caption small { display: block; }
.map-caption small { color: var(--muted); }

.final-cta { padding: 18px 0 70px; background: #fffdfb; }
.final-cta-inner { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto 220px; gap: 40px; align-items: center; padding: 42px 48px; border-radius: 32px; background: linear-gradient(120deg, #f2c9c8, #f7dcd7); box-shadow: var(--shadow); }
.final-cta h2 { font-size: clamp(45px, 5vw, 67px); margin: 0; }
.final-cta p { margin: 6px 0 0; }
.cta-script { font-family: "Parisienne", cursive; font-size: 30px; line-height: 1; text-align: right; color: #7f4f53; transform: rotate(-3deg); }

.site-footer { background: #2d1c20; color: #f8e9e5; padding: 38px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
.footer-brand .brand-script { font-size: 30px; }
.footer-grid > p { font-size: 12px; color: #cdbabf; }
.footer-links { display: flex; justify-content: end; gap: 20px; font-size: 13px; }
.footer-links .link-button { color: #f8e9e5; }

.floating-wa { position: fixed; z-index: 800; right: 20px; bottom: 20px; width: 58px; height: 58px; border-radius: 50%; border: 0; color: white; background: #1fbd68; box-shadow: 0 15px 35px rgba(31, 189, 104, .34); font-size: 24px; cursor: pointer; transition: transform .2s ease; }
.floating-wa:hover { transform: scale(1.06); }

.modal, .lightbox { border: 0; padding: 0; background: transparent; max-width: none; max-height: none; }
.modal::backdrop, .lightbox::backdrop { background: rgba(38, 23, 27, .58); backdrop-filter: blur(7px); }
.modal-card { width: min(580px, calc(100vw - 28px)); max-height: 90vh; overflow: auto; background: #fffaf8; border-radius: 28px; padding: 32px; box-shadow: 0 30px 100px rgba(39,24,28,.28); position: relative; }
.modal-close { position: absolute; right: 18px; top: 18px; border: 0; background: #f3e5e1; width: 38px; height: 38px; border-radius: 50%; font-size: 24px; cursor: pointer; }
.modal-card h2 { font-family: "Italiana", serif; font-weight: 400; font-size: 48px; margin: 0 0 8px; }
.modal-lead { color: var(--muted); margin: 0 0 24px; }
.modal-card label { display: grid; gap: 7px; font-size: 13px; font-weight: 700; margin-bottom: 14px; }
.modal-card input, .modal-card select, .modal-card textarea { width: 100%; border: 1px solid rgba(71,43,48,.14); border-radius: 14px; background: white; padding: 13px 14px; outline: none; color: var(--ink); }
.modal-card input:focus, .modal-card select:focus, .modal-card textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(207,105,125,.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.form-status { min-height: 24px; margin: 12px 0 0; color: var(--rose-deep); font-size: 13px; }

.lightbox { width: min(920px, calc(100vw - 30px)); }
.lightbox img { width: 100%; max-height: 86vh; object-fit: contain; border-radius: 24px; box-shadow: 0 30px 100px rgba(0,0,0,.32); }
.lightbox-close { position: fixed; top: 20px; right: 20px; width: 48px; height: 48px; border-radius: 50%; border: 0; background: white; font-size: 28px; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1040px) {
  .nav-wrap { grid-template-columns: auto 1fr auto; }
  .main-nav { display: none; }
  .menu-btn { display: block; justify-self: end; }
  .nav-actions { display: none; }
  .main-nav.open { display: flex; position: absolute; top: 76px; left: 20px; right: 20px; padding: 18px; background: rgba(255,250,248,.98); box-shadow: var(--shadow); border-radius: 18px; flex-direction: column; align-items: stretch; gap: 6px; }
  .main-nav.open a { padding: 11px 8px; }
  .hero-grid { gap: 34px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-wide { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .final-cta-inner { grid-template-columns: 1fr auto; }
  .cta-script { display: none; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .nav-wrap { height: 76px; }
  .brand-script { font-size: 30px; }
  .hero { padding: 38px 0 52px; min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 8px; }
  .hero h1 { font-size: clamp(60px, 19vw, 86px); }
  .hero-subtitle { font-size: 27px; }
  .hero-actions .btn { flex: 1; }
  .hero-points { grid-template-columns: 1fr; gap: 4px; margin-top: 24px; }
  .hero-points > div { padding-top: 10px; }
  .hero-visual { min-height: 430px; border-radius: 28px; }
  .hero-visual img { min-height: 430px; }
  .hero-note { font-size: 34px; right: 20px; bottom: 24px; }
  .section { padding: 70px 0; }
  .section-heading { align-items: start; flex-direction: column; gap: 14px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { display: grid; grid-template-columns: 42% 58%; }
  .service-card img { height: 100%; min-height: 220px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; }
  .gallery-large { grid-row: span 1; }
  .gallery-wide { grid-column: span 2; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: auto; }
  .location-grid { grid-template-columns: 1fr; }
  .map-card, .map-card iframe { min-height: 390px; }
  .final-cta { padding-bottom: 46px; }
  .final-cta-inner { grid-template-columns: 1fr; padding: 34px 26px; gap: 22px; }
  .final-cta-inner .btn { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-links { justify-content: center; }
  .floating-wa { width: 54px; height: 54px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .service-card { grid-template-columns: 1fr; }
  .service-card img { min-height: 240px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 290px; }
  .gallery-wide { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .modal-card { padding: 28px 20px 22px; }
  .modal-card h2 { font-size: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
