:root {
  --ink: #10231f;
  --ink-2: #17322c;
  --ink-3: #24423a;
  --cream: #f1eee5;
  --paper: #fbfaf6;
  --sand: #e5ded0;
  --muted: #65736f;
  --line: rgba(16, 35, 31, .14);
  --accent: #e9be55;
  --accent-hover: #f3cb6a;
  --white: #fff;
  --radius: 10px;
  --gutter: clamp(20px, 5vw, 76px);
  --section: clamp(76px, 9vw, 136px);
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; max-width: 100%; height: auto; }
picture { display: block; max-width: 100%; }
ul { margin-top: 0; }
button, input, textarea { font: inherit; }
button, summary { cursor: pointer; }
::selection { background: var(--accent); color: var(--ink); }

.site-header {
  position: relative;
  z-index: 40;
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}
.site-header.is-overlay {
  position: absolute;
  inset: 0 0 auto;
  border-color: rgba(255, 255, 255, .22);
  background: transparent;
  color: var(--white);
}
.admin-bar .site-header.is-overlay { top: 32px; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }
.brand { width: max-content; font-size: 23px; font-weight: 780; letter-spacing: -.055em; }
.brand-text b { color: var(--accent); font-weight: inherit; }
.desktop-nav { display: flex; gap: clamp(18px, 2.3vw, 34px); font-size: 13px; font-weight: 680; }
.desktop-nav a, .phone-text { transition: opacity .2s ease; }
.desktop-nav a:hover, .phone-text:hover { opacity: .62; }
.header-contact { justify-self: end; display: flex; align-items: center; gap: 18px; }
.phone-text { font-size: 14px; font-weight: 680; white-space: nowrap; }
.mobile-menu { display: none; }
.mobile-phone-cta { display: none; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 120; transform: translateY(-150%); border-radius: 5px; padding: 10px 14px; background: var(--accent); color: var(--ink); font-size: 13px; font-weight: 800; }
.skip-link:focus { transform: translateY(0); }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.button-small { min-height: 42px; padding: 0 18px; }
.button-dark { background: var(--ink); color: var(--white); }
.is-overlay .button-dark { border-color: rgba(255, 255, 255, .24); background: rgba(16, 35, 31, .78); backdrop-filter: blur(10px); }
.button-accent { background: var(--accent); color: var(--ink); }
.button-accent:hover { background: var(--accent-hover); }
.button-glass, .button-outline-light { border-color: rgba(255, 255, 255, .5); background: rgba(255, 255, 255, .08); color: var(--white); backdrop-filter: blur(8px); }
.button-outline-dark { border-color: rgba(16, 35, 31, .35); color: var(--ink); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow span { width: 28px; height: 1px; flex: 0 0 auto; background: var(--accent); }
.eyebrow.dark { color: var(--muted); }
.section-heading h2, .feature-copy h2, .final-cta h2, .text-section h2, .form-heading h2, .editorial-note h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 610;
  line-height: 1.02;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.hero {
  position: relative;
  min-height: min(870px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero-media, .hero-media img, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center 55%; filter: saturate(.86) contrast(1.02); }
.hero-shade { background: linear-gradient(90deg, rgba(7, 23, 19, .96) 0%, rgba(7, 23, 19, .78) 42%, rgba(7, 23, 19, .14) 77%), linear-gradient(0deg, rgba(7, 23, 19, .52), transparent 45%); }
.hero-content { position: relative; z-index: 2; width: min(760px, 86vw); margin-left: clamp(24px, 8vw, 132px); padding-top: 84px; }
.hero h1 {
  max-width: 810px;
  margin: 0;
  font-size: clamp(48px, 6.3vw, 94px);
  font-weight: 600;
  line-height: .97;
  letter-spacing: -.061em;
  text-wrap: balance;
}
.hero-copy { max-width: 620px; margin: 28px 0 0; color: rgba(255, 255, 255, .77); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.65; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.hero-phone { display: inline-block; margin-top: 22px; color: rgba(255, 255, 255, .78); font-size: 14px; font-weight: 680; letter-spacing: .03em; }
.hero-note {
  position: absolute;
  right: var(--gutter);
  bottom: 36px;
  z-index: 3;
  width: min(350px, 38vw);
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .36);
}
.hero-note-index { color: var(--accent); font-size: 12px; font-weight: 800; }
.hero-note b { font-size: 14px; }
.hero-note p { margin: 7px 0 0; color: rgba(255, 255, 255, .67); font-size: 13px; line-height: 1.5; }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border-bottom: 1px solid var(--line); background: var(--line); }
.trust-strip div { display: flex; min-height: 112px; flex-direction: column; justify-content: center; padding: 24px clamp(20px, 3vw, 48px); background: var(--cream); }
.trust-strip b { font-size: 15px; }
.trust-strip span { margin-top: 7px; color: var(--muted); font-size: 13px; }

.services-section, .areas-section, .process-section, .blog-preview, .subpage-services, .blog-index {
  padding: var(--section) var(--gutter);
}
.section-heading { max-width: 900px; }
.section-heading > p:not(.eyebrow) { max-width: 560px; margin: 28px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.split-heading { max-width: none; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr); align-items: end; gap: clamp(40px, 8vw, 130px); }
.split-heading > p, .split-heading > a { margin: 0 0 6px; align-self: end; }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 64px; }
.service-card { position: relative; min-height: clamp(400px, 40vw, 590px); overflow: hidden; border-radius: var(--radius); background: var(--ink); color: var(--white); }
.service-card picture, .service-card picture img, .service-card-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.service-card picture img { object-fit: cover; transition: transform .55s cubic-bezier(.2, .65, .25, 1); }
.service-card-shade { background: linear-gradient(0deg, rgba(7, 23, 19, .94) 0%, rgba(7, 23, 19, .34) 55%, rgba(7, 23, 19, .04) 100%); }
.service-card-copy { position: absolute; inset: auto 0 0; z-index: 2; padding: clamp(22px, 2.4vw, 36px); }
.service-card-copy small { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.service-card-copy h3 { margin: 11px 0 10px; font-size: clamp(25px, 2.2vw, 34px); font-weight: 620; letter-spacing: -.04em; }
.service-card-copy p { max-width: 300px; margin: 0; color: rgba(255, 255, 255, .72); font-size: 13px; line-height: 1.6; }
.service-card-copy b { display: block; margin-top: 22px; font-size: 13px; }
.service-card:hover picture img { transform: scale(1.035); }
.service-grid.is-compact { grid-template-columns: repeat(2, 1fr); }
.service-grid.is-compact .service-card { min-height: 480px; }

.feature-section { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); min-height: 690px; background: var(--cream); }
.feature-section.is-reverse .feature-media { order: 2; }
.feature-section.is-reverse .feature-copy { order: 1; }
.feature-media { position: relative; min-height: 520px; overflow: hidden; }
.feature-media picture, .feature-media picture img { width: 100%; height: 100%; }
.feature-media picture img { object-fit: cover; }
.feature-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(56px, 8vw, 128px); }
.feature-copy h2 { font-size: clamp(39px, 4.5vw, 68px); }
.feature-copy > p:not(.eyebrow) { max-width: 590px; margin: 28px 0 0; color: var(--muted); font-size: 16px; line-height: 1.72; }
.feature-section.is-dark { background: var(--ink); color: var(--white); }
.feature-section.is-dark .feature-copy > p { color: rgba(255, 255, 255, .7); }
.check-list { display: grid; gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 26px; color: inherit; font-size: 14px; line-height: 1.55; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 850; }
.text-link { display: inline-flex; width: fit-content; max-width: 100%; align-items: center; gap: 10px; margin-top: 34px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 14px; font-weight: 760; overflow-wrap: anywhere; }
.text-link.light { color: var(--white); }

.areas-section { background: var(--paper); }
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 64px; border: 1px solid var(--line); background: var(--line); }
.area-grid > div { min-height: 260px; padding: 32px; background: var(--paper); }
.area-grid span, .section-number { color: #6f5b2c; font-size: 12px; font-weight: 820; letter-spacing: .1em; }
.area-grid h3 { margin: 76px 0 10px; font-size: 23px; font-weight: 620; letter-spacing: -.035em; }
.area-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.why-section { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr); gap: clamp(70px, 10vw, 160px); padding: var(--section) var(--gutter); background: var(--cream); }
.why-cards { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.why-cards > div { min-height: 240px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-cards span, .process-grid span { color: #6f5b2c; font-size: 12px; font-weight: 820; }
.why-cards h3, .process-grid h3 { margin: 70px 0 10px; font-size: 21px; font-weight: 650; letter-spacing: -.03em; }
.why-cards p, .process-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.62; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 64px; border: 1px solid var(--line); background: var(--line); }
.process-grid > div { min-height: 280px; padding: 34px; background: var(--paper); }
.process-grid h3 { margin-top: 90px; }
.reviews-integrity { display: grid; grid-template-columns: .35fr 1fr; align-items: start; gap: clamp(30px, 8vw, 120px); padding: var(--section) var(--gutter); background: var(--ink-2); color: var(--white); }
.quote-mark { margin-top: -30px; color: var(--accent); font-family: Georgia, serif; font-size: clamp(140px, 20vw, 300px); line-height: .8; opacity: .88; }
.reviews-integrity h2 { max-width: 880px; margin: 0; font-size: clamp(38px, 5vw, 72px); font-weight: 590; line-height: 1.03; letter-spacing: -.055em; }
.reviews-integrity div > p:last-child { max-width: 620px; margin: 28px 0 0; color: rgba(255, 255, 255, .68); line-height: 1.7; }

.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 64px; }
.blog-card { border: 1px solid var(--line); background: var(--paper); }
.blog-card-media { display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.blog-card-media picture, .blog-card-media img { width: 100%; height: 100%; }
.blog-card-media img { object-fit: cover; transition: transform .45s ease; }
.blog-card:hover .blog-card-media img { transform: scale(1.025); }
.blog-card-copy { padding: clamp(24px, 3.5vw, 44px); }
.blog-card-copy small { color: #6d592b; font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.blog-card-copy h3 { margin: 16px 0 12px; font-size: clamp(25px, 2.4vw, 36px); font-weight: 620; line-height: 1.08; letter-spacing: -.042em; }
.blog-card-copy p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.faq-section { display: grid; grid-template-columns: minmax(300px, .65fr) minmax(0, 1.35fr); gap: clamp(60px, 10vw, 170px); padding: var(--section) var(--gutter); background: var(--cream); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 1fr auto; gap: 24px; padding: 28px 0; font-size: 17px; font-weight: 680; line-height: 1.4; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: #6f5b2c; font-size: 22px; font-weight: 420; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 720px; margin: -8px 0 28px; color: var(--muted); font-size: 14px; line-height: 1.72; }

.final-cta { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; padding: var(--section) var(--gutter); background: var(--ink); color: var(--white); }
.final-cta h2 { max-width: 780px; }
.final-cta p:not(.eyebrow) { max-width: 620px; margin: 28px 0 0; color: rgba(255, 255, 255, .68); line-height: 1.7; }
.final-cta-actions { display: flex; gap: 12px; }

.site-footer { padding: 80px var(--gutter) 30px; background: #091814; color: var(--white); }
.footer-lead { display: grid; grid-template-columns: .7fr 1fr .7fr; align-items: end; gap: 50px; padding-bottom: 62px; border-bottom: 1px solid rgba(255, 255, 255, .13); }
.footer-brand { font-size: clamp(30px, 3vw, 44px); font-weight: 780; letter-spacing: -.06em; }
.footer-lead p { max-width: 480px; margin: 0; color: rgba(255, 255, 255, .6); font-size: 14px; line-height: 1.7; }
.footer-actions { justify-self: end; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.footer-phone { font-size: clamp(18px, 2vw, 26px); font-weight: 680; }
.footer-whatsapp { color: var(--accent); font-size: 12px; font-weight: 750; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 850px; margin: 62px 0; }
.footer-nav div { display: flex; flex-direction: column; gap: 13px; }
.footer-nav b { margin-bottom: 9px; color: var(--accent); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.footer-nav a { width: fit-content; max-width: 100%; color: rgba(255, 255, 255, .68); font-size: 13px; overflow-wrap: anywhere; }
.footer-nav a:hover { color: var(--white); }
.footer-note { color: rgba(255, 255, 255, .55); font-size: 13px; line-height: 1.55; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, .13); color: rgba(255, 255, 255, .48); font-size: 12px; }
.cookie-manage { min-height: 44px; border: 0; padding: 0; background: transparent; color: inherit; font: inherit; text-decoration: underline; }
.related-links { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 120px); padding: var(--section) var(--gutter); border-top: 1px solid var(--line); background: var(--paper); }
.related-links h2 { max-width: 620px; margin: 0; font-size: clamp(34px, 4vw, 58px); font-weight: 610; line-height: 1.04; letter-spacing: -.05em; }
.related-links nav { border-top: 1px solid var(--line); }
.related-links nav a { display: flex; justify-content: space-between; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 680; }

.subhero { position: relative; min-height: 660px; display: grid; align-items: end; overflow: hidden; background: var(--ink-2); color: var(--white); }
.subhero-media, .subhero-media img, .subhero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.subhero-media img { object-fit: cover; }
.subhero-shade { background: linear-gradient(90deg, rgba(7, 23, 19, .94), rgba(7, 23, 19, .54) 55%, rgba(7, 23, 19, .15)), linear-gradient(0deg, rgba(7, 23, 19, .5), transparent); }
.subhero-copy { position: relative; z-index: 2; max-width: 940px; padding: 190px var(--gutter) 88px; }
.subhero-copy h1 { margin: 0; font-size: clamp(48px, 6.6vw, 94px); font-weight: 600; line-height: .98; letter-spacing: -.06em; text-wrap: balance; }
.subhero-copy > p:not(.eyebrow) { max-width: 680px; margin: 26px 0 0; color: rgba(255, 255, 255, .75); font-size: 17px; line-height: 1.68; }
.subhero.no-image { min-height: 480px; align-items: center; }
.subhero.no-image .subhero-copy { padding-top: 90px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; padding: 20px var(--gutter); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.breadcrumb a:hover { color: var(--ink); }
.legal-notice { display: grid; grid-template-columns: 240px 1fr; gap: 32px; margin: 48px var(--gutter) 0; padding: 24px; border-left: 4px solid var(--accent); background: #f4edda; }
.legal-notice b { font-size: 14px; }
.legal-notice p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: var(--section) var(--gutter) 20px; }
.contact-cards > a { min-height: 330px; padding: clamp(28px, 5vw, 64px); background: var(--cream); transition: background .2s ease, transform .2s ease; }
.contact-cards > a:nth-child(2) { background: var(--ink-2); color: var(--white); }
.contact-cards > a:hover { transform: translateY(-3px); }
.contact-cards small { color: #6f5b2c; font-weight: 800; text-transform: uppercase; }
.contact-cards h2 { margin: 76px 0 15px; font-size: clamp(28px, 3.5vw, 50px); letter-spacing: -.05em; }
.contact-cards p { max-width: 460px; color: var(--muted); line-height: 1.65; }
.contact-cards > a:nth-child(2) p { color: rgba(255, 255, 255, .67); }
.contact-cards b { display: block; margin-top: 25px; font-size: 13px; }

.content-sections { padding: 0; }
.content-feature { min-height: 670px; }
.content-feature:nth-child(even) { background: var(--paper); }
.image-note { position: absolute; right: 18px; bottom: 18px; max-width: 400px; padding: 8px 11px; border-radius: 5px; background: rgba(7, 23, 19, .78); color: rgba(255, 255, 255, .78); font-size: 12px; line-height: 1.45; backdrop-filter: blur(5px); }
.section-number { display: block; margin-bottom: 30px; }
.text-section { display: grid; grid-template-columns: minmax(120px, .25fr) minmax(0, 1fr); gap: 50px; padding: clamp(70px, 8vw, 120px) var(--gutter); border-bottom: 1px solid var(--line); }
.text-section > div { max-width: 900px; }
.text-section h2 { font-size: clamp(34px, 4vw, 56px); }
.text-section p { color: var(--muted); font-size: 15px; line-height: 1.8; }
.text-section p:first-of-type { margin-top: 28px; }
.legal-content { max-width: 1180px; margin: 0 auto; padding: 46px 0 80px; }
.legal-content .text-section { padding-right: var(--gutter); padding-left: var(--gutter); }

.reservation-section { padding: var(--section) var(--gutter); background: var(--cream); }
.reservation-form { display: none; max-width: 1160px; margin: 0 auto; padding: clamp(28px, 5vw, 64px); border: 1px solid var(--line); background: var(--paper); }
.js .reservation-form { display: block; }
.reservation-noscript { max-width: 900px; margin: 0 auto; padding: clamp(28px, 5vw, 56px); border: 1px solid var(--line); background: var(--paper); }
.reservation-noscript h2 { margin-bottom: 18px; font-size: clamp(30px, 4vw, 52px); }
.reservation-noscript p { max-width: 680px; color: var(--muted); line-height: 1.7; }
.reservation-noscript > div { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.form-heading { max-width: 760px; }
.form-heading h2 { font-size: clamp(38px, 4.8vw, 64px); }
.form-heading > p:last-child { max-width: 620px; margin: 24px 0 0; color: var(--muted); line-height: 1.7; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 18px; margin-top: 48px; }
.form-grid label { display: grid; gap: 9px; }
.form-grid label > span { font-size: 12px; font-weight: 760; }
.form-grid label small { margin-left: 6px; color: var(--muted); font-weight: 500; }
.form-grid input, .form-grid textarea { width: 100%; min-height: 54px; border: 1px solid rgba(16, 35, 31, .2); border-radius: 6px; background: #fff; color: var(--ink); padding: 14px; }
.form-grid textarea { min-height: 124px; resize: vertical; }
.form-wide { grid-column: 1 / -1; }
.consent-check { display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 12px; margin-top: 24px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.consent-check input { width: 18px; height: 18px; margin: 0; accent-color: var(--ink); }
.form-submit { margin-top: 28px; border: 0; }
.form-disclaimer { max-width: 760px; margin: 20px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.editorial-note { padding: 0 var(--gutter) var(--section); }
.editorial-note h2 { max-width: 850px; }
.editorial-note > p:last-child { max-width: 720px; color: var(--muted); line-height: 1.75; }

.not-found { min-height: 680px; display: flex; flex-direction: column; justify-content: center; padding: var(--section) var(--gutter); }
.not-found > span { color: #6f5b2c; font-size: 13px; font-weight: 850; letter-spacing: .12em; }
.not-found h1 { max-width: 900px; margin: 20px 0; font-size: clamp(48px, 7vw, 92px); font-weight: 600; line-height: 1; letter-spacing: -.06em; }
.not-found > p { max-width: 620px; color: var(--muted); line-height: 1.7; }
.not-found > div { display: flex; gap: 12px; margin-top: 26px; }

.mobile-cta { display: none; }
.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  width: min(650px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 26px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(3, 14, 11, .28);
  background: var(--ink);
  color: var(--white);
}
.cookie-banner[hidden] { display: none !important; }
.editorial-meta { display: flex; flex-wrap: wrap; gap: 12px 28px; padding: 20px var(--gutter); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.editorial-meta a { color: var(--ink); text-decoration: underline; text-decoration-color: rgba(16, 35, 31, .26); text-underline-offset: 3px; }
.hero-content, .subhero-copy, .footer-lead > *, .footer-bottom > *, .editorial-meta > *, .content-sections, .text-section > div { min-width: 0; overflow-wrap: anywhere; }
.navigation.pagination { margin-top: 40px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.page-numbers { display: grid; min-width: 42px; min-height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 5px; padding: 0 12px; font-size: 12px; font-weight: 700; }
.page-numbers.current { border-color: var(--ink); background: var(--ink); color: var(--white); }
.cookie-banner b { font-size: 14px; }
.cookie-banner p { margin: 8px 0; color: rgba(255, 255, 255, .67); font-size: 12px; line-height: 1.55; }
.cookie-banner a { display: inline-flex; min-height: 44px; align-items: center; color: var(--accent); font-size: 12px; text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button { min-height: 44px; border: 1px solid rgba(255, 255, 255, .32); border-radius: 6px; padding: 0 13px; background: transparent; color: var(--white); font-size: 12px; font-weight: 760; }
.cookie-actions .accept { border-color: var(--accent); background: var(--accent); color: var(--ink); }

@media (max-width: 1100px) {
  .desktop-nav { gap: 16px; }
  .desktop-nav a:nth-child(4), .desktop-nav a:nth-child(5) { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 520px; }
  .feature-copy { padding: 64px; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta { grid-template-columns: 1fr; align-items: start; }
  .footer-lead { grid-template-columns: .7fr 1.3fr; }
  .footer-actions { grid-column: 1 / -1; justify-self: start; align-items: flex-start; }
}

@media (max-width: 820px) {
  body { padding-bottom: 78px; }
  :root { --gutter: 20px; --section: 78px; }
  .site-header { height: 74px; grid-template-columns: 1fr auto auto; gap: 10px; padding: 0 20px; }
  .admin-bar .site-header.is-overlay { top: 46px; }
  .desktop-nav, .header-contact { display: none; }
  .mobile-phone-cta { display: grid; min-height: 42px; place-items: center; border: 1px solid currentColor; border-radius: 7px; padding: 0 12px; font-size: 12px; font-weight: 760; }
  .mobile-menu { position: relative; display: block; justify-self: end; }
  .mobile-menu summary { width: 46px; height: 42px; display: grid; place-content: center; gap: 6px; border: 1px solid currentColor; border-radius: 7px; list-style: none; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { width: 18px; height: 1px; background: currentColor; }
  .mobile-menu-panel { position: absolute; top: 52px; right: 0; width: min(330px, calc(100vw - 40px)); display: flex; flex-direction: column; padding: 16px; border-radius: 8px; box-shadow: 0 20px 50px rgba(0, 0, 0, .24); background: var(--paper); color: var(--ink); }
  .mobile-menu-panel a { padding: 12px 8px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 650; }
  .mobile-menu-panel .mobile-menu-phone { margin-top: 8px; border: 0; color: #8a713c; }
  .hero { min-height: 790px; align-items: end; }
  .hero-media img { object-position: 56% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(7, 23, 19, .98) 8%, rgba(7, 23, 19, .78) 58%, rgba(7, 23, 19, .16) 100%); }
  .hero-content { width: auto; margin: 0; padding: 190px 20px 154px; }
  .hero h1 { font-size: clamp(43px, 12vw, 66px); }
  .hero-copy { margin-top: 22px; font-size: 16px; }
  .hero-actions .button { flex: 1; padding: 0 14px; }
  .hero-phone { display: none; }
  .hero-note { right: 20px; bottom: 88px; left: 20px; width: auto; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip div { min-height: 98px; padding: 20px; }
  .split-heading, .feature-section, .why-section, .faq-section, .reviews-integrity { grid-template-columns: 1fr; }
  .split-heading { gap: 28px; }
  .service-grid, .service-grid.is-compact { grid-template-columns: 1fr; }
  .service-card, .service-grid.is-compact .service-card { min-height: 520px; }
  .feature-section, .content-feature { min-height: 0; }
  .feature-section .feature-media, .feature-section.is-reverse .feature-media { order: 1; min-height: 0; aspect-ratio: 4 / 3; }
  .feature-section .feature-copy, .feature-section.is-reverse .feature-copy { order: 2; padding: 66px 20px 76px; }
  .feature-copy h2 { font-size: clamp(38px, 10vw, 56px); }
  .why-section, .faq-section { gap: 54px; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid > div { min-height: 220px; }
  .process-grid h3 { margin-top: 60px; }
  .reviews-integrity { gap: 18px; }
  .quote-mark { font-size: 130px; }
  .blog-grid { grid-template-columns: 1fr; }
  .final-cta-actions { flex-wrap: wrap; }
  .footer-lead { grid-template-columns: 1fr; gap: 24px; }
  .footer-actions { grid-column: auto; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .footer-nav a { display: inline-flex; min-height: 44px; align-items: center; }
  .footer-bottom { flex-direction: column; }
  .related-links { grid-template-columns: 1fr; gap: 38px; }
  .subhero { min-height: 610px; }
  .subhero-copy { padding: 170px 20px 72px; }
  .subhero-copy h1 { font-size: clamp(44px, 12vw, 68px); }
  .subhero.no-image { min-height: 440px; }
  .legal-notice { grid-template-columns: 1fr; gap: 8px; }
  .contact-cards { grid-template-columns: 1fr; }
  .text-section { grid-template-columns: 54px 1fr; gap: 18px; }
  .reservation-form { padding: 30px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .mobile-cta {
    position: fixed;
    inset: auto 10px 10px;
    z-index: 60;
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(4, 17, 14, .28);
    background: var(--ink);
    color: var(--white);
  }
  .mobile-cta a { display: flex; min-height: 62px; flex-direction: column; justify-content: center; padding: 0 18px; }
  .mobile-cta a + a { background: var(--accent); color: var(--ink); }
  .mobile-cta small { font-size: 12px; opacity: .72; }
  .mobile-cta b { margin-top: 2px; font-size: 13px; }
  .cookie-banner { right: 10px; bottom: 84px; width: calc(100vw - 20px); max-height: min(46vh, 380px); overflow-y: auto; overscroll-behavior: contain; grid-template-columns: 1fr; gap: 14px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-actions button { width: 100%; }
}

@media (max-width: 782px) {
  .admin-bar .site-header.is-overlay { top: 46px; }
}

@media (max-width: 520px) {
  .hero-actions { flex-direction: column; }
  .hero-content { padding-bottom: 132px; }
  .hero-note { display: none; }
  .trust-strip, .area-grid, .why-cards { grid-template-columns: 1fr; }
  .area-grid > div { min-height: 210px; }
  .area-grid h3 { margin-top: 50px; }
  .why-cards > div { min-height: 210px; }
  .why-cards h3 { margin-top: 50px; }
  .service-card, .service-grid.is-compact .service-card { min-height: 450px; }
  .final-cta-actions, .not-found > div { flex-direction: column; }
  .final-cta-actions .button, .not-found .button { width: 100%; }
  .footer-nav { grid-template-columns: 1fr; }
  .text-section { grid-template-columns: 1fr; }
  .text-section .section-number { margin-bottom: 0; }
  .legal-content .text-section { padding-right: 20px; padding-left: 20px; }
  .cookie-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
