/* =========================================================
   Kadeřnické studio Bláhová — styles.css
   Art direction: warm nude / blush · espresso ink · soft gold
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* palette */
  --bg:        #F6F1EB;   /* warm ivory */
  --bg-alt:    #EFE7DE;   /* sand */
  --bg-deep:   #211C1A;   /* espresso (dark sections) */
  --ink:       #26201E;   /* near-black warm */
  --ink-soft:  #6E635C;   /* muted brown-grey */
  --line:      #E1D6CB;   /* hairline */
  --blush:     #E7CFC6;   /* soft blush */
  --rose:      #B87D6B;   /* warm terracotta rose (accent) */
  --rose-deep: #9C6553;
  --gold:      #B49058;   /* soft gold detail */
  --cream:     #FBF8F4;   /* card surface */

  /* type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* metrics */
  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 18px;
  --radius-lg: 28px;
  --nav-h: 76px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 2px 12px rgba(38, 32, 30, 0.06);
  --shadow-md: 0 18px 50px -20px rgba(38, 32, 30, 0.28);
  --shadow-lg: 0 40px 90px -30px rgba(38, 32, 30, 0.40);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

::selection { background: var(--rose); color: #fff; }

/* focus visibility */
:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--ink); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 12px 12px;
  z-index: 200; transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }

.section__head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head--split {
  max-width: 100%; display: flex; flex-wrap: wrap; gap: 1.5rem 3rem;
  align-items: end; justify-content: space-between;
}
.section__head--split .section__intro { max-width: 420px; margin: 0; }

.eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  color: var(--rose-deep);
  letter-spacing: .02em;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: .7rem;
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px; background: var(--rose); display: inline-block;
}
.eyebrow--light { color: var(--blush); }
.eyebrow--light::before { background: var(--blush); }

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.section__intro { margin-top: 1.25rem; color: var(--ink-soft); font-size: 1.075rem; max-width: 56ch; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.55rem;
  border-radius: 100px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  background: var(--btn-bg); color: var(--btn-fg);
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn::after {
  content: ""; position: absolute; inset: 0; background: var(--rose);
  transform: translateY(101%); transition: transform .4s var(--ease); z-index: 0;
}
.btn > * { position: relative; z-index: 1; }
.btn span, .btn { position: relative; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:hover::after { transform: translateY(0); }
.btn--primary { --btn-bg: var(--ink); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: #fff;
  border: 1px solid rgba(255,255,255,.55);
}
.btn--ghost::after { background: rgba(255,255,255,.14); }
.btn--ghost:hover { color: #fff; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn--block { width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease), height .4s var(--ease);
}
.nav__inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav[data-scrolled="true"] {
  background: rgba(246, 241, 235, .82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
  height: 66px;
}

.nav__brand { display: flex; align-items: center; gap: .7rem; }
.nav__brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink); color: #fff;
  font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .02em;
  flex: none;
}
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.nav__brand-name { font-family: var(--font-display); font-size: 1.3rem; }
.nav__brand-sub { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }

/* nav link color adapts over hero (light) then dark once scrolled */
.nav__links { display: flex; gap: 1.9rem; }
.nav__links a {
  font-size: .95rem; font-weight: 500; color: var(--ink);
  position: relative; padding-block: .3rem;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--rose); transition: width .3s var(--ease);
}
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }

/* over the hero image, links + brand are light until scrolled */
.nav[data-top="true"]:not([data-scrolled="true"]) .nav__links a,
.nav[data-top="true"]:not([data-scrolled="true"]) .nav__brand-name { color: #fff; }
.nav[data-top="true"]:not([data-scrolled="true"]) .nav__brand-sub { color: rgba(255,255,255,.7); }
.nav[data-top="true"]:not([data-scrolled="true"]) .nav__burger span { background: #fff; }

.nav__actions { display: flex; align-items: center; gap: 1rem; }

.nav__burger { display: none; width: 30px; height: 22px; position: relative; flex: none; }
.nav__burger span {
  position: absolute; left: 0; height: 2px; width: 100%; background: var(--ink);
  border-radius: 2px; transition: transform .35s var(--ease), opacity .25s var(--ease), background .3s var(--ease);
}
.nav__burger span:nth-child(1) { top: 2px; }
.nav__burger span:nth-child(2) { top: 10px; }
.nav__burger span:nth-child(3) { top: 18px; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--ink); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--ink); }
/* keep brand legible over the open (light) mobile menu */
body.menu-open .nav[data-top="true"] .nav__brand-name { color: var(--ink); }
body.menu-open .nav[data-top="true"] .nav__brand-sub { color: var(--ink-soft); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg);
  padding: calc(var(--nav-h) + 2rem) var(--gutter) 2rem;
  display: flex; flex-direction: column; justify-content: space-between;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  visibility: hidden;
}
body.menu-open .mobile-menu { transform: translateY(0); visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; gap: .3rem; }
.mobile-menu__links a {
  font-family: var(--font-display); font-size: clamp(1.8rem, 8vw, 2.6rem);
  padding-block: .35rem; border-bottom: 1px solid var(--line);
}
.mobile-menu__links a:last-of-type { border: none; }
.mobile-menu__cta { font-family: var(--font-body) !important; font-size: 1rem !important; margin-top: 1rem; align-self: flex-start; }
.mobile-menu__meta { display: flex; flex-direction: column; gap: .3rem; color: var(--ink-soft); font-size: 1rem; }
.mobile-menu__meta a { color: var(--rose-deep); font-weight: 600; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  /* align content's left edge to the site container */
  padding-inline: max(var(--gutter), calc((100% - var(--maxw)) / 2 + var(--gutter)));
  color: #fff;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08); will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(24,19,17,.55) 0%, rgba(24,19,17,.15) 35%, rgba(24,19,17,.35) 70%, rgba(24,19,17,.78) 100%),
    linear-gradient(90deg, rgba(24,19,17,.55) 0%, rgba(24,19,17,0) 55%);
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 760px;
  padding-block: 3rem;
}
.hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.02; letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.hero__title em { font-style: italic; color: var(--blush); }
.hero__lead {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  max-width: 46ch; color: rgba(255,255,255,.9);
  margin-bottom: 2.2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero__facts {
  display: flex; flex-wrap: wrap; gap: 2.5rem;
  padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.22);
}
.hero__facts li { display: flex; flex-direction: column; }
.hero__facts strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.hero__facts span { font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.65); }

.hero__scroll {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  z-index: 3; width: 26px; height: 42px; border: 1px solid rgba(255,255,255,.5);
  border-radius: 20px; display: grid; place-items: start center; padding-top: 8px;
}
.hero__scroll span {
  width: 4px; height: 8px; border-radius: 4px; background: #fff;
  animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--bg-deep); color: var(--bg);
  padding-block: 1.15rem; overflow: hidden; white-space: nowrap;
  border-block: 1px solid rgba(255,255,255,.06);
}
.marquee__track { display: inline-flex; align-items: center; gap: 1.6rem; animation: marquee 32s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; }
.marquee__track .dot { color: var(--rose); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Services ---------- */
.services { background: var(--bg); }
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem);
}
.service-card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.3rem);
  display: flex; flex-direction: column; min-height: 280px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  will-change: transform;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--blush); }
.service-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.8rem; }
.service-card__num { font-family: var(--font-display); font-size: 1rem; color: var(--rose); letter-spacing: .1em; }
.service-card__price {
  font-weight: 600; font-size: .85rem; color: var(--ink);
  background: var(--bg-alt); padding: .35rem .8rem; border-radius: 100px;
}
.service-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.7rem; margin-bottom: .7rem; letter-spacing: -0.01em; }
.service-card p { color: var(--ink-soft); font-size: .98rem; flex: 1; }
.service-card__time {
  margin-top: 1.4rem; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-soft); display: inline-flex; align-items: center; gap: .5rem;
}
.service-card__time::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.service-card--feature { background: var(--bg-deep); color: var(--bg); border-color: transparent; }
.service-card--feature h3 { color: #fff; }
.service-card--feature p { color: rgba(255,255,255,.72); }
.service-card--feature .service-card__price { background: rgba(255,255,255,.1); color: #fff; }
.service-card--feature .service-card__num { color: var(--blush); }
.service-card--feature .service-card__time { color: rgba(255,255,255,.6); }

/* ---------- Gallery ---------- */
.gallery { background: var(--bg-alt); }
.gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: clamp(.75rem, 1.5vw, 1.1rem);
}
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--line);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease);
  will-change: transform;
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.2rem 1.1rem .95rem;
  font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(24,19,17,.8));
  transform: translateY(8px); opacity: 0; transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.gallery__item:hover figcaption { transform: translateY(0); opacity: 1; }
.gallery__note {
  margin-top: 2rem; text-align: center; color: var(--ink-soft); font-size: .95rem;
}
.gallery__note span { color: var(--rose); }

/* ---------- Pricing ---------- */
.pricing { background: var(--bg); }
.pricing__cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); }
.price-list__title {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 1.35rem; color: var(--rose-deep);
  margin: 2rem 0 1rem; padding-bottom: .6rem; border-bottom: 1px solid var(--line);
}
.price-list__title:first-child { margin-top: 0; }
.price-row {
  display: flex; align-items: baseline; gap: .6rem; padding: .55rem 0;
}
.price-row__name { color: var(--ink); font-size: 1.02rem; }
.price-row__dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-3px); }
.price-row__val { font-weight: 600; color: var(--ink); white-space: nowrap; }
.price-list__cta {
  margin-top: 2.2rem; padding: 1.6rem; background: var(--bg-alt);
  border-radius: var(--radius); text-align: center;
}
.price-list__cta p { margin-bottom: 1rem; font-family: var(--font-display); font-size: 1.2rem; }

/* ---------- About ---------- */
.about { background: var(--bg-alt); }
.about__grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.about__badge {
  position: absolute; bottom: -22px; right: -18px;
  background: var(--ink); color: #fff;
  width: 130px; height: 130px; border-radius: 50%;
  display: grid; place-content: center; text-align: center; gap: .1rem;
  box-shadow: var(--shadow-md);
}
.about__badge-num { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; }
.about__badge-txt { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--blush); }
.about__text p { color: var(--ink-soft); margin-top: 1.2rem; }
.about__text p:first-of-type { margin-top: 1.5rem; }
.about__list { margin: 2rem 0; display: grid; gap: .7rem; }
.about__list li { display: flex; align-items: center; gap: .8rem; color: var(--ink); }
.about__list span { color: var(--rose); }

/* ---------- Reviews ---------- */
.reviews { background: var(--bg-deep); color: var(--bg); }
.reviews .eyebrow { color: var(--blush); }
.reviews .eyebrow::before { background: var(--blush); }
.reviews .section__title { color: #fff; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg); padding: 2.2rem;
  display: flex; flex-direction: column; gap: 1.2rem;
  transition: transform .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease);
  will-change: transform;
}
.review:hover { transform: translateY(-6px); background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.2); }
.review__stars { color: var(--gold); letter-spacing: .2em; font-size: 1.05rem; }
.review p { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.5; color: rgba(255,255,255,.92); font-weight: 400; }
.review footer { display: flex; flex-direction: column; margin-top: auto; }
.review footer strong { font-weight: 600; }
.review footer span { color: var(--blush); font-size: .85rem; letter-spacing: .05em; text-transform: uppercase; }

/* ---------- Voucher ---------- */
.voucher { background: var(--bg); }
.voucher__inner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  background: var(--bg-deep); color: var(--bg);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 4.5rem);
  overflow: hidden;
}
.voucher__text p { color: rgba(255,255,255,.78); margin: 1.3rem 0 1.8rem; }
.voucher__text .section__title { color: #fff; }
.voucher__chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.voucher__chips span {
  border: 1px solid rgba(255,255,255,.22); border-radius: 100px; padding: .45rem 1.1rem;
  font-size: .9rem; color: rgba(255,255,255,.85);
}
.voucher__card {
  aspect-ratio: 1.6/1; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 55%, #7d4d3d 100%);
  padding: 2px; box-shadow: var(--shadow-lg);
  transform: rotate(-4deg); transition: transform .6s var(--ease);
}
.voucher__card:hover { transform: rotate(0) scale(1.02); }
.voucher__card-inner {
  height: 100%; border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(255,255,255,.3);
  padding: 1.6rem 1.8rem; display: flex; flex-direction: column; gap: .4rem;
  color: #fff;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(255,255,255,.18), transparent 45%);
}
.voucher__card-brand { font-family: var(--font-display); font-size: 1.35rem; }
.voucher__card-label { font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.voucher__card-amount { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.4rem); margin-top: auto; }
.voucher__card-foot { font-size: .78rem; color: rgba(255,255,255,.82); }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-alt); }
.faq__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.faq__head { position: sticky; top: calc(var(--nav-h) + 1rem); }
.faq__head .section__intro { margin-top: 1.2rem; }
.faq__list { display: grid; gap: .8rem; }
.faq__item {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0 1.5rem; transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq__item[open] { border-color: var(--blush); box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.35rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 400;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { position: relative; width: 18px; height: 18px; flex: none; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--rose-deep); border-radius: 2px;
  transition: transform .35s var(--ease);
}
.faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq__item[open] .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__body { overflow: hidden; }
.faq__body p { color: var(--ink-soft); padding-bottom: 1.35rem; padding-right: 2rem; }

/* ---------- Contact ---------- */
.contact { background: var(--bg); }
.contact__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact__intro p { color: var(--ink-soft); margin-top: 1.3rem; }
.contact__details { margin-top: 2.5rem; display: grid; gap: 1.5rem; }
.contact__details li { display: grid; gap: .3rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.contact__details li:last-child { border: none; padding-bottom: 0; }
.contact__label { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--rose-deep); }
.contact__details a { font-weight: 600; transition: color .2s var(--ease); }
.contact__details a:hover { color: var(--rose-deep); }

/* form */
.contact__form-wrap {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 3.5vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}
.form__row { margin-bottom: 1.2rem; }
.form__row--two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__field { display: flex; flex-direction: column; gap: .45rem; }
.form__field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.form__field label span { color: var(--rose); }
.form__field input, .form__field select, .form__field textarea {
  font: inherit; color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line); border-radius: 12px;
  padding: .8rem .95rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  width: 100%;
}
.form__field textarea { resize: vertical; min-height: 96px; }
.form__field input:focus, .form__field select:focus, .form__field textarea:focus {
  outline: none; border-color: var(--rose); background: #fff;
  box-shadow: 0 0 0 4px rgba(184,125,107,.12);
}
.form__field input:user-invalid, .form__field.has-error input, .form__field.has-error select {
  border-color: #c05b4d;
}
.form__error { color: #c05b4d; font-size: .8rem; min-height: 1em; }
.form__note { font-size: .8rem; color: var(--ink-soft); margin-top: .9rem; text-align: center; }
.form__success {
  margin-top: 1.2rem; padding: 1.1rem 1.3rem; border-radius: 12px;
  background: rgba(120,150,110,.14); border: 1px solid rgba(120,150,110,.35);
  color: #3f5236;
}
.form__success strong { color: #33461f; }

.contact__map {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  line-height: 0;
}
.contact__map iframe { filter: grayscale(.25) contrast(1.02); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-deep); color: rgba(255,255,255,.75); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer__brand .nav__brand-mark { margin-bottom: 1rem; }
.footer__name { font-family: var(--font-display); font-size: 1.5rem; color: #fff; }
.footer__tag { font-size: .95rem; max-width: 28ch; margin-top: .4rem; }
.footer__col h3 { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--blush); margin-bottom: 1.1rem; font-weight: 600; }
.footer__col a, .footer__col span { display: block; margin-bottom: .6rem; font-size: .98rem; transition: color .2s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: .6rem 2rem; justify-content: space-between;
  font-size: .85rem; color: rgba(255,255,255,.5);
}

/* ---------- Sticky CTA (mobile) ---------- */
.sticky-cta {
  position: fixed; z-index: 80; right: 1.1rem; bottom: 1.1rem;
  background: var(--ink); color: #fff; font-weight: 600;
  padding: .95rem 1.6rem; border-radius: 100px;
  box-shadow: var(--shadow-md);
  display: none; align-items: center; gap: .5rem;
  transform: translateY(120%); transition: transform .45s var(--ease);
}
.sticky-cta::before { content: "✦"; color: var(--blush); }
.sticky-cta.is-visible { transform: translateY(0); }

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; max-width: 640px; }
  .about__grid, .faq__grid, .contact__grid, .voucher__inner, .pricing__cols { grid-template-columns: 1fr; }
  .about__media { max-width: 440px; }
  .faq__head { position: static; }
  .voucher__card { max-width: 380px; transform: rotate(-3deg); }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .sticky-cta { display: inline-flex; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 2; }
}

@media (max-width: 560px) {
  .services__grid { grid-template-columns: 1fr; }
  .form__row--two { grid-template-columns: 1fr; }
  .hero__facts { gap: 1.5rem 2rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about__badge { width: 108px; height: 108px; right: 0; }
  .gallery__grid { grid-auto-rows: 150px; }
}

@media (max-width: 380px) {
  .footer__grid { grid-template-columns: 1fr; }
}
