:root {
  --sand: #e8d9c0;
  --sand-deep: #d0bd9a;
  --mineral: #f5eee4;
  --dune: #c9b48c;
  --ink: #2c251c;
  --ink-soft: #5c5246;
  --aurora: #2fae7a;
  --aurora-bright: #5ee0a8;
  --aurora-deep: #1c7a54;
  --haze: #9b7bc4;
  --gold: #e8d48a;
  --line: rgba(44, 37, 28, 0.12);
  --surface: rgba(245, 238, 228, 0.74);
  --danger: #b85c4a;
  --ok: #1c7a54;
  --font-display: "Saira Extra Condensed", sans-serif;
  --font-body: "Karla", sans-serif;
  --shell: min(1080px, calc(100% - 2.4rem));
  --header-h: 4.1rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  letter-spacing: 0.015em;
  color: var(--ink);
  background:
    radial-gradient(ellipse 65% 42% at 8% 0%, rgba(94, 224, 168, 0.26), transparent 55%),
    radial-gradient(ellipse 50% 38% at 95% 6%, rgba(155, 123, 196, 0.2), transparent 52%),
    radial-gradient(ellipse 75% 48% at 55% 100%, rgba(232, 212, 138, 0.22), transparent 55%),
    linear-gradient(168deg, var(--mineral) 0%, var(--sand) 50%, var(--sand-deep) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 14% 24%, rgba(44, 37, 28, 0.16), transparent),
    radial-gradient(1px 1px at 42% 60%, rgba(47, 174, 122, 0.32), transparent),
    radial-gradient(1.5px 1.5px at 76% 28%, rgba(155, 123, 196, 0.28), transparent),
    radial-gradient(1px 1px at 90% 72%, rgba(232, 212, 138, 0.42), transparent);
  opacity: 0.65;
  animation: dustdrift 26s linear infinite;
}

@keyframes dustdrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(14px, -20px, 0); }
}

@keyframes fadeup {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes aurora-shift {
  0%, 100% { opacity: 0.5; transform: scaleX(1); }
  50% { opacity: 0.82; transform: scaleX(1.05); }
}

@keyframes dust-wave {
  from { transform: scale(0.2); opacity: 0.9; }
  to { transform: scale(2.5); opacity: 0; }
}

main,
.site-header,
.site-footer,
.cookie-banner {
  position: relative;
  z-index: 1;
}

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

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

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(245, 238, 228, 0.84);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 0.12rem;
  background:
    linear-gradient(145deg, var(--aurora-bright) 0%, transparent 48%),
    linear-gradient(325deg, var(--haze) 0%, var(--gold) 70%);
  box-shadow: inset 0 0 0 1px rgba(44, 37, 28, 0.12);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  text-transform: lowercase;
}

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

.site-nav a {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--ink-soft);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-cta {
  padding: 0.42rem 0.85rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.32);
  color: var(--ink) !important;
  position: relative;
  overflow: hidden;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  margin: 0.28rem 0;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.3rem;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  color: var(--ink);
  background: transparent;
}

.btn-primary {
  background:
    linear-gradient(120deg, rgba(94, 224, 168, 0.42), rgba(232, 212, 138, 0.32)),
    rgba(255, 255, 255, 0.32);
  border-color: rgba(47, 174, 122, 0.35);
}

.btn-primary:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

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

.btn-ghost:hover {
  color: var(--ink);
  border-color: rgba(44, 37, 28, 0.28);
}

.btn .dust-wave {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(232, 212, 138, 0.55) 0%, rgba(94, 224, 168, 0.25) 40%, transparent 70%);
  animation: dust-wave 0.9s ease-out forwards;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero {
  position: relative;
  min-height: min(90vh, 800px);
  display: flex;
  align-items: flex-start;
  padding: 5.5rem 0 4rem;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(245, 238, 228, 0.92) 0%, rgba(232, 217, 192, 0.7) 42%, rgba(210, 189, 154, 0.35) 100%),
    radial-gradient(ellipse 45% 40% at 78% 30%, rgba(94, 224, 168, 0.38), transparent 60%),
    radial-gradient(ellipse 35% 30% at 30% 70%, rgba(155, 123, 196, 0.2), transparent 55%);
  animation: aurora-shift 14s ease-in-out infinite;
}

.hero .shell {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 36rem;
  animation: fadeup 0.95s ease both;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.2rem, 10vw, 6.2rem);
  letter-spacing: 0.12em;
  line-height: 0.92;
  text-transform: lowercase;
  margin: 0 0 1.1rem;
  color: var(--ink);
}

.hero-headline {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: lowercase;
  color: var(--ink);
}

.hero-lead {
  margin: 0;
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 30rem;
}

.section {
  padding: 4.4rem 0;
}

.section-tight {
  padding: 2.8rem 0 4.4rem;
}

.section-alt {
  background: rgba(255, 255, 255, 0.18);
  border-block: 1px solid var(--line);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  letter-spacing: 0.14em;
  text-transform: lowercase;
  margin: 0 0 0.7rem;
}

.section-lead {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
  max-width: 36rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.4rem;
  align-items: center;
}

.split-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(44, 37, 28, 0.12);
}

.fade-in {
  animation: fadeup 0.85s ease both;
}

.delay-1 { animation-delay: 0.12s; }

.offer-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.offer-item {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.offer-item:hover {
  background: rgba(255, 255, 255, 0.22);
  padding-left: 0.45rem;
  color: inherit;
}

.offer-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  margin: 0 0 0.3rem;
}

.offer-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.offer-meta {
  white-space: nowrap;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--aurora-deep);
}

.quote-list {
  display: grid;
  gap: 0;
}

.quote-item {
  padding: 1.45rem 0;
  border-top: 1px solid var(--line);
}

.quote-item:last-child {
  border-bottom: 1px solid var(--line);
}

.quote-item blockquote {
  margin: 0 0 0.7rem;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
}

.quote-item cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.faq-list {
  display: grid;
  gap: 1.2rem;
}

.faq-item {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.faq-item p {
  margin: 0;
  color: var(--ink-soft);
}

.page-hero {
  padding: 3.4rem 0 1.4rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: 0.12em;
  text-transform: lowercase;
  margin: 0 0 0.8rem;
}

.page-hero p {
  margin: 0;
  max-width: 40rem;
  color: var(--ink-soft);
}

.page-hero-media {
  margin-top: 1.7rem;
}

.page-hero-media img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.price-line {
  margin-top: 1rem !important;
  color: var(--aurora-deep) !important;
  letter-spacing: 0.06em;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.45rem;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  margin: 2rem 0 0.7rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose ul {
  padding-left: 1.2rem;
}

.post-meta {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

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

.note-item {
  display: grid;
  grid-template-columns: minmax(0, 220px) 1fr;
  gap: 1.5rem;
  text-decoration: none;
  color: inherit;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.note-item:hover {
  color: inherit;
}

.note-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.note-item h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  margin: 0 0 0.4rem;
}

.note-item p {
  margin: 0;
  color: var(--ink-soft);
}

.schedule-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.schedule-row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.schedule-row time {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  color: var(--aurora-deep);
}

.schedule-row h3 {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
  font-weight: 500;
}

.schedule-row p {
  margin: 0;
  color: var(--ink-soft);
}

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

.service-block {
  display: grid;
  grid-template-columns: minmax(0, 280px) 1fr;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

.service-block:hover {
  color: inherit;
}

.service-block img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-block h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  margin: 0 0 0.4rem;
}

.service-block p {
  margin: 0 0 0.6rem;
  color: var(--ink-soft);
}

.form {
  display: grid;
  gap: 1.1rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(47, 174, 122, 0.35);
  outline-offset: 1px;
}

.form-field .error {
  display: block;
  min-height: 1.2em;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: var(--danger);
}

.form-status {
  min-height: 1.4em;
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}

.form-status.is-ok { color: var(--ok); }
.form-status.is-err { color: var(--danger); }

.contact-aside {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
}

.contact-aside p {
  color: var(--ink-soft);
}

.site-footer {
  margin-top: 2rem;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--line);
  background: rgba(208, 189, 154, 0.32);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  margin: 0 0 0.5rem;
}

.footer-tag,
.footer-col p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer-heading {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-col a {
  text-decoration: none;
  color: var(--ink-soft);
}

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

.footer-base {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(245, 238, 228, 0.95);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
}

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

.cookie-inner p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  flex: 1 1 16rem;
}

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

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

@media (max-width: 900px) {
  .split,
  .footer-grid,
  .note-item,
  .service-block,
  .schedule-row {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(245, 238, 228, 0.97);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .hero {
    min-height: 78vh;
    padding-top: 4rem;
  }
}
