:root {
  --ink: #253020;
  --muted: #687060;
  --forest: #3c4a31;
  --moss: #637250;
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --copper: #b96f45;
  --copper-dark: #8f5234;
  --line: rgba(60, 74, 49, 0.16);
  --shadow: 0 22px 70px rgba(37, 48, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section,
#cenik {
  scroll-margin-top: 132px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.modal-open,
body.nav-open,
body.gallery-open,
body.offer-open {
  overflow: hidden;
}

img,
iframe,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 94px;
  display: grid;
  grid-template-columns: minmax(190px, 0.58fr) minmax(0, 1.55fr) minmax(210px, 0.58fr);
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  padding: 6px clamp(18px, 3.8vw, 54px);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-logo {
  width: min(150px, 24vw);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.9vw, 30px);
  font-size: clamp(0.9rem, 0.92vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: none;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.main-nav > a::after,
.nav-dropdown-trigger::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--copper);
  content: "";
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after,
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after {
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown {
  position: relative;
  padding: 18px 0;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown-trigger::before {
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  order: 2;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-trigger::before,
.nav-dropdown:focus-within .nav-dropdown-trigger::before,
.nav-dropdown.is-open .nav-dropdown-trigger::before {
  transform: translateY(1px) rotate(225deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 280px;
  padding: 12px;
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(60, 74, 49, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(37, 48, 32, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  color: var(--ink);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: none;
  transition: background 160ms ease, color 160ms ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--copper-dark);
  background: rgba(185, 111, 69, 0.1);
  outline: none;
}

.header-call {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  color: #fff;
  background: var(--forest);
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(60, 74, 49, 0.22);
}

.header-call svg,
.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(26, 25, 18, 0.76), rgba(26, 25, 18, 0.28) 48%, rgba(26, 25, 18, 0.08)),
    url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1800&q=84") center / cover;
}

.hero::after {
  position: absolute;
  right: -4vw;
  bottom: -1px;
  left: -4vw;
  height: 86px;
  background: var(--paper);
  clip-path: ellipse(58% 62% at 50% 100%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 36px));
  margin-left: clamp(20px, 6vw, 82px);
  color: #fffdf8;
}

.hero-home-photo {
  position: absolute;
  top: clamp(94px, 13vh, 136px);
  right: clamp(28px, 6vw, 96px);
  z-index: 1;
  width: clamp(300px, 30vw, 460px);
  margin: 0;
  padding: 10px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(255, 253, 248, 0.48);
  border-radius: 10px;
  box-shadow: 0 22px 56px rgba(20, 18, 12, 0.22);
  transform: rotate(1deg);
}

.hero-home-photo img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  object-position: 58% center;
  border-radius: 7px;
}

.eyebrow {
  margin: 0 0 8px;
  color: #f5c792;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.1rem);
  line-height: 0.98;
  font-weight: 700;
}

.hero-title {
  max-width: 760px;
  font-size: clamp(2.6rem, 4.7vw, 4.25rem);
  white-space: nowrap;
}

.script {
  max-width: 540px;
  margin-bottom: 32px;
  color: #ffd7a8;
  font-family: "Marck Script", cursive;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.25;
}

.hero-copy {
  max-width: 450px;
  margin-bottom: 34px;
  color: rgba(255, 253, 248, 0.92);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--moss), var(--forest));
  box-shadow: 0 16px 34px rgba(37, 48, 32, 0.22);
}

.btn-secondary {
  color: #ffe2bd;
  border-color: #f0bd7d;
  background: rgba(0, 0, 0, 0.12);
}

.btn-gift {
  color: #fffdf8;
  border-color: rgba(255, 253, 248, 0.58);
  background: rgba(255, 253, 248, 0.1);
  backdrop-filter: blur(3px);
}

.services {
  padding: 64px clamp(18px, 5vw, 72px) 80px;
  background:
    radial-gradient(circle at 12% 10%, rgba(185, 111, 69, 0.08), transparent 30%),
    linear-gradient(180deg, var(--paper), #f3f7ef);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading span {
  display: block;
  width: 46px;
  height: 2px;
  margin: 0 auto 12px;
  background: var(--copper);
}

.section-heading h1,
.section-heading h2 {
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.section-heading p {
  color: var(--muted);
}

.section-heading-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-heading-left span {
  margin-left: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, 1fr));
  gap: 42px 34px;
  max-width: 1040px;
  margin: 0 auto;
}

.services-voucher {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  max-width: 1040px;
  margin: 52px auto 0;
  padding: 28px;
  background:
    radial-gradient(circle at 92% 16%, rgba(185, 111, 69, 0.14), transparent 26%),
    linear-gradient(135deg, #fffdf8, #f1e8d8);
  border: 1px solid rgba(60, 74, 49, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(37, 48, 32, 0.08);
}

.services-voucher .eyebrow {
  margin-bottom: 8px;
  color: var(--copper-dark);
}

.services-voucher h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  line-height: 1;
}

.services-voucher p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: #424b3c;
}

.services-voucher-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.service-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  min-height: 300px;
  text-align: center;
  border-radius: 8px;
  outline-offset: 10px;
  transition: color 180ms ease, transform 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  color: var(--copper-dark);
  transform: translateY(-4px);
}

.service-card:hover .service-icon,
.service-card:focus-visible .service-icon,
.service-card:hover .service-image,
.service-card:focus-visible .service-image {
  box-shadow: inset 0 0 0 1px rgba(185, 111, 69, 0.18), 0 20px 44px rgba(37, 48, 32, 0.12);
}

.service-card h3 {
  max-width: 210px;
  margin-bottom: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 1.8vw, 1.62rem);
  line-height: 1.15;
  font-weight: 700;
}

.service-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  color: var(--copper-dark);
  background: rgba(241, 232, 216, 0.74);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.65), 0 16px 36px rgba(37, 48, 32, 0.06);
}

.service-icon::after {
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 13px;
  height: 13px;
  border: 1.5px solid rgba(185, 111, 69, 0.44);
  border-radius: 999px;
  content: "";
}

.service-icon svg {
  width: 72px;
  height: 72px;
}

.service-icon path,
.service-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon .accent {
  stroke: var(--copper);
}

.service-image {
  width: min(100%, 340px);
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  background: rgba(241, 232, 216, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.65), 0 16px 36px rgba(37, 48, 32, 0.08);
  transition: box-shadow 180ms ease;
}

.price-page {
  min-height: calc(100vh - 170px);
}

.price-page .section-heading {
  max-width: 860px;
}

.price-page .section-heading .eyebrow {
  margin-bottom: 10px;
  color: #f0bd7d;
}

.price-service-card {
  position: relative;
}

.price-service-card::after {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 14px;
  color: #fffdf8;
  background: rgba(37, 48, 32, 0.9);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(37, 48, 32, 0.18);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
  content: "Zobrazit cenu";
}

.price-service-card:hover::after,
.price-service-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.service-detail-hero {
  padding: 24px clamp(18px, 5vw, 72px) 28px;
  background:
    radial-gradient(circle at 58% 45%, rgba(222, 185, 132, 0.18), transparent 30%),
    linear-gradient(105deg, #fffdf8 0%, #fffaf2 56%, #f3eee5 100%);
}

.service-detail-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--copper);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(220px, 330px) minmax(260px, 330px);
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.service-detail-copy {
  max-width: 760px;
  color: var(--ink);
}

.service-detail-side {
  display: grid;
  gap: 18px;
}

.service-detail-visual {
  margin: 0;
  padding: 12px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(255, 253, 248, 0.7);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-detail-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.service-detail-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 4vw, 4rem);
  white-space: nowrap;
}

.service-detail-copy .script {
  color: var(--copper-dark);
  margin-bottom: 22px;
}

.service-detail-text {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--ink);
  font-size: 1.1rem;
}

.service-hero-illustration {
  display: block;
  width: min(100%, 320px);
  height: auto;
  margin: 0;
  filter: drop-shadow(0 24px 34px rgba(155, 92, 54, 0.16));
}

.btn-light {
  color: var(--ink);
  border-color: rgba(60, 74, 49, 0.26);
  background: rgba(255, 253, 248, 0.55);
}

.price-panel {
  padding: 34px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(255, 253, 248, 0.7);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-panel span {
  display: block;
  margin-bottom: 6px;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-detail-copy .eyebrow {
  color: var(--copper-dark);
}

.price-panel strong {
  display: block;
  margin-bottom: 18px;
  color: var(--copper-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.05rem, 3vw, 3.15rem);
  line-height: 1;
  white-space: nowrap;
}

.price-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.duration-options {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(60, 74, 49, 0.14);
}

.duration-options h2 {
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1;
}

.duration-options dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 18px;
  margin: 0;
}

.duration-options dt,
.duration-options dd {
  margin: 0;
}

.duration-options dt {
  color: var(--ink);
  font-weight: 800;
}

.duration-options dd {
  color: var(--copper-dark);
  font-weight: 800;
  text-align: right;
}

.service-detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px clamp(18px, 5vw, 72px) 72px;
}

.detail-card {
  padding: clamp(26px, 4vw, 42px);
  background: #fffdf8;
  border: 1px solid rgba(60, 74, 49, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(37, 48, 32, 0.08);
}

.detail-card-muted {
  background: #f3f7ef;
}

.detail-card h2 {
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
}

.detail-card p {
  margin-bottom: 0;
  color: #424b3c;
}

.detail-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-card li {
  position: relative;
  padding-left: 26px;
  color: #424b3c;
  font-weight: 600;
}

.detail-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--copper);
  border-radius: 999px;
  content: "";
  transform: translateY(-50%);
}

.duration-detail-card {
  grid-column: 1 / -1;
}

.duration-detail-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
}

.duration-detail-card dl > div {
  display: flex;
  align-items: baseline;
  gap: 18px;
  min-height: 0;
  padding: 13px 16px;
  background: rgba(241, 232, 216, 0.5);
  border: 1px solid rgba(60, 74, 49, 0.1);
  border-radius: 8px;
}

.duration-detail-card dt,
.duration-detail-card dd {
  margin: 0;
}

.duration-detail-card dt {
  flex: 0 0 86px;
  color: var(--copper-dark);
  font-weight: 800;
}

.duration-detail-card dd {
  flex: 1;
  color: #424b3c;
  font-weight: 600;
}

.about-contact {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(300px, 0.86fr) minmax(500px, 1.36fr);
  min-height: 470px;
  background: #fff9f1;
}

.certificates {
  padding: 66px clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, #f3f7ef, #fff9f1);
}

.certificate-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.certificate-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid rgba(60, 74, 49, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(37, 48, 32, 0.08);
  text-align: center;
  transition: color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.certificate-card:hover,
.certificate-card:focus-visible {
  color: var(--copper-dark);
  transform: translateY(-3px);
  box-shadow: 0 20px 52px rgba(37, 48, 32, 0.13);
}

.certificate-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
}

.certificate-card span {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.15;
  font-weight: 700;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
  width: 100vw;
  height: 100vh;
  padding: clamp(14px, 3vw, 26px);
  color: #fffdf8;
  background: rgba(24, 30, 21, 0.92);
}

.gallery-lightbox-header,
.gallery-lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.gallery-lightbox-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.1;
}

.gallery-close,
.gallery-arrow {
  display: grid;
  place-items: center;
  color: #fffdf8;
  background: rgba(255, 253, 248, 0.14);
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 999px;
  cursor: pointer;
  line-height: 1;
}

.gallery-close {
  width: 44px;
  height: 44px;
  font-size: 2rem;
}

.gallery-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  max-width: 1180px;
  min-height: 0;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(58px, 5vw, 76px);
  overflow: visible;
}

.gallery-stage img {
  justify-self: center;
  align-self: center;
  max-width: 100%;
  max-height: calc(100vh - 156px);
  width: auto;
  height: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.35);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: clamp(40px, 6vw, 54px);
  height: clamp(40px, 6vw, 54px);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  transform: translateY(-50%);
}

.gallery-prev {
  left: 0;
}

.gallery-next {
  right: 0;
}

.gallery-close:hover,
.gallery-close:focus-visible,
.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  background: rgba(255, 253, 248, 0.24);
  outline: none;
}

.gallery-lightbox-footer {
  justify-content: center;
  color: rgba(255, 253, 248, 0.78);
  font-weight: 700;
}

.about-visual {
  background:
    linear-gradient(90deg, rgba(255, 249, 241, 0.2), rgba(255, 249, 241, 0.86)),
    url("https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=980&q=80") center / cover;
}

.about,
.contact {
  padding: 42px clamp(22px, 2.7vw, 36px);
}

.about p {
  max-width: 520px;
  color: #424b3c;
  line-height: 1.55;
}

.credential-note {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 450px;
  margin: 18px 0 10px;
  padding: 12px 14px;
  color: var(--forest);
  background: rgba(255, 253, 248, 0.68);
  border: 1px solid rgba(60, 74, 49, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(37, 48, 32, 0.07);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.credential-note:hover,
.credential-note:focus-visible {
  border-color: rgba(185, 111, 69, 0.26);
  box-shadow: 0 18px 38px rgba(37, 48, 32, 0.11);
  transform: translateY(-2px);
}

.credential-note svg {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  padding: 8px;
  color: var(--copper);
  background: #fffdf8;
  border-radius: 999px;
}

.credential-note path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.credential-note strong,
.credential-note span {
  display: block;
}

.credential-note strong {
  font-size: 0.88rem;
  line-height: 1.25;
}

.credential-note span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.signature {
  color: var(--copper);
  font-family: "Marck Script", cursive;
  font-size: 1.8rem;
  margin: 18px 0 18px;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  max-width: 500px;
}

.about-more {
  flex: 0 0 auto;
  width: auto;
  min-width: 172px;
  min-height: 42px;
  margin-top: 0;
  padding: 0 24px;
  color: var(--forest);
  border-color: rgba(60, 74, 49, 0.24);
  background: rgba(255, 253, 248, 0.58);
  white-space: nowrap;
}

.about-more:hover,
.about-more:focus-visible {
  color: #fffdf8;
  background: var(--forest);
}

.about-review {
  min-width: 226px;
  color: var(--copper-dark);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 450px;
  margin-top: 34px;
}

.values div {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.values svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  color: var(--copper);
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(37, 48, 32, 0.1);
}

.values path,
.contact-list svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact {
  display: grid;
  grid-template-columns: minmax(250px, 0.92fr) minmax(240px, 0.72fr);
  align-items: center;
  gap: clamp(18px, 2.8vw, 32px);
  background:
    radial-gradient(circle at 80% 20%, rgba(99, 114, 80, 0.11), transparent 30%),
    linear-gradient(135deg, #fffdf8, #eef4e9);
}

.about-page-hero {
  padding: 52px clamp(18px, 5vw, 72px) 70px;
  background:
    radial-gradient(circle at 16% 20%, rgba(185, 111, 69, 0.12), transparent 28%),
    linear-gradient(135deg, #fffdf8, #f3f7ef);
}

.about-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
}

.about-page-copy h1 {
  color: var(--ink);
  font-size: clamp(2.55rem, 5vw, 4.25rem);
  white-space: nowrap;
}

.about-page-copy .script {
  color: var(--copper-dark);
}

.about-page-copy p:not(.eyebrow):not(.script) {
  max-width: 620px;
  color: #424b3c;
  font-size: 1.08rem;
}

.about-page-photo {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  justify-self: end;
  border: 12px solid rgba(255, 253, 248, 0.86);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-page-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.about-story {
  max-width: 1180px;
  margin: 0 auto;
  padding: 66px clamp(18px, 5vw, 72px);
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 54px);
}

.about-story-grid p {
  margin: 0;
  color: #424b3c;
}

.about-story-long .about-story-grid {
  display: block;
  max-width: 900px;
}

.about-story-long .about-story-grid p + p {
  margin-top: 18px;
}

.about-story a {
  color: var(--copper-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.about-story-approach {
  padding-top: 0;
}

.about-gallery-section {
  padding: 64px clamp(18px, 5vw, 72px) 76px;
  background: linear-gradient(180deg, #f3f7ef, #fff9f1);
}

.about-photo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.about-photo-item {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 16px 42px rgba(37, 48, 32, 0.1);
}

.about-photo-item::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(37, 48, 32, 0.62));
  content: "";
}

.about-photo-item span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: #fffdf8;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.about-photo-one {
  background-image: url("https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=980&q=82");
}

.about-photo-two {
  background-image: url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=980&q=82");
}

.about-photo-three {
  background-image: url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=980&q=82");
}

.maserna-hero .about-page-grid {
  align-items: center;
}

.maserna-hero .about-page-copy h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 4.25vw, 4.05rem);
  white-space: normal;
}

.maserna-feature-photo {
  justify-self: end;
  width: min(100%, 500px);
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.maserna-gallery-section {
  padding: 64px clamp(18px, 5vw, 72px) 78px;
  background: linear-gradient(180deg, #f4f7ef, #fff9f1);
}

.maserna-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.maserna-gallery-card {
  position: relative;
  display: block;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  color: #fffdf8;
  background: #f3eee4;
  border: 1px solid rgba(60, 74, 49, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(37, 48, 32, 0.11);
}

.maserna-gallery-card::before {
  display: none;
}

.maserna-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.maserna-gallery-card span {
  display: none;
}

.maserna-gallery-card:hover img,
.maserna-gallery-card:focus-visible img {
  filter: saturate(1.04) brightness(1.02);
  transform: scale(1.035);
}

.maserna-gallery-card:focus-visible {
  outline: 3px solid rgba(185, 111, 69, 0.45);
  outline-offset: 4px;
}

.maserna-gallery-card.is-large {
  grid-column: auto;
  grid-row: auto;
}

.maserna-gallery-card.is-wide {
  grid-column: auto;
}

.maserna-hero-photo {
  align-self: stretch;
  min-height: 420px;
}

.maserna-hero-photo::before {
  background: linear-gradient(180deg, rgba(37, 48, 32, 0.08), rgba(37, 48, 32, 0.58));
}

.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 62px clamp(18px, 5vw, 72px) 76px;
}

.about-cta h2 {
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1;
}

.about-cta p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 0;
  color: #424b3c;
}

.voucher-hero {
  padding: 46px clamp(18px, 5vw, 72px) 70px;
  background:
    radial-gradient(circle at 80% 22%, rgba(185, 111, 69, 0.16), transparent 28%),
    linear-gradient(135deg, #fffdf8, #f3f7ef);
}

.voucher-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.58fr);
  gap: clamp(24px, 4vw, 40px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

.voucher-copy {
  max-width: 680px;
  margin: 0;
  text-align: left;
}

.voucher-copy h1 {
  color: var(--ink);
  font-size: clamp(2.85rem, 4vw, 4.35rem);
  line-height: 0.96;
  white-space: nowrap;
}

.voucher-copy .script {
  color: var(--copper-dark);
}

.voucher-copy p:not(.eyebrow):not(.script) {
  max-width: 620px;
  color: #424b3c;
  font-size: 1.08rem;
}

.voucher-copy .hero-actions {
  justify-content: flex-start;
}

.voucher-secondary {
  color: var(--forest);
  border-color: rgba(60, 74, 49, 0.28);
  background: rgba(255, 253, 248, 0.5);
}

.voucher-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1600 / 765;
  justify-self: center;
  padding: 0;
  overflow: hidden;
  background: #fffaf3;
  border: 1px solid rgba(185, 111, 69, 0.34);
  border-radius: 8px;
  box-shadow: 0 24px 56px rgba(37, 48, 32, 0.14);
  cursor: zoom-in;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.voucher-card:hover,
.voucher-card:focus-visible {
  box-shadow: 0 30px 68px rgba(37, 48, 32, 0.18);
  outline: none;
  transform: translateY(-2px);
}

.voucher-card img {
  display: block;
  width: 100%;
  height: auto;
}

.voucher-lightbox .gallery-stage {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1500px;
}

.voucher-lightbox .gallery-stage img {
  max-width: calc(100vw - 76px);
  max-height: calc(100vh - 156px);
}

.voucher-details {
  padding: 64px clamp(18px, 5vw, 72px);
}

.voucher-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.voucher-detail-grid div {
  padding: 24px;
  background: #fffdf8;
  border: 1px solid rgba(60, 74, 49, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(37, 48, 32, 0.08);
}

.voucher-detail-grid h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1;
}

.voucher-detail-grid p {
  margin-bottom: 0;
  color: #424b3c;
}

.voucher-cta {
  background: linear-gradient(180deg, #f3f7ef, #fff9f1);
}

.internal-price-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 86% 12%, rgba(185, 111, 69, 0.12), transparent 28%),
    linear-gradient(180deg, #fffdf8, #f3f7ef);
}

.internal-price-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px clamp(18px, 5vw, 72px) 24px;
}

.internal-price-hero h1 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.internal-price-hero p:not(.eyebrow) {
  max-width: 720px;
  color: #424b3c;
  font-size: 1.08rem;
}

.internal-price-list {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px clamp(18px, 5vw, 72px) 72px;
}

.internal-price-list > div {
  display: grid;
  gap: 16px;
}

.internal-price-card {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 28px);
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(60, 74, 49, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(37, 48, 32, 0.07);
}

.internal-price-card-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
}

.internal-price-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1;
}

.internal-price-card-heading strong {
  color: var(--copper-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  white-space: nowrap;
}

.internal-price-card p {
  margin: 0;
  color: #424b3c;
}

.internal-price-durations {
  display: grid;
  gap: 8px;
  margin: 0;
}

.internal-price-durations div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 10px 12px;
  background: #f7f1e7;
  border: 1px solid rgba(60, 74, 49, 0.1);
  border-radius: 6px;
}

.internal-price-durations dt,
.internal-price-durations dd {
  margin: 0;
}

.internal-price-durations dt {
  color: var(--ink);
  font-weight: 700;
}

.internal-price-durations dd {
  color: var(--copper-dark);
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.internal-price-card a {
  width: fit-content;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(60, 74, 49, 0.24);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
}

.contact-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(60, 74, 49, 0.12);
}

.contact-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-list dt {
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.2;
  font-weight: 700;
}

.contact-list dd a {
  transition: color 160ms ease;
}

.contact-list dd a:hover,
.contact-list dd a:focus-visible {
  color: var(--copper-dark);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-call,
.contact-voucher {
  width: min(100%, 230px);
  min-height: 44px;
}

.contact-voucher {
  color: var(--forest);
  border-color: rgba(60, 74, 49, 0.28);
  background: rgba(255, 253, 248, 0.64);
}

.map-wrap {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 1;
  justify-self: center;
  overflow: hidden;
  border: 10px solid rgba(255, 253, 248, 0.9);
  border-radius: 8px;
  background: #dde4d5;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85) contrast(0.98);
}


.order-modal[hidden] {
  display: none;
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 20px;
}

.order-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37, 48, 32, 0.58);
  backdrop-filter: blur(5px);
}

.order-dialog {
  position: relative;
  width: min(100%, 470px);
  max-height: min(700px, calc(100vh - 40px));
  overflow: auto;
  padding: clamp(18px, 3vw, 26px);
  background: var(--paper);
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(25, 31, 21, 0.28);
}

.order-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--forest);
  background: rgba(241, 232, 216, 0.72);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

.order-dialog h2 {
  margin: 0 44px 6px 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.35rem);
  line-height: 1;
}

.order-dialog p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.order-form {
  display: grid;
  gap: 9px;
}

.order-form label {
  display: grid;
  gap: 4px;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.order-form [hidden] {
  display: none !important;
}

.order-form .order-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(241, 232, 216, 0.5);
  border: 1px solid rgba(60, 74, 49, 0.12);
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.order-spam-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.order-checkbox input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--forest);
}

.order-form input,
.order-form textarea {
  width: 100%;
  padding: 9px 11px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(60, 74, 49, 0.2);
  border-radius: 8px;
  font: inherit;
  letter-spacing: 0;
}

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

.order-captcha input {
  max-width: 110px;
}

.order-form input:focus,
.order-form textarea:focus {
  border-color: var(--copper);
  outline: 3px solid rgba(185, 111, 69, 0.16);
}

.order-submit {
  width: 100%;
  min-height: 46px;
  margin-top: 2px;
}

.order-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.order-status {
  min-height: 20px;
  margin: 0;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 800;
}

.order-status.is-error {
  color: var(--copper-dark);
}

.welcome-offer[hidden] {
  display: none;
}

.welcome-offer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.welcome-offer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37, 48, 32, 0.58);
  backdrop-filter: blur(5px);
}

.welcome-offer-dialog {
  position: relative;
  width: min(100%, 520px);
  overflow: hidden;
  padding: clamp(30px, 5vw, 46px);
  background:
    radial-gradient(circle at 85% 18%, rgba(185, 111, 69, 0.16), transparent 28%),
    linear-gradient(135deg, #fffdf8, #f3f7ef);
  border: 1px solid rgba(255, 253, 248, 0.82);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(25, 31, 21, 0.28);
  text-align: center;
}

.welcome-offer-dialog::before,
.welcome-offer-dialog::after {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(185, 111, 69, 0.22);
  border-radius: 999px;
  content: "";
}

.welcome-offer-dialog::before {
  top: -72px;
  left: -62px;
}

.welcome-offer-dialog::after {
  right: -76px;
  bottom: -82px;
}

.welcome-offer-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--forest);
  background: rgba(241, 232, 216, 0.72);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

.welcome-offer-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  margin: 0 auto 18px;
  color: #fffdf8;
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(143, 82, 52, 0.28);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.1rem;
  line-height: 1;
  font-weight: 700;
}

.welcome-offer-dialog h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.35rem, 5vw, 3.4rem);
  line-height: 0.98;
}

.welcome-offer-text {
  position: relative;
  z-index: 1;
  max-width: 370px;
  margin: 0 auto 26px;
  color: #424b3c;
  font-size: 1.08rem;
}

.welcome-offer-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.welcome-offer-secondary {
  color: var(--forest);
  border-color: rgba(60, 74, 49, 0.24);
  background: rgba(255, 253, 248, 0.52);
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  padding: 22px;
  color: rgba(255, 253, 248, 0.9);
  background: linear-gradient(135deg, #253020, #3c4a31);
  font-size: 0.94rem;
}

@media (max-width: 1120px) {
  .hero-home-photo {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header-call {
    justify-self: center;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px 24px;
  }

  .about-contact {
    grid-template-columns: minmax(300px, 0.82fr) minmax(460px, 1.18fr);
    min-height: auto;
  }

  .about-visual {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    gap: 8px;
    padding: 10px 16px;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 6px 16px;
    line-height: 1.2;
  }

  .nav-dropdown {
    padding: 6px 0;
  }

  .nav-dropdown.is-open .nav-dropdown-trigger::after {
    opacity: 1;
    transform: translateY(0);
  }

  .hero {
    min-height: 500px;
    background-position: 58% center;
  }

  .hero::after {
    height: 58px;
  }

  .services {
    padding-top: 46px;
    padding-bottom: 54px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 18px;
  }

  .services-voucher {
    grid-template-columns: 1fr;
  }

  .services-voucher-actions {
    justify-content: flex-start;
  }

  .service-card {
    gap: 12px;
    min-height: 0;
  }

  .about-contact,
  .contact,
  .about-page-grid,
  .about-story-grid,
  .service-detail-grid,
  .service-detail-body {
    grid-template-columns: 1fr;
  }

  .about-page-hero {
    padding: 38px 16px 52px;
  }

  .about-page-photo {
    max-width: 460px;
    justify-self: center;
  }

  .about-photo-grid {
    grid-template-columns: 1fr;
  }

  .about-photo-item {
    min-height: 260px;
  }

  .about-cta {
    display: grid;
    padding: 46px 16px 58px;
  }

  .service-detail-hero {
    padding: 22px 16px 28px;
  }

  .service-hero-illustration {
    width: min(70vw, 245px);
    justify-self: center;
    margin: -4px auto 4px;
  }

  .service-detail-body {
    gap: 16px;
    padding: 38px 16px 52px;
  }

  .price-panel {
    padding: 26px;
  }

  .about {
    padding-bottom: 18px;
  }

  .contact {
    padding-top: 24px;
  }

  .map-wrap {
    width: min(100%, 340px);
  }

  .voucher-hero {
    padding: 42px 16px 54px;
  }

  .voucher-hero-grid,
  .voucher-detail-grid {
    grid-template-columns: 1fr;
  }

  .voucher-card {
    min-height: 0;
  }

  .voucher-copy h1 {
    white-space: normal;
  }

  .certificate-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .voucher-hero {
    padding: 34px 14px 44px;
  }

  .voucher-copy .script {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .voucher-card {
    min-height: 0;
  }

  .voucher-details {
    padding: 42px 14px;
  }

  .voucher-detail-grid div {
    padding: 18px;
  }

  .voucher-cta .hero-actions,
  .voucher-cta .btn {
    width: 100%;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 66px;
    grid-template-columns: 1fr auto;
    justify-items: stretch;
    padding: 8px 14px;
    backdrop-filter: none;
  }

  .brand-logo {
    width: min(136px, 54vw);
    height: auto;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 1003;
    justify-self: end;
    display: grid;
    align-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0 10px;
    color: var(--forest);
    background: rgba(241, 232, 216, 0.72);
    border: 1px solid rgba(60, 74, 49, 0.12);
    border-radius: 999px;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-header.menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header::before {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(37, 48, 32, 0.38);
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .site-header.menu-open::before {
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
    width: min(84vw, 330px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 78px 22px 24px;
    overflow: auto;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: -22px 0 56px rgba(37, 48, 32, 0.18);
    font-size: 0.94rem;
    line-height: 1.2;
    text-align: left;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .main-nav > a,
  .nav-dropdown-trigger {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(60, 74, 49, 0.12);
  }

  .main-nav > a::after,
  .nav-dropdown-trigger::after {
    display: none;
  }

  .nav-dropdown {
    display: grid;
    width: 100%;
    padding: 0;
    justify-items: stretch;
  }

  .header-call {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    max-height: none;
    margin: 0;
    padding: 6px 0 10px 12px;
    overflow: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 10px 0 10px 14px;
    border-bottom: 0;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 430px;
    background:
      linear-gradient(90deg, rgba(26, 25, 18, 0.82), rgba(26, 25, 18, 0.58) 56%, rgba(26, 25, 18, 0.28)),
      url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1800&q=84") 62% center / cover;
  }

  .hero::after {
    height: 44px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.48);
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.7rem);
    white-space: normal;
  }

  .script {
    margin-bottom: 20px;
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .hero-copy {
    margin-bottom: 24px;
    font-size: 1.12rem;
  }

  .service-detail-copy h1 {
    white-space: normal;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .btn {
    min-height: 46px;
  }

  .services {
    padding: 38px 12px 42px;
  }

  .section-heading h2,
  .section-heading h1 {
    font-size: clamp(1.9rem, 8vw, 2.45rem);
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 10px;
  }

  .services-voucher {
    margin-top: 34px;
    padding: 22px;
  }

  .services-voucher-actions,
  .contact-actions {
    width: 100%;
  }

  .internal-price-hero {
    padding: 36px 14px 16px;
  }

  .internal-price-list {
    padding: 14px 14px 42px;
  }

  .internal-price-card-heading,
  .internal-price-durations div {
    grid-template-columns: 1fr;
  }

  .internal-price-card-heading {
    display: grid;
    gap: 8px;
  }

  .internal-price-durations dd {
    text-align: left;
  }

  .service-icon {
    width: 100px;
    height: 100px;
  }

  .service-icon svg {
    width: 62px;
    height: 62px;
  }

  .service-image {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .service-card h3 {
    max-width: 150px;
    font-size: 1.06rem;
  }

  .service-detail-copy h1 {
    font-size: clamp(2rem, 8vw, 2.65rem);
  }

  .price-panel strong {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }

  .certificates {
    padding: 40px 12px;
  }

  .certificate-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .certificate-card {
    padding: 10px;
  }

  .welcome-offer {
    padding: 14px;
  }

  .welcome-offer-dialog {
    padding: 28px 20px 24px;
  }

  .welcome-offer-mark {
    width: 96px;
    height: 96px;
    font-size: 2.55rem;
  }

  .welcome-offer-actions,
  .welcome-offer-actions .btn {
    width: 100%;
  }

  .order-modal {
    align-items: start;
    padding: 14px;
    padding-top: max(14px, env(safe-area-inset-top));
  }

  .order-dialog {
    max-height: calc(100vh - 28px);
    padding: 18px 16px;
  }

  .order-close {
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
  }

  .order-dialog h2 {
    font-size: 1.85rem;
  }

  .order-form {
    gap: 8px;
  }

  .order-form textarea {
    min-height: 64px;
  }

  .gallery-lightbox {
    gap: 10px;
    padding: 12px;
  }

  .gallery-stage {
    grid-template-columns: 1fr;
    height: 100%;
    padding: 0 42px;
  }

  .gallery-arrow {
    position: fixed;
    top: 50%;
    z-index: 1110;
    background: rgba(37, 48, 32, 0.52);
    transform: translateY(-50%);
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .gallery-stage img {
    max-width: calc(100vw - 84px);
    max-height: calc(100vh - 136px);
  }

  .duration-detail-card dl {
    grid-template-columns: 1fr;
  }

  .duration-detail-card dl > div {
    gap: 12px;
    padding: 12px 14px;
  }

  .duration-detail-card dt {
    flex-basis: 78px;
  }

  .values {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }

  .values div {
    gap: 7px;
    font-size: 0.58rem;
  }

  .values svg {
    width: 40px;
    height: 40px;
    padding: 9px;
  }

  .about,
  .contact {
    padding-right: 18px;
    padding-left: 18px;
  }

  .about-actions,
  .about-more {
    width: 100%;
  }

  .about-more,
  .about-review {
    min-width: 0;
  }

  .credential-note {
    max-width: none;
    margin-top: 14px;
  }

  .about-page-copy .script {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .about-page-copy h1 {
    font-size: clamp(2.05rem, 8.8vw, 2.85rem);
  }

  .about-page-photo {
    border-width: 8px;
    max-width: 360px;
  }

  .about-story,
  .about-gallery-section {
    padding: 42px 14px;
  }

  .about-photo-item {
    min-height: 220px;
  }

  .about-cta .hero-actions,
  .about-cta .btn {
    width: 100%;
  }
}

@media (max-width: 1120px) {
  .maserna-hero .about-page-grid {
    grid-template-columns: 1fr;
  }

  .maserna-feature-photo {
    justify-self: center;
    width: min(100%, 620px);
    min-height: 0;
  }

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

  .maserna-gallery-card.is-large {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .maserna-gallery-section {
    padding: 42px 12px 52px;
  }

  .maserna-gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .maserna-gallery-card,
  .maserna-gallery-card.is-large,
  .maserna-gallery-card.is-wide,
  .maserna-feature-photo {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

@page voucher {
  size: 210mm 99mm;
  margin: 0;
}

@page internal-price {
  size: A4 portrait;
  margin: 10mm;
}

@media print {
  body {
    background: #fff;
  }

  body > *:not(main),
  .voucher-copy,
  .voucher-details,
  .voucher-cta {
    display: none !important;
  }

  .voucher-hero {
    page: voucher;
    display: block;
    min-height: 0;
    padding: 0;
    background: #fff;
  }

  .voucher-hero-grid {
    display: block;
    max-width: none;
    margin: 0;
  }

  .voucher-card {
    width: 207mm;
    height: auto;
    max-width: none;
    aspect-ratio: auto;
    margin: 0 auto;
    box-shadow: none;
    border-color: rgba(185, 111, 69, 0.5);
    break-inside: avoid;
    page-break-inside: avoid;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .internal-price-page {
    page: internal-price;
    min-height: 0;
    color: #111;
    background: #fff !important;
    font-size: 10pt;
  }

  .internal-price-hero {
    max-width: none;
    padding: 0 0 6mm;
    border-bottom: 1px solid #bbb;
  }

  .internal-price-hero .eyebrow {
    margin-bottom: 2mm;
    color: #555 !important;
    font-size: 8pt;
    letter-spacing: 0.08em;
  }

  .internal-price-hero h1 {
    margin: 0 0 2mm;
    color: #111 !important;
    font-size: 22pt;
    line-height: 1;
  }

  .internal-price-hero p:not(.eyebrow) {
    max-width: none;
    margin: 0;
    color: #333 !important;
    font-size: 9pt;
    line-height: 1.35;
  }

  .internal-price-list {
    max-width: none;
    padding: 5mm 0 0;
  }

  .internal-price-list > div {
    display: block;
  }

  .internal-price-card {
    gap: 2mm;
    padding: 3mm 0;
    background: #fff !important;
    border: 0;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    box-shadow: none;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .internal-price-card-heading {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8mm;
    align-items: baseline;
  }

  .internal-price-card h2 {
    color: #111 !important;
    font-size: 14pt;
    line-height: 1.05;
  }

  .internal-price-card-heading strong {
    color: #111 !important;
    font-size: 12pt;
  }

  .internal-price-card p {
    color: #333 !important;
    font-size: 8.5pt;
    line-height: 1.3;
  }

  .internal-price-durations {
    gap: 1mm;
  }

  .internal-price-durations div {
    grid-template-columns: 1fr auto;
    gap: 8mm;
    padding: 1.5mm 0;
    background: #fff !important;
    border: 0;
    border-radius: 0;
  }

  .internal-price-durations dt,
  .internal-price-durations dd {
    color: #111 !important;
    font-size: 9pt;
    line-height: 1.2;
  }

  .internal-price-durations dd {
    text-align: right;
  }

  .internal-price-card a {
    display: none !important;
  }
}
