﻿:root {
  --bg: #f7f3ee;
  --paper: #fffdf9;
  --surface: #efe9e1;
  --ink: #1a1612;
  --muted: #615749;
  --line: #d8cfc2;
  --brand: #9a7748;
  --brand-strong: #6f4f27;
  --accent: #222018;
  --ok: #1e6e3d;
  --danger: #a23129;
  --shadow-sm: 0 8px 20px rgba(20, 16, 11, 0.08);
  --shadow-md: 0 18px 45px rgba(20, 16, 11, 0.14);
  --shadow-lg: 0 30px 70px rgba(20, 16, 11, 0.22);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --container: min(1240px, 92vw);
  --header-h: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(1200px 480px at 0% -10%, rgba(154, 119, 72, 0.16), transparent 60%),
    radial-gradient(900px 420px at 100% 5%, rgba(34, 32, 24, 0.11), transparent 62%),
    var(--bg);
}

a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 5rem 0; }
.section-sm { padding: 2rem 0; }

.section-title {
  margin: 0 0 1.2rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: 0.01em;
}
.eyebrow {
  margin: 0 0 .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  font-size: .75rem;
  color: var(--brand-strong);
}
.lead {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}
.skip-link {
  position: absolute;
  left: -999px;
  z-index: 999;
  padding: .75rem .9rem;
  background: #fff;
  border-radius: 8px;
}
.skip-link:focus { left: 1rem; top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid rgba(216, 207, 194, 0.9);
  backdrop-filter: blur(12px);
  background: rgba(247, 243, 238, 0.86);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(247, 243, 238, 0.96);
}
.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 700;
  text-decoration: none;
}
.primary-nav { margin-left: auto; display: flex; align-items: center; gap: .95rem; }
.nav-link {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: .93rem;
  font-weight: 600;
  text-decoration: none;
  color: #2f291f;
  padding: .42rem;
  transition: color .2s ease;
}
.nav-link:hover { color: var(--brand-strong); }
.nav-item { position: relative; }
.submenu {
  display: none;
  position: absolute;
  top: 124%;
  left: 0;
  min-width: 250px;
  padding: .75rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.submenu a {
  display: block;
  text-decoration: none;
  padding: .48rem .56rem;
  border-radius: 8px;
  font-size: .9rem;
}
.submenu a:hover { background: #f4efe7; }
.nav-item:hover .submenu,
.nav-item.open .submenu { display: block; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #2a241b;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .82rem 1.28rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand-strong); color: #fff; box-shadow: 0 10px 22px rgba(111, 79, 39, 0.3); }
.btn-outline { background: transparent; border-color: #2c261d; color: #2c261d; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-light { background: #fff; color: #2c261d; border-color: var(--line); }

.hero {
  padding-top: 4.2rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: 2rem;
  align-items: center;
}
.hero h1 {
  margin: .2rem 0 .95rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 5vw, 5.15rem);
  line-height: .93;
  letter-spacing: .01em;
}
.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.hero-media {
  margin: 0;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #cab9a3;
  box-shadow: var(--shadow-lg);
}
.hero-media img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .8rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}
.trust-strip p {
  margin: 0;
  text-align: center;
  font-size: .88rem;
  font-weight: 600;
  color: #4d4034;
}

.cards-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
}
.premium-card {
  background: var(--paper);
  border: 1px solid #ddcfbf;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.premium-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #c9b49a;
}
.premium-card figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.premium-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}
.premium-card:hover img { transform: scale(1.06); }
.card-body { padding: 1.05rem 1.05rem 1.15rem; }
.card-body h3 {
  margin: 0 0 .4rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  line-height: 1.05;
}
.card-body p { margin: 0 0 .8rem; color: var(--muted); font-size: .95rem; }
.text-link {
  text-decoration: none;
  color: var(--brand-strong);
  font-weight: 800;
}
.prose p { margin: .6rem 0; color: #41362b; max-width: 72ch; }

.process-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.process-grid article {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #fff;
  padding: 1rem;
}
.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #2b241c;
  color: #fff;
  font-weight: 700;
}
.process-grid h3 { margin: .72rem 0 .35rem; }
.process-grid p { margin: 0; color: var(--muted); font-size: .94rem; }

.filters { display: flex; gap: .55rem; flex-wrap: wrap; margin-bottom: 1rem; }
.gallery-filter-grid {
  display: grid;
  gap: .9rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery-item figcaption { padding: .72rem .78rem; color: var(--muted); font-size: .89rem; }

.testimonial-slider {
  border-radius: var(--radius-lg);
  border: 1px solid #dacdbf;
  background:
    linear-gradient(160deg, #fff 0%, #f8f1e8 100%);
  padding: 1.4rem;
  min-height: 170px;
}
.testimonial { display: none; }
.testimonial.active { display: block; animation: fadeUp .5s ease; }
.testimonial p { margin: 0; font-size: 1.04rem; }
.testimonial .who { margin-top: .75rem; color: var(--muted); font-size: .9rem; font-weight: 700; }

.area-grid { display: flex; flex-wrap: wrap; gap: .6rem; }
.area-grid a {
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .58rem .98rem;
  font-size: .92rem;
}
.area-grid a:hover { border-color: #bca68c; }

.cta-band {
  border-radius: var(--radius-lg);
  background:
    linear-gradient(130deg, #211a14 0%, #594225 45%, #8d6838 100%);
  color: #fff;
  padding: 1.8rem;
  box-shadow: var(--shadow-md);
}
.cta-band h2 {
  margin: 0 0 .55rem;
  font-size: clamp(1.8rem, 3.1vw, 2.7rem);
  font-family: 'Cormorant Garamond', serif;
}
.cta-band p { margin: 0 0 1rem; max-width: 62ch; color: #f0e8dc; }

.faq-list { display: grid; gap: .66rem; }
.faq-item {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  padding: .95rem;
  cursor: pointer;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease, padding .24s ease;
}
.faq-item.open .faq-answer {
  max-height: 250px;
  padding: 0 .95rem .95rem;
}

.site-form { max-width: 760px; display: grid; gap: .6rem; }
.assist { margin: 0 0 .35rem; font-size: .9rem; color: var(--muted); }
.site-form label { display: grid; gap: .25rem; font-weight: 700; }
.site-form input,
.site-form textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .8rem;
  font: inherit;
  width: 100%;
  background: #fff;
}
.input-error { border-color: var(--danger) !important; background: #fff5f4 !important; }
.form-feedback { min-height: 1.2rem; margin: .2rem 0 0; font-weight: 700; }
.form-feedback.success { color: var(--ok); }

.breadcrumb { padding: .85rem 0 0; }
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  color: var(--muted);
  font-size: .86rem;
}
.breadcrumb li + li::before { content: '/'; margin-right: .45rem; }

.map-placeholder {
  margin-top: .85rem;
  border: 1px dashed #b8a58d;
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  color: #4b3d31;
}

.site-footer {
  margin-top: 4rem;
  background: #18140f;
  color: #ebdece;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.3rem;
  padding: 2.5rem 0 1.5rem;
}
.site-footer h2 {
  margin: 0 0 .62rem;
  font-size: 1.12rem;
  font-family: 'Cormorant Garamond', serif;
}
.site-footer p { margin: .22rem 0; color: #d2c1ae; }
.site-footer a { color: #f8e6cd; text-decoration: none; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .32rem; }
.footer-bottom {
  border-top: 1px solid rgba(235, 222, 206, 0.19);
  padding: .9rem 0 1.4rem;
  color: #beab95;
  font-size: .85rem;
}

.floating-cta {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: .9rem;
  z-index: 130;
  display: flex;
  gap: .48rem;
}
.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 4.45rem;
  width: min(340px, calc(100vw - 2rem));
  border-radius: 12px;
  border: 1px solid #3a2f23;
  background: #201912;
  color: #e9ddcb;
  padding: .88rem;
  z-index: 129;
}
.cookie-banner p { margin: 0 0 .6rem; font-size: .88rem; }
.cookie-banner a { color: #f5d5a2; }

.not-found { min-height: 72vh; display: grid; align-content: center; }
.not-found h1 {
  margin: 0 0 .5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: .9;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .45s ease, transform .45s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1040px) {
  .menu-toggle { display: inline-block; margin-left: auto; }
  .header-cta { display: none; }
  .primary-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: .2rem;
    padding: .9rem 4vw 1.2rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    max-height: calc(100vh - var(--header-h));
    overflow: auto;
  }
  .primary-nav.open { display: flex; }
  .nav-item { width: 100%; }
  .submenu {
    position: static;
    border: 0;
    box-shadow: none;
    padding: .4rem 0 .25rem 1rem;
    min-width: 0;
  }
  .nav-item.open .submenu { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 330px; }
  .hero-media img { min-height: 330px; }
  .trust-strip { grid-template-columns: 1fr 1fr; border-radius: var(--radius-md); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 3.1rem 0; }
  .hero { padding-top: 3rem; }
  .hero h1 { font-size: clamp(2.1rem, 11vw, 3.3rem); }
  .floating-cta {
    left: .8rem;
    right: .8rem;
    transform: none;
  }
  .floating-cta .btn { flex: 1; }
  .cookie-banner {
    right: .8rem;
    left: .8rem;
    width: auto;
  }
  .trust-strip { grid-template-columns: 1fr; }
}

@media print {
  .site-header,
  .floating-cta,
  .cookie-banner,
  .menu-toggle,
  .hero-actions,
  .site-footer { display: none !important; }
  body { background: #fff; color: #000; }
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
}
.brand-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 700;
}
.brand-sub {
  margin-top: .18rem;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #6e604f;
  font-weight: 700;
}

.answer-card {
  border: 1px solid #d8c9b6;
  border-radius: 18px;
  background: linear-gradient(160deg, #fffdfa 0%, #f7efe5 100%);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.answer-card h2 {
  margin: 0 0 .48rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  line-height: 1.08;
}
.answer-card p {
  margin: 0;
  color: #4d4134;
  max-width: 70ch;
}

/* Pastel modern refresh */
:root {
  --bg: #f8f7ff;
  --paper: #ffffff;
  --surface: #f2f6ff;
  --ink: #2b2433;
  --muted: #6f6480;
  --line: #dddaf0;
  --brand: #d58ecf;
  --brand-strong: #b874c8;
  --accent: #7f6eea;
}

body {
  background:
    radial-gradient(1000px 500px at 0% -10%, rgba(255, 192, 230, 0.35), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(183, 228, 255, 0.35), transparent 62%),
    radial-gradient(700px 450px at 50% 120%, rgba(216, 196, 255, 0.25), transparent 60%),
    var(--bg);
}

.site-header {
  background: rgba(248, 247, 255, 0.86);
  border-bottom: 1px solid rgba(221, 218, 240, 0.9);
}
.site-header.is-scrolled {
  background: rgba(248, 247, 255, 0.96);
}

.btn-primary {
  background: linear-gradient(135deg, #c88fe5 0%, #9d8df5 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(157, 141, 245, 0.35);
}
.btn-accent {
  background: linear-gradient(135deg, #9e8ff7 0%, #7ab6f8 100%);
}
.btn-outline {
  border-color: #b8a6da;
  color: #6c5499;
  background: rgba(255, 255, 255, 0.75);
}

.hero-media,
.premium-card,
.gallery-item,
.testimonial-slider,
.answer-card,
.faq-item,
.process-grid article {
  border-color: #dddaf0;
}

.trust-strip {
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(245,240,255,0.95) 100%);
}

.cta-band {
  background: linear-gradient(135deg, #9d8df5 0%, #c88fe5 55%, #86c9f8 100%);
}

.brand-sub { color: #8d79b0; }
.text-link { color: #9f66c2; }

.site-footer {
  background: linear-gradient(160deg, #4f4a7a 0%, #6a5f9a 55%, #6c8ec4 100%);
  color: #f6f3ff;
}
.site-footer p { color: #ece6ff; }
.site-footer a { color: #fff; }
.footer-bottom { color: #e1d9ff; border-top: 1px solid rgba(255,255,255,.22); }

.cookie-banner {
  background: linear-gradient(135deg, #7468b8 0%, #8c76be 100%);
  border-color: #b5a7e4;
}

/* Simplified header refinement */
.simple-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.clean-nav {
  gap: .55rem;
}
.clean-nav .nav-link {
  padding: .42rem .52rem;
  font-size: .9rem;
}
.clean-nav .nav-book {
  margin-left: .25rem;
  padding: .68rem 1rem;
  font-size: .84rem;
}
@media (max-width: 1040px) {
  .clean-nav .nav-book {
    margin: .35rem 0 0;
  }
}
