:root {
  --ink: #141011;
  --muted: #6e6769;
  --paper: #fffaf7;
  --cream: #f4ebe6;
  --rose: #eab5dc;
  --wine: #5d3257;
  --red: #c72531;
  --green: #1f6b58;
  --line: rgba(20, 16, 17, 0.14);
  --shadow: 0 24px 60px rgba(20, 16, 17, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fffdfb 0, var(--paper) 36%, #f7f1ed 100%);
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem clamp(1rem, 3vw, 2.5rem);
  color: #fff;
  background: rgba(20, 16, 17, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 9.5rem;
  min-width: 8rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.25rem, 2vw, 1.25rem);
}

.nav a,
.footer-links a {
  text-decoration: none;
}

.nav a {
  padding: 0.6rem 0.3rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lang-toggle,
.header-call {
  min-width: 3.1rem;
  min-height: 2.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.header-call {
  padding: 0 0.95rem;
  background: var(--rose);
  color: var(--ink);
  border-color: transparent;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
}

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

.hero-media::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(20, 16, 17, 0.86), rgba(20, 16, 17, 0.54) 44%, rgba(20, 16, 17, 0.2)),
    linear-gradient(180deg, rgba(20, 16, 17, 0.18), rgba(20, 16, 17, 0.72));
}

.hero-content {
  width: min(780px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 8rem 0 6.5rem;
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
}

.hero .eyebrow {
  color: var(--rose);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.92;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

h3 {
  margin: 0 0 0.7rem;
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 45rem;
  margin: 1.25rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.btn {
  min-height: 3.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 850;
  line-height: 1.1;
}

.btn.primary {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.btn.secondary {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.btn.quiet {
  color: var(--ink);
  background: transparent;
}

.band,
.section,
.site-footer {
  padding-inline: clamp(1rem, 4vw, 4rem);
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.fact {
  min-height: 7rem;
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding: 1.1rem;
  background: #fff;
}

.fact span,
.section-head p,
.split p,
.contact-copy p {
  color: var(--muted);
}

.fact strong {
  font-size: 1.05rem;
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.split p,
.section-head p,
.contact-copy p {
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.service-card {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(20, 16, 17, 0.05);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.55fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(10rem, 18vw);
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  min-height: 10rem;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream);
  cursor: zoom-in;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img,
.map-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.prices {
  max-width: 1380px;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(19rem, 0.8fr) minmax(35rem, 1.2fr);
  gap: 1rem;
}

.price-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 35px rgba(20, 16, 17, 0.06);
}

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

.price-table caption {
  padding: 1rem;
  text-align: left;
  color: var(--wine);
  font-weight: 900;
  font-size: 1.08rem;
}

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

.price-table td {
  text-align: right;
  font-weight: 850;
  color: var(--green);
}

.price-table thead th {
  color: var(--wine);
  background: #fbf5f8;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.map-link {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-decoration: none;
  background: var(--cream);
}

.map-link span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(20, 16, 17, 0.82);
  font-weight: 850;
}

.appointment {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
  border-top: 1px solid var(--line);
}

.appointment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.appointment-form label,
.appointment-form span {
  display: grid;
  gap: 0.45rem;
}

.appointment-form label:last-of-type,
.mail-link {
  grid-column: 1 / -1;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.85rem 0.9rem;
  background: #fffdfb;
  color: var(--ink);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 6rem;
  color: #fff;
  background: var(--ink);
}

.site-footer div:first-child {
  display: grid;
  gap: 0.3rem;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(20, 16, 17, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 88svh;
  width: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  z-index: 25;
  right: 1rem;
  bottom: 1rem;
  display: none;
  overflow: hidden;
  border-radius: 999px;
  box-shadow: 0 10px 35px rgba(20, 16, 17, 0.24);
}

.sticky-cta a {
  min-width: 6rem;
  padding: 0.9rem 1rem;
  color: #fff;
  background: var(--red);
  text-align: center;
  text-decoration: none;
  font-weight: 900;
}

.sticky-cta a + a {
  background: var(--wine);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .facts,
  .split,
  .section-head,
  .price-layout,
  .contact-section,
  .appointment {
    grid-template-columns: 1fr;
  }

  .facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(10rem, 42vw);
  }

  .price-layout {
    gap: 1.25rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0.55rem 0.75rem;
  }

  .brand {
    width: 7.75rem;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    width: calc(100% - 1.5rem);
    padding-bottom: 5.25rem;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .facts {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: 5.2rem;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(15rem, 74vw);
  }

  .gallery-item.large {
    grid-column: auto;
    grid-row: auto;
  }

  .price-table {
    min-width: 35rem;
  }

  .appointment-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
    padding-bottom: 5.5rem;
  }

  .sticky-cta {
    display: flex;
    right: 0.75rem;
    left: 0.75rem;
  }

  .sticky-cta a {
    flex: 1;
  }
}
