:root {
  --cream: #FCF9F5;
  --paper: #FFFFFF;
  --ink: #4B3A31;
  --muted: #76655B;
  --copper: #B97843;
  --copper-dark: #8D5834;
  --secondary: #D7B28E;
  --line: #E8D8C8;
  --wash: #F5EDE5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
body.menu-open, body.dialog-open, body.cookie-modal-open { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 9px 0;
  border-bottom: 1px solid rgba(232, 216, 200, .72);
  background: rgba(252, 249, 245, .94);
  box-shadow: 0 8px 28px rgba(75, 58, 49, .035);
  backdrop-filter: blur(14px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { width: 275px; height: 91px; overflow: hidden; }
.brand img { width: 100%; height: 100%; object-fit: contain; object-position: left center; mix-blend-mode: multiply; }
.main-nav { display: flex; align-items: center; gap: 38px; font-size: 14px; }
.main-nav > a { position: relative; }
.main-nav > a::after {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  right: 100%;
  bottom: -7px;
  background: var(--copper);
  transition: right .25s ease;
}
.main-nav > a:hover::after, .main-nav > a:focus-visible::after { right: 0; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; width: 26px; height: 2px; margin: 5px 0; background: var(--ink); transition: .25s; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 48px;
  padding: 12px 28px;
  border: 1px solid var(--copper);
  border-radius: 999px;
  background: linear-gradient(135deg, #b46d36, #c68a52);
  color: #fff;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(160, 99, 50, .2); }
.button-small { min-width: 168px; min-height: 46px; padding: 10px 22px; }
.button-outline { background: transparent; color: var(--copper-dark); }
.button-outline:hover { background: #fff9f4; }
.button-compact { min-width: 138px; min-height: 42px; padding: 9px 20px; }

.hero {
  min-height: 630px;
  padding: 55px 0 45px;
  background:
    radial-gradient(circle at 74% 32%, rgba(223, 194, 170, .29), transparent 31%),
    linear-gradient(105deg, #fffdfa 0%, #fbf6f1 58%, #fdfaf7 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 66px; }
.hero-copy { padding-left: 45px; }
h1, h2, h3 { margin: 0; font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif; font-weight: 500; }
h1 { font-size: clamp(48px, 5vw, 72px); line-height: 1.12; letter-spacing: -.03em; }
.accent-line { display: block; width: 48px; height: 1px; margin: 25px 0 21px; background: var(--copper); }
.hero-copy > p { max-width: 540px; margin: 0 0 29px; color: var(--muted); font-size: 18px; line-height: 1.55; }
.hero-actions { display: flex; gap: 26px; flex-wrap: wrap; }
.hero-primary-cta { white-space: nowrap; }
.hero-visual { position: relative; min-height: 440px; display: grid; place-items: center; }
.hero-image-wrap {
  width: 100%;
  max-width: 535px;
  aspect-ratio: 1.08;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.85);
  border-radius: 45% 55% 48% 52% / 38% 42% 58% 62%;
  background: var(--wash);
  box-shadow: 25px 15px 0 rgba(240, 226, 215, .7);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.botanical { position: absolute; color: rgba(190, 125, 70, .35); font: 78px/1 Georgia, serif; letter-spacing: -19px; transform: rotate(-23deg); }
.botanical-hero { right: -18px; bottom: -10px; }

.about { padding: 54px 0 48px; background: #fff; }
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: start; max-width: 1080px; }
.about-visual { position: sticky; top: 135px; }
.about-visual::before {
  content: "⌁";
  position: absolute;
  z-index: 1;
  left: -65px;
  bottom: -25px;
  color: rgba(190,125,70,.45);
  font: 120px Georgia, serif;
  transform: rotate(-55deg);
}
.about-visual img { width: 100%; aspect-ratio: 1.34; object-fit: cover; border-radius: 35px; }
.eyebrow { margin: 0 0 4px !important; color: var(--copper-dark) !important; font-size: 13px !important; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
h2 { font-size: clamp(40px, 4vw, 52px); line-height: 1.1; }
.about-copy .accent-line { margin: 10px 0 18px; width: 35px; }
.about-copy > .eyebrow { margin-bottom: 16px !important; }
.about-copy > p:not(.eyebrow) { margin: 0 0 18px; color: var(--muted); }

.services { padding: 22px 0 28px; background: linear-gradient(180deg, #fbf6f1, #fffdfb); }
.section-heading { text-align: center; margin-bottom: 30px; }
.section-heading h2 { font-size: 44px; }
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 30px; align-items: stretch; }
.service-card {
  position: relative;
  min-height: 198px;
  padding: 55px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.72);
  text-align: center;
}
.service-icon {
  position: absolute;
  left: 50%;
  top: -31px;
  display: grid;
  place-items: center;
  width: 65px;
  height: 65px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--copper);
  font: 37px/1 Georgia, serif;
  transform: translateX(-50%);
}
.service-card h3 { min-height: 51px; margin-bottom: 10px; font-size: 21px; line-height: 1.2; }
.service-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3) { grid-column: span 2; }
.service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-card:nth-child(5) { grid-column: 4 / span 2; }
.quote {
  position: relative;
  display: grid;
  place-items: center;
  align-items: center;
  min-height: 100px;
  margin: 26px 0 0;
  padding: 28px 120px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(90deg, #f8eee6, #f4e8df);
}
.quote p { position: relative; z-index: 1; max-width: 760px; margin: 0; color: #6d625d; font-size: 19px; font-style: italic; line-height: 1.5; text-align: center; }
.quote-leaves { position: absolute; width: 62px; height: 38px; color: rgba(185,120,67,.3); pointer-events: none; }
.quote-leaves::before { content: ""; position: absolute; left: 5px; top: 20px; width: 52px; height: 1px; background: currentColor; transform: rotate(-18deg); transform-origin: left center; }
.quote-leaves i { position: absolute; width: 16px; height: 27px; border: 1px solid currentColor; border-radius: 100% 0 100% 0; }
.quote-leaves i:first-child { left: 16px; top: 3px; transform: rotate(-34deg); }
.quote-leaves i:last-child { left: 36px; top: 10px; transform: rotate(48deg) scale(.82); }
.quote-leaves-left { left: 30px; bottom: 10px; transform: rotate(-8deg); }
.quote-leaves-right { right: 30px; top: 10px; transform: scaleX(-1) rotate(-8deg); opacity: .75; }

.pricing { padding: 70px 0 62px; background: #fff; }
.section-lead { max-width: 790px; margin: 15px auto 0; color: var(--muted); }
.single-price { display: inline-block; margin: 22px auto 0; padding: 10px 20px; border: 1px solid var(--line); border-radius: 999px; background: var(--cream); color: var(--muted); }
.single-price strong { color: var(--copper-dark); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 34px; }
.price-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(160deg, #fff, #fdf9f5);
  box-shadow: 0 16px 40px rgba(91, 67, 52, .07);
  text-align: center;
}
.price-card:nth-child(2) { border-color: var(--secondary); transform: translateY(-8px); }
.price-card h3 { margin: 4px 0 24px; font-size: 36px; }
.package-description { min-height: 84px; margin: 0 0 26px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.price-card dl { margin: 0 0 22px; }
.price-card dl div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.price-card dd { margin: 0; color: var(--ink); font-weight: 600; }
.package-total { display: grid; gap: 2px; margin: 20px 0 24px; }
.package-total span { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.package-total strong { color: var(--copper-dark); font-family: "Cormorant Garamond", Georgia, serif; font-size: 34px; font-weight: 600; }
.package-button { width: 100%; min-width: 0; }
.pricing-note { margin: 24px 0 0; color: var(--muted); text-align: center; font-size: 13px; }

.contact { padding: 70px 0; background: linear-gradient(100deg, #f7eee7, #fcf8f4); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; max-width: 930px; }
.contact-grid-form { grid-template-columns: .78fr 1.22fr; max-width: 1120px; gap: 70px; align-items: start; }
.contact-copy h2 { font-size: 41px; }
.contact-copy .accent-line { margin: 10px 0 15px; width: 35px; }
.contact-copy > p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: 14px; }
.contact-copy > .contact-free-note { margin-top: 18px; padding-left: 14px; border-left: 2px solid var(--secondary); color: var(--copper-dark); font-weight: 500; line-height: 1.6; }
.contact-links { display: grid; gap: 14px; margin-top: 34px; }
.contact-links a { display: grid; gap: 2px; padding: 0 0 14px; border-bottom: 1px solid #d7b89d; color: var(--ink); }
.contact-links a span { color: var(--copper-dark); font-size: 11px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.contact-details { display: grid; justify-content: center; gap: 9px; }
.contact-details .button { margin-bottom: 4px; }
.contact-details a { display: flex; gap: 15px; align-items: center; padding: 5px 0; border-bottom: 1px solid #d7b89d; color: var(--muted); font-size: 14px; }
.contact-details a span { color: var(--ink); font-size: 20px; }
.inquiry-form {
  padding: 34px;
  border: 1px solid rgba(232,216,200,.9);
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 20px 50px rgba(86,60,43,.08);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 18px; }
.inquiry-form label { display: grid; gap: 6px; color: var(--ink); font-size: 13px; font-weight: 500; }
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: 0;
}
.inquiry-form select { min-height: 49px; }
.inquiry-form textarea { resize: vertical; }
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus { border-color: var(--copper); box-shadow: 0 0 0 3px rgba(185,120,67,.12); }
.inquiry-form .form-wide { grid-column: 1 / -1; }
.inquiry-form .privacy { display: flex; align-items: flex-start; gap: 9px; font-size: 12px; line-height: 1.45; }
.inquiry-form .privacy input { width: auto; margin-top: 3px; }
.inquiry-form .privacy a { color: var(--copper-dark); text-decoration: underline; }
.inquiry-form > .button { margin-top: 20px; }
.inquiry-form button:disabled { cursor: wait; opacity: .65; }

.site-footer { padding: 13px 0 11px; border-top: 1px solid #dfcbbb; background: #fffdfb; }
.footer-inner { display: grid; grid-template-columns: 250px 1fr 180px; align-items: center; }
.footer-brand { display: block; width: 210px; height: 75px; overflow: hidden; }
.footer-brand img { width: 100%; height: 100%; object-fit: contain; object-position: left center; mix-blend-mode: multiply; }
.footer-inner nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 28px; color: var(--muted); font-size: 12px; }
.footer-contact { display: grid; justify-items: end; gap: 4px; color: var(--muted); font-size: 12px; }
.socials { display: flex; justify-content: flex-end; gap: 12px; }
.socials a { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid #caa07c; border-radius: 50%; color: var(--copper-dark); font-family: Georgia, serif; }
.copyright { margin: 1px 0 0; color: #8a817b; text-align: center; font-size: 11px; }

.success-dialog {
  width: min(520px, calc(100% - 32px));
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fffdfb;
  color: var(--ink);
  text-align: center;
  box-shadow: 0 28px 80px rgba(80,55,37,.25);
}
.success-dialog::backdrop { background: rgba(52,42,37,.58); backdrop-filter: blur(4px); }
.success-dialog h2 { margin: 8px 0 12px; font-size: 40px; }
.success-dialog p { color: var(--muted); }
.success-icon { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto; border-radius: 50%; background: var(--wash); color: var(--copper-dark); font-size: 27px; }
.success-note { padding: 12px; border-radius: 10px; background: var(--cream); font-size: 13px; }
.success-close { margin-top: 8px; }

.booking-dialog {
  width: min(520px, calc(100% - 32px));
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fffdfb;
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(80,55,37,.25);
}
.booking-dialog::backdrop { background: rgba(52,42,37,.55); backdrop-filter: blur(4px); }
.booking-dialog h2 { font-size: 40px; }
.dialog-close { position: absolute; top: 12px; right: 18px; border: 0; background: none; color: var(--muted); font-size: 32px; cursor: pointer; }
.dialog-intro { margin: 10px 0 22px; color: var(--muted); }
.booking-dialog form { display: grid; gap: 13px; }
.booking-dialog label { display: grid; gap: 5px; color: var(--ink); font-size: 13px; }
.booking-dialog input, .booking-dialog textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  outline: 0;
}
.booking-dialog input:focus, .booking-dialog textarea:focus { border-color: var(--copper); box-shadow: 0 0 0 3px rgba(185,121,67,.12); }
.booking-dialog .privacy { display: flex; grid-template-columns: auto 1fr; align-items: flex-start; gap: 9px; line-height: 1.35; }
.booking-dialog .privacy input { width: auto; margin-top: 3px; }
.form-status { min-height: 22px; margin: 0; color: var(--copper-dark); text-align: center; }
.form-status a { text-decoration: underline; }
.page-hero { padding: 70px 0 65px; background: linear-gradient(105deg, #fffdfa, #f7eee7); text-align: center; }
.page-hero h1 { font-size: clamp(44px, 6vw, 66px); }
.legal { padding: 60px 0 80px; }
.legal .container { max-width: 850px; }
.legal h2 { margin: 36px 0 12px; font-size: 30px; }
.legal h3 { margin: 24px 0 8px; font-size: 22px; }
.legal p, .legal li { color: var(--muted); }
.legal a { color: var(--copper-dark); text-decoration: underline; }
.legal-back { color: var(--copper-dark); font-size: 14px; }
.legal ul { padding-left: 22px; }
.legal-impressum .container { max-width: 960px; }
.legal-intro { max-width: 760px; margin: 0 auto 38px; color: var(--ink) !important; font-size: 17px; line-height: 1.75; text-align: center; }
.legal-section { margin: 0 0 24px; padding: 30px 32px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.78); box-shadow: 0 12px 34px rgba(75,58,49,.045); }
.legal-section > .eyebrow { margin-bottom: 6px !important; }
.legal-section h2 { margin: 0 0 18px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-data { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; margin: 18px 0 22px; }
.legal-data div { display: grid; grid-template-columns: minmax(115px, .75fr) 1.25fr; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.legal-data dt { color: var(--copper-dark); font-size: 12px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.legal-data dd { margin: 0; color: var(--ink); }
.legal-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.legal-contact-grid-three { grid-template-columns: repeat(3, 1fr); }
.legal-contact-card { padding: 22px; border-radius: 14px; background: var(--wash); }
.legal-contact-card h3 { margin: 0 0 8px; font-size: 24px; }
.legal-contact-card p { margin: 0; }
.legal-contact-card-small { background: var(--cream); }
.legal-updated { margin: 38px 0 0; color: var(--muted); font-size: 13px; text-align: center; }
.legal-toc { margin: 0 0 28px; padding: 26px 30px; border: 1px solid var(--line); border-radius: 20px; background: var(--wash); }
.legal-toc .eyebrow { margin-bottom: 12px; }
.legal-toc ol { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 34px; margin: 0; padding-left: 22px; }
.legal-toc a { color: var(--ink); text-decoration: none; }
.legal-toc a:hover, .legal-toc a:focus-visible { color: var(--copper-dark); text-decoration: underline; }
.legal-section[id], .legal-section h3[id] { scroll-margin-top: 130px; }
.legal-notice { padding: 18px 20px; border-left: 3px solid var(--copper); border-radius: 0 12px 12px 0; background: var(--wash); color: var(--ink) !important; }
.cookie-table-wrap { overflow-x: auto; margin-top: 22px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.88); }
.cookie-table { width: 100%; min-width: 960px; border-collapse: collapse; table-layout: auto; background: transparent; font-size: 14px; line-height: 1.65; }
.cookie-table th, .cookie-table td { padding: 19px 17px; border-right: 1px solid rgba(232,216,200,.72); border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; overflow-wrap: break-word; word-break: normal; hyphens: auto; }
.cookie-table th { background: var(--wash); color: var(--copper-dark); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.cookie-table tbody tr:nth-child(even) { background: #fdf9f5; }
.cookie-table tr:last-child td { border-bottom: 0; }
.cookie-table th:last-child, .cookie-table td:last-child { border-right: 0; }
.cookie-table code { display: inline-block; max-width: 100%; color: var(--ink); font-size: 13px; overflow-wrap: anywhere; }
.cookie-col-name { width: 12%; }
.cookie-col-provider { width: 14%; }
.cookie-col-purpose { width: 19%; }
.cookie-col-type { width: 13%; }
.cookie-col-expiry { width: 13%; }
.cookie-col-basis { width: 29%; }
.cookie-policy-page { --legal-header-offset: 130px; }
.cookie-policy-page main { position: relative; }
.cookie-policy-page .cookie-policy-hero { padding: 38px 0 34px; }
.cookie-policy-page .cookie-policy-hero h1 { font-size: clamp(40px, 5vw, 58px); line-height: 1.05; }
.page-hero-intro { max-width: 760px; margin: 12px auto 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.cookie-policy-page .cookie-policy-content { padding: 42px 0 72px; }
.cookie-policy-page .cookie-policy-content > .container { width: min(1180px, calc(100% - 48px)); max-width: 1180px; }
.cookie-policy-page .cookie-policy-toc { margin-bottom: 30px; }
.cookie-policy-page .cookie-policy-toc ol { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cookie-policy-page .legal-section { margin-bottom: 26px; padding: 34px 38px; border-radius: 22px; box-shadow: 0 14px 38px rgba(75,58,49,.055); }
.cookie-policy-page .legal-section[id] { scroll-margin-top: var(--legal-header-offset); }
.cookie-policy-page .legal-section h2 { margin-bottom: 18px; font-size: clamp(29px, 3vw, 36px); line-height: 1.15; }
.cookie-policy-page .legal-section h3 { margin-top: 24px; font-size: 24px; line-height: 1.25; }
.cookie-policy-page .legal-section > p,
.cookie-policy-page .legal-section > ul { max-width: 820px; font-size: 16px; line-height: 1.75; }
.cookie-policy-page .legal-section > .legal-notice { max-width: 100%; }
.cookie-policy-page .cookie-table-section { padding: 36px 28px 30px; }
.cookie-policy-page .cookie-table-section > h2,
.cookie-policy-page .cookie-table-section > .eyebrow { margin-left: 10px; margin-right: 10px; }
.cookie-policy-page .cookie-settings-open { min-height: 48px; margin: 24px 0 32px; padding-inline: 30px; }
.cookie-policy-page .footer-inner nav { font-size: 13px; }

[hidden] { display: none !important; }
.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: auto;
  bottom: 20px;
  left: 50%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: min(1100px, calc(100% - 40px));
  max-width: none;
  margin: 0;
  padding: 22px 24px;
  border: 1px solid #d9bda4;
  border-radius: 20px;
  background: rgba(255,253,251,.98);
  box-shadow: 0 18px 55px rgba(75,58,49,.2);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  will-change: opacity, transform;
}
.cookie-banner.is-visible { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.cookie-banner h2 { margin: 0 0 5px; font-size: 25px; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.cookie-banner-copy > a, .cookie-policy-link { display: inline-block; margin-top: 7px; color: var(--copper-dark); font-size: 12px; text-decoration: underline; }
.cookie-banner-actions { display: grid; grid-template-columns: repeat(3, minmax(145px, 1fr)); gap: 9px; }
.cookie-banner-actions .button { min-width: 145px; min-height: 43px; padding: 9px 15px; font-size: 12px; }
.cookie-settings-link { color: var(--copper-dark); cursor: pointer; }
.cookie-modal {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(52,42,37,.58);
  backdrop-filter: blur(4px);
}
.cookie-modal-panel {
  position: relative;
  width: min(650px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fffdfb;
  box-shadow: 0 28px 80px rgba(80,55,37,.28);
}
.cookie-modal-panel > h2 { margin: 0 38px 8px 0; font-size: 40px; }
.cookie-modal-intro { margin: 0 0 20px; color: var(--muted); font-size: 14px; }
.cookie-modal-close { position: absolute; top: 16px; right: 18px; width: 40px; height: 40px; border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: 31px; line-height: 1; }
.cookie-category { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 22px; padding: 17px 0; border-top: 1px solid var(--line); }
.cookie-category h3 { margin: 0 0 3px; font-size: 23px; }
.cookie-category p { margin: 0; color: var(--muted); font-size: 12px; }
.cookie-switch { display: grid; justify-items: end; gap: 5px; color: var(--copper-dark); font-size: 10px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.cookie-switch input { width: 44px; height: 23px; margin: 0; accent-color: var(--copper); cursor: pointer; }
.cookie-switch input:disabled { cursor: not-allowed; opacity: .68; }
.cookie-modal-actions { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 9px; margin-top: 22px; }
.cookie-modal-actions .button { min-width: 0; min-height: 44px; padding: 9px 12px; font-size: 11px; }
.cookie-banner button:focus-visible, .cookie-modal button:focus-visible, [data-cookie-settings]:focus-visible, .cookie-banner a:focus-visible, .cookie-modal a:focus-visible, .cookie-modal input:focus-visible {
  outline: 3px solid rgba(185,120,67,.45);
  outline-offset: 3px;
}
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

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

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

@media (max-width: 980px) {
  .site-header { padding: 8px 0; }
  .brand { width: 235px; height: 85px; }
  .menu-toggle { display: block; z-index: 22; }
  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(255,253,251,.98);
    font-size: 19px;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .menu-open .main-nav { transform: none; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 35px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-copy { padding-left: 0; }
  h1 { font-size: 50px; }
  .about-grid { gap: 45px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 55px 25px; }
  .service-card:nth-child(n) { grid-column: auto; }
  .service-card:last-child { grid-column: 1 / -1; max-width: 50%; width: calc(50% - 12px); justify-self: center; }
  .quote { padding: 26px 88px; }
  .pricing-grid { gap: 16px; }
  .price-card { padding: 26px 20px; }
  .contact-grid-form { gap: 35px; }
  .footer-inner { grid-template-columns: 210px 1fr 150px; }
  .footer-inner nav { gap: 20px; }
  .legal-contact-grid-three { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .cookie-policy-page { --legal-header-offset: 112px; }
  .cookie-policy-page .cookie-policy-content > .container { width: min(100% - 32px, 700px); }
  .cookie-policy-page .cookie-policy-hero { padding: 30px 0 28px; }
  .cookie-policy-page .cookie-policy-toc ol { grid-template-columns: 1fr 1fr; gap: 8px 24px; }
  .cookie-policy-page .legal-section { padding: 28px 24px; }
  .cookie-policy-page .cookie-table-section { padding: 28px 20px; }
  .cookie-policy-page .cookie-table-section > h2,
  .cookie-policy-page .cookie-table-section > .eyebrow { margin-left: 4px; margin-right: 4px; }
  .cookie-table-wrap { overflow: visible; border: 0; border-radius: 0; }
  .cookie-table,
  .cookie-table tbody,
  .cookie-table tr,
  .cookie-table td { display: block; width: 100%; }
  .cookie-table { min-width: 0; background: transparent; font-size: 16px; line-height: 1.7; }
  .cookie-table colgroup,
  .cookie-table thead { display: none; }
  .cookie-table tbody { display: grid; gap: 18px; }
  .cookie-table tbody tr,
  .cookie-table tbody tr:nth-child(even) { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fffdfb; box-shadow: 0 10px 28px rgba(75,58,49,.055); }
  .cookie-table td { padding: 14px 16px; border-right: 0; border-bottom: 1px solid var(--line); }
  .cookie-table td::before { content: attr(data-label); display: block; margin-bottom: 4px; color: var(--copper-dark); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
  .cookie-table tr td:last-child { border-bottom: 0; }
  .cookie-table code { font-size: 15px; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 32px, 560px); }
  .hero { padding: 38px 0 55px; }
  .hero-grid, .about-grid, .contact-grid, .contact-grid-form { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  h1 { font-size: clamp(40px, 12vw, 54px); }
  .accent-line { margin-left: auto; margin-right: auto; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { justify-content: center; gap: 12px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .hero-primary-cta { padding-inline: 12px; font-size: clamp(12px, 3.7vw, 14px); }
  .hero-visual { min-height: 355px; margin-top: 18px; }
  .hero-image-wrap { max-width: 380px; }
  .about { padding: 55px 0; }
  .about-visual { order: 2; }
  .about-visual { position: relative; top: auto; }
  .about-copy { text-align: center; }
  .services { padding: 45px 0 25px; }
  .service-grid { grid-template-columns: 1fr; gap: 52px; }
  .service-card:last-child { grid-column: auto; max-width: none; width: auto; }
  .service-card { min-height: 180px; }
  .quote { min-height: 122px; padding: 28px 54px; }
  .quote p { font-size: 17px; line-height: 1.55; }
  .quote-leaves { width: 44px; height: 30px; opacity: .62; transform: scale(.74) rotate(-8deg); }
  .quote-leaves-left { left: 7px; bottom: 5px; }
  .quote-leaves-right { right: 7px; top: 5px; transform: scaleX(-1) scale(.74) rotate(-8deg); }
  .contact { padding: 42px 0; }
  .contact-copy { text-align: center; }
  .contact-copy > p br { display: none; }
  .contact-details { margin-top: 26px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card:nth-child(2) { transform: none; }
  .contact-links { margin-bottom: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .inquiry-form .form-wide { grid-column: auto; }
  .inquiry-form { padding: 25px 20px; }
  .footer-inner { grid-template-columns: 1fr auto; }
  .footer-inner nav { grid-column: 1 / -1; grid-row: 2; flex-wrap: wrap; padding: 12px 0; }
  .footer-brand { width: 180px; }
  .footer-contact { grid-column: 1 / -1; justify-items: center; margin: 8px 0 12px; }
  .success-dialog { padding: 32px 22px 24px; }
  .legal-section { padding: 24px 20px; }
  .legal-data, .legal-contact-grid { grid-template-columns: 1fr; }
  .legal-data div { grid-template-columns: 1fr; gap: 3px; }
  .legal-toc { padding: 22px 20px; }
  .legal-toc ol { grid-template-columns: 1fr; }
  .cookie-policy-page .cookie-policy-toc ol { grid-template-columns: 1fr; }
  .cookie-policy-page .cookie-policy-content { padding: 32px 0 52px; }
  .cookie-policy-page .legal-section { padding: 26px 20px; }
  .cookie-policy-page .cookie-table-section { padding: 26px 16px; }
  .cookie-policy-page .cookie-settings-open { width: 100%; min-width: 0; }
  .booking-dialog { padding: 32px 22px 24px; }
  .cookie-banner { right: auto; bottom: 16px; left: 50%; grid-template-columns: 1fr; gap: 14px; width: calc(100% - 32px); padding: 18px; }
  .cookie-banner h2 { font-size: 24px; }
  .cookie-banner-actions { grid-template-columns: 1fr; width: 100%; }
  .cookie-banner-actions .button { min-width: 0; }
  .cookie-modal { padding: 10px; }
  .cookie-modal-panel { max-height: calc(100vh - 20px); padding: 27px 20px 22px; border-radius: 18px; }
  .cookie-modal-panel > h2 { font-size: 34px; }
  .cookie-category { gap: 14px; }
  .cookie-modal-actions { grid-template-columns: 1fr; }
}

@media (max-width: 390px) {
  .brand { width: 200px; }
  .hero { padding-top: 115px; }
  .hero-actions .button { min-width: 0; }
}
