:root {
  --bg: #f7f5f1;
  --bg-soft: #efebe4;
  --surface: #ffffff;
  --ink: #2c2a26;
  --ink-muted: #5e5a52;
  --line: #d9d3c8;
  --accent: #5b6b4f;
  --accent-deep: #44523b;
  --accent-soft: #e4e8df;
  --warn: #8a4b3a;
  --radius: 2px;
  --shadow: 0 12px 40px rgba(44, 42, 38, 0.06);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --space: clamp(1rem, 2vw, 1.5rem);
  --shell: min(1120px, calc(100% - 2.5rem));
  --narrow: min(720px, calc(100% - 2.5rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, #ebe6dc 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, #e7ebe2 0%, transparent 45%),
    var(--bg);
  line-height: 1.65;
  font-size: 1.05rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ink);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

p { margin: 0 0 1rem; }

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow { width: var(--narrow); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus { left: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(247, 245, 241, 0.88);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a.nav-cta {
  color: var(--ink);
}

.site-nav a.nav-cta {
  border: 1px solid var(--ink);
  padding: 0.4rem 0.85rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.45rem 0.75rem;
  font: inherit;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: rise 1.2s ease-out both;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 42, 38, 0.15) 0%, rgba(44, 42, 38, 0.72) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  color: #f7f5f1;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  max-width: 36rem;
  animation: fade-up 0.9s ease 0.15s both;
}

.hero-copy h1 {
  color: #f7f5f1;
  margin-bottom: 0.4rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 700;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}

.hero-copy .lead {
  color: rgba(247, 245, 241, 0.88);
  font-size: 1.1rem;
  max-width: 32rem;
}

.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  padding: 0.7rem 1.2rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: #f7f5f1;
}

.btn-primary:hover {
  background: var(--accent-deep);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
}

.hero .btn-ghost {
  border-color: rgba(247, 245, 241, 0.7);
  color: #f7f5f1;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.offer-list {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .offer-list { grid-template-columns: repeat(2, 1fr); }
}

.offer-item {
  display: grid;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.offer-item img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  filter: saturate(0.92);
}

.offer-item h3 {
  margin-bottom: 0.35rem;
}

.offer-meta {
  color: var(--ink-muted);
  font-size: 0.92rem;
  margin: 0;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1.05fr 0.95fr; }
  .split-reverse { direction: rtl; }
  .split-reverse > * { direction: ltr; }
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.quote-block {
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin: 0;
}

.quote-block p {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.35;
  color: var(--ink);
}

.quote-meta {
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin: 0;
}

.page-header {
  padding: clamp(2.5rem, 6vw, 4rem) 0 1.5rem;
}

.page-header .lead { max-width: 40rem; }

.prose h2 { margin-top: 2rem; }
.prose ul, .prose ol { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.45rem; }

.form {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form input,
.form select,
.form textarea {
  font: inherit;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius);
}

.form textarea { min-height: 140px; resize: vertical; }

.form .field-error {
  color: var(--warn);
  font-size: 0.88rem;
  font-weight: 500;
  min-height: 1.1em;
}

.form-status {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--accent-soft);
  display: none;
}

.form-status.is-visible { display: block; }
.form-status.is-error {
  background: #f6ebe8;
  border-color: #e0c2ba;
  color: var(--warn);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; }
}

.address-block {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 0.9rem 0.6rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.price-table th {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  font-weight: 600;
}

.review-list {
  display: grid;
  gap: 1.75rem;
}

.review-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.blog-list {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-list { grid-template-columns: repeat(2, 1fr); }
}

.blog-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  margin-bottom: 0.9rem;
}

.blog-card a {
  text-decoration: none;
  color: inherit;
}

.blog-meta {
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.steps li {
  counter-increment: step;
  padding-left: 3rem;
  position: relative;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  background: var(--surface);
}

.site-footer {
  margin-top: 3rem;
  background: #2c2a26;
  color: #e8e4dc;
  padding: 3rem 0 1.5rem;
}

.site-footer a { color: #e8e4dc; }

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.2fr 1.4fr 1fr 0.8fr; }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.35rem;
}

.footer-tag,
.footer-text {
  color: rgba(232, 228, 220, 0.82);
  font-size: 0.95rem;
}

.footer-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.5rem;
  color: rgba(232, 228, 220, 0.65);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(232, 228, 220, 0.18);
  font-size: 0.9rem;
  color: rgba(232, 228, 220, 0.65);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--surface);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(44, 42, 38, 0.08);
  padding: 1rem 0;
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-inner p {
  margin: 0;
  flex: 1 1 18rem;
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
}

.cookie-banner .btn-ghost {
  color: var(--ink);
  border-color: var(--line);
}

.detail-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.75rem;
}

.muted { color: var(--ink-muted); }

.legal-page { padding-bottom: 4rem; }

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.cookies-table th {
  background: var(--bg-soft);
}

.error-page {
  min-height: 60vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 3rem 1rem;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes rise {
  from { transform: scale(1.04); opacity: 0.6; }
  to { transform: scale(1); opacity: 1; }
}

.reveal {
  animation: fade-up 0.8s ease both;
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.85rem;
  }
  .site-nav.is-open { display: flex; }
}
