/* ===================================================================
   Peppes Ladies Salon — Landing Page
   Warm Italian heritage elegance. Prata + Karla.
   =================================================================== */

:root {
  --cream: #F7F2EB;
  --cream-alt: #EFE4D3;
  --espresso: #3B2C24;
  --espresso-soft: #6A574C;
  --terracotta: #9E3B2E;
  --terracotta-deep: #7C2E23;
  --terracotta-dark: #5F241B;
  --gold: #C2A05C;
  --gold-soft: rgba(194, 160, 92, 0.35);
  --white: #FFFFFF;
  --radius: 10px;
  --radius-arch: 160px 160px 10px 10px;
  --shadow: 0 14px 34px rgba(59, 44, 36, 0.14);
  --shadow-lg: 0 26px 60px rgba(59, 44, 36, 0.22);
  --font-head: 'Prata', serif;
  --font-body: 'Karla', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--espresso);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { font-family: var(--font-head); margin: 0; line-height: 1.15; font-weight: 400; }
p { margin: 0; line-height: 1.65; }

/* ===== Accessibility ===== */
.skip-link {
  position: absolute;
  top: -52px;
  left: 16px;
  z-index: 300;
  background: var(--espresso);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--terracotta-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===== Motion — hidden only once JS confirms it can animate; always visible without JS ===== */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease-out, transform 420ms ease-out;
}
html.js .reveal.is-visible { opacity: 1; transform: none; }

.hero-fade { opacity: 1; transform: none; }
html.js .hero-fade {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease-out, transform 420ms ease-out;
}
html.js .hero-fade.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal, html.js .hero-fade { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition-duration: 0.01ms !important; }
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(158, 59, 46, 0.32);
}
.btn--primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(158, 59, 46, 0.4); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn--ghost:hover { background: rgba(255,255,255,0.14); }
#reviews .btn--ghost, .section .btn--ghost:not(.hero .btn--ghost) { border-color: var(--terracotta-deep); color: var(--terracotta-deep); }
#reviews .btn--ghost:hover, .section .btn--ghost:not(.hero .btn--ghost):hover { background: var(--terracotta-deep); color: var(--white); }
.btn--lg { padding: 16px 32px; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* ===== Topbar ===== */
.topbar {
  background: var(--espresso);
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 24px;
  gap: 12px;
  min-height: 40px;
}
.topbar__item a { font-weight: 600; color: var(--white); }
.topbar__badge { display: none; letter-spacing: 0.03em; }
@media (min-width: 720px) { .topbar__badge { display: block; } }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 243, 235, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(59,44,36,0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 16px;
}
.brand__text {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--espresso);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand__text em {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  margin-top: 2px;
}
.nav {
  display: none;
  gap: 30px;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a { color: var(--espresso); position: relative; padding: 6px 0; transition: color 0.2s ease; }
.nav a:hover { color: var(--terracotta-deep); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }
.nav--mobile-open a::after { display: none; }
.header__cta { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; margin-left: auto; margin-right: 24px; }
  .header__cta { display: inline-flex; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--espresso); border-radius: 2px; }
@media (min-width: 900px) { .nav-toggle { display: none; } }

.nav--mobile-open {
  display: flex !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-width: 100vw;
  background: var(--cream);
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  box-shadow: var(--shadow);
  border-bottom: 1px solid rgba(59,44,36,0.08);
}
.nav--mobile-open a { padding: 13px 0; border-bottom: 1px solid rgba(59,44,36,0.08); min-height: 44px; display: flex; align-items: center; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(59,44,36,0.90) 20%, rgba(59,44,36,0.68) 52%, rgba(59,44,36,0.38) 100%);
}
.hero__content { position: relative; z-index: 1; padding: 100px 24px 80px; max-width: 700px; }
.eyebrow {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow--center { display: block; text-align: center; }
.section:not(.section--dark) .eyebrow:not(.hero .eyebrow) { color: var(--terracotta-deep); }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 400; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 500; }
.hero__lede { font-family: var(--font-body); font-size: 1.12rem; color: rgba(255,255,255,0.9); max-width: 560px; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 20px; font-size: 0.92rem; color: rgba(255,255,255,0.92); font-weight: 600; }
.hero__trust svg { width: 16px; height: 16px; margin-right: 4px; vertical-align: -3px; color: var(--gold); }
@media (min-width: 620px) {
  .hero__trust { gap: 0; margin-top: 4px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.2); }
  .hero__trust li { position: relative; padding: 0 22px; }
  .hero__trust li:first-child { padding-left: 0; }
  .hero__trust li:not(:last-child)::after {
    content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    width: 1px; height: 15px; background: rgba(255,255,255,0.25);
  }
}
@media (max-width: 619px) {
  .hero { min-height: auto; }
  .hero__content { padding: 76px 24px 56px; }
  .hero__lede { font-size: 1rem; margin-bottom: 26px; }
  .hero__actions { flex-direction: column; margin-bottom: 28px; }
  .hero__actions .btn { width: 100%; }
  .hero__trust { flex-direction: column; gap: 10px; border-left: 3px solid var(--gold); padding-left: 14px; }
}

/* ===== Sections ===== */
.section { padding: 104px 0; scroll-margin-top: 88px; }
@media (max-width: 719px) { .section { padding: 62px 0; } }
.section--alt { background: var(--cream-alt); }
.section--dark { background: var(--espresso); color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.8); }
.section__title {
  text-align: center;
  font-size: clamp(1.75rem, 3.6vw, 2.6rem);
  max-width: 640px;
  margin: 0 auto 18px;
}
.section__title em { font-style: italic; color: var(--terracotta-deep); font-weight: 500; }
.section--dark .section__title em { color: var(--gold); }
.rule {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
  border: none;
}
.rule--left { margin-left: 0; margin-right: auto; }
.section__lede {
  text-align: center;
  color: var(--espresso-soft);
  max-width: 580px;
  margin: 0 auto 50px;
  font-size: 1.06rem;
}
.section--dark .section__lede { color: rgba(255,255,255,0.78); }

/* ===== Heritage strip ===== */
.heritage-strip {
  background: var(--terracotta);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.heritage-strip::before, .heritage-strip::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.25);
}
.heritage-strip__num {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 7vw, 4rem);
  display: block;
  color: var(--cream);
  margin-bottom: 6px;
}
.heritage-strip__line {
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  max-width: 640px;
  margin: 0 auto;
  font-family: var(--font-body);
}
.heritage-strip__line strong { color: var(--gold); font-weight: 600; }

/* ===== Services grid ===== */
.grid--services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(59,44,36,0.08);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold-soft); }
.card__icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--terracotta);
  margin-bottom: 20px;
}
.card__icon svg { width: 26px; height: 26px; color: var(--white); }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--espresso-soft); font-size: 0.96rem; }
.card__price { display: inline-block; margin-top: 14px; font-family: var(--font-head); font-style: italic; font-weight: 400; color: var(--terracotta-deep); }

.services-more { margin-top: 46px; text-align: center; }
.services-more__title { font-family: var(--font-head); font-weight: 400; font-size: 1.1rem; margin-bottom: 22px; }
.services-more__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 820px; margin: 0 auto; }
.services-more__list li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid rgba(59,44,36,0.12);
  border-radius: 999px;
  font-size: 0.92rem; font-weight: 600;
  box-shadow: 0 4px 12px rgba(59,44,36,0.05);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.services-more__list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.services-more__list li:hover { transform: translateY(-2px); border-color: var(--gold); }
.services-note { margin-top: 28px; text-align: center; font-size: 0.86rem; color: var(--espresso-soft); font-style: italic; }

/* ===== Arched image crop (signature motif) ===== */
.arch-media {
  border-radius: var(--radius-arch);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.arch-media img { transition: transform 0.5s ease; }

/* ===== Why / heritage content grid ===== */
.why__grid { display: grid; gap: 48px; align-items: center; }
.why__list { display: flex; flex-direction: column; gap: 16px; margin: 26px 0 30px; }
.why__list li { padding-left: 32px; position: relative; color: var(--espresso-soft); line-height: 1.55; }
.why__list li::before {
  content: "\2713"; position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--terracotta); color: var(--white);
  font-size: 0.72rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.why__list strong { color: var(--espresso); font-family: var(--font-head); font-weight: 400; }
@media (min-width: 860px) { .why__grid { grid-template-columns: 1fr 1.1fr; } }

.pull-quote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--terracotta-deep);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 22px 0;
  line-height: 1.5;
}
.section--dark .pull-quote { color: var(--gold); }

/* ===== Gallery ===== */
.gallery { columns: 1; gap: 20px; }
@media (min-width: 620px) { .gallery { columns: 2; } }
@media (min-width: 980px) { .gallery { columns: 3; } }
.gallery__item {
  margin: 0 0 20px;
  break-inside: avoid;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery__item:nth-child(3n+1) { border-radius: var(--radius-arch); }
.gallery__item img { width: 100%; height: auto; display: block; transition: transform 0.4s ease; }
.gallery__item:hover img { transform: scale(1.03); }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 16px 14px;
  background: linear-gradient(0deg, rgba(59,44,36,0.88), transparent);
  color: var(--white);
  font-size: 0.86rem; font-weight: 600;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }
@media (hover: none) { .gallery__item figcaption { opacity: 1; transform: none; } }
.gallery__note { text-align: center; margin-top: 30px; font-size: 0.88rem; color: var(--espresso-soft); font-style: italic; }

/* ===== Reviews ===== */
.ratings-bar {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 20px 28px; margin: 0 auto 50px; padding: 18px 28px; max-width: 640px;
  background: var(--white); border: 1px solid rgba(59,44,36,0.08); border-radius: 999px;
  box-shadow: var(--shadow);
}
.ratings-bar__item { display: flex; align-items: center; gap: 10px; }
.ratings-bar__stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 1px; }
.ratings-bar__label { font-size: 0.95rem; color: var(--espresso-soft); }
.ratings-bar__label strong { color: var(--espresso); font-family: var(--font-head); font-weight: 400; }
.ratings-bar__divider { width: 1px; height: 28px; background: rgba(59,44,36,0.14); }
@media (max-width: 520px) { .ratings-bar { border-radius: 18px; flex-direction: column; } .ratings-bar__divider { width: 60px; height: 1px; } }

.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.review-card { background: var(--white); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow); }
.review-card__stars { color: var(--gold); font-size: 1.05rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-card p { font-family: var(--font-head); font-style: italic; color: var(--espresso); line-height: 1.6; font-size: 1.02rem; }
.review-card__author { margin-top: 18px; font-weight: 600; font-size: 0.9rem; color: var(--terracotta-deep); font-family: var(--font-body); }
.review-card__author span { color: var(--espresso-soft); font-weight: 400; }
.reviews__cta { text-align: center; margin-top: 42px; }

/* ===== About / heritage ===== */
.about__grid { display: grid; gap: 48px; align-items: center; }
.about__content p { color: var(--espresso-soft); margin-bottom: 16px; }
.about__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.about__stats div { background: var(--cream-alt); border-radius: 12px; padding: 18px 12px; text-align: center; }
.about__stats strong { display: block; font-family: var(--font-head); font-weight: 400; font-size: 1.2rem; color: var(--terracotta-deep); }
.about__stats span { display: block; font-size: 0.78rem; color: var(--espresso-soft); margin-top: 4px; }
@media (min-width: 860px) { .about__grid { grid-template-columns: 1.05fr 1fr; } }

/* ===== Contact / visit ===== */
.contact__grid { display: grid; gap: 48px; }
.contact__list { margin-top: 26px; display: flex; flex-direction: column; gap: 18px; }
.contact__list li { display: flex; align-items: flex-start; gap: 14px; font-size: 1.02rem; }
.contact__list svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.contact__list a:hover { color: var(--gold); }
.contact__map {
  margin-top: 26px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px dashed rgba(255,255,255,0.3);
  min-height: 200px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-style: italic;
  text-align: center;
  padding: 24px;
}
.contact__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-lg);
  color: var(--espresso);
}
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 8px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(59,44,36,0.18);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  resize: vertical;
  color: var(--espresso);
  background: var(--white);
}
.form-row select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236A574C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: 2px solid var(--terracotta-deep); outline-offset: 1px; }
.form-note { margin-top: 14px; font-size: 0.88rem; text-align: center; color: var(--terracotta-deep); font-weight: 600; min-height: 1.2em; }
@media (min-width: 860px) { .contact__grid { grid-template-columns: 1fr 1.05fr; } }

/* ===== Footer ===== */
.footer { background: var(--espresso); color: rgba(255,255,255,0.75); padding: 36px 0 44px; border-top: 1px solid rgba(194,160,92,0.25); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; font-size: 0.85rem; }
.footer .brand__text { color: var(--white); font-size: 1.15rem; }
.footer .brand__text em { color: var(--gold); }
.footer__inner a { font-weight: 600; color: var(--white); }
.footer__social { display: flex; gap: 14px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.footer__social a:hover { border-color: var(--gold); background: rgba(194,160,92,0.12); }
.footer__social svg { width: 17px; height: 17px; }
@media (min-width: 700px) { .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; } }

/* ===== Floating call button (mobile) ===== */
.call-fab {
  position: fixed; bottom: 20px; right: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 90;
}
.call-fab svg { width: 24px; height: 24px; }
@media (min-width: 900px) { .call-fab { display: none; } }

/* ===== Website-only: inner page hero banner (multi-page nav active state) ===== */
.nav a[aria-current="page"] { color: var(--terracotta-deep); }
.nav a[aria-current="page"]::after { transform: scaleX(1); background: var(--terracotta-deep); }

.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(59,44,36,0.55) 0%, rgba(59,44,36,0.88) 100%);
}
.page-hero__content { position: relative; z-index: 1; padding: 120px 24px 56px; max-width: 760px; }
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3rem); margin-bottom: 14px; }
.page-hero h1 em { font-style: italic; color: var(--gold); font-weight: 500; }
.page-hero__lede { font-size: 1.05rem; color: rgba(255,255,255,0.9); max-width: 560px; }
.breadcrumb { font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-weight: 600; }
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--white); }
@media (max-width: 619px) { .page-hero { min-height: 34vh; } .page-hero__content { padding: 88px 20px 40px; } }

/* ===== Work teaser (home page — 4-figure subset) ===== */
.work-teaser { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 720px) { .work-teaser { grid-template-columns: repeat(4, 1fr); } }
.work-teaser .gallery__item:nth-child(odd) { border-radius: var(--radius-arch); }
.work-teaser .gallery__item:nth-child(even) { border-radius: var(--radius); }

/* ===== CTA band (website only) ===== */
.cta-band {
  background: var(--terracotta);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 14px; }
.cta-band h2 em { font-style: italic; color: var(--cream); font-weight: 500; }
.cta-band p { max-width: 560px; margin: 0 auto 30px; color: rgba(255,255,255,0.92); }
.cta-band .btn--ghost { border-color: rgba(255,255,255,0.6); }
.cta-band .btn--ghost:hover { background: rgba(255,255,255,0.14); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ===== Services page — price table style ===== */
.price-table { width: 100%; border-collapse: collapse; margin-top: 18px; }
.price-table th, .price-table td { text-align: left; padding: 14px 12px; border-bottom: 1px solid rgba(59,44,36,0.1); }
.price-table th { font-family: var(--font-head); font-weight: 400; font-size: 0.95rem; color: var(--espresso-soft); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.78rem; }
.price-table td:last-child, .price-table th:last-child { text-align: right; font-family: var(--font-head); font-style: italic; color: var(--terracotta-deep); font-weight: 400; white-space: nowrap; }
.price-group { margin-bottom: 44px; }
.price-group__title { font-size: 1.3rem; margin-bottom: 4px; }
.price-group__note { color: var(--espresso-soft); font-size: 0.92rem; margin-bottom: 6px; }
.price-table-wrap { overflow-x: auto; }

/* ===== Gallery page — filter chips (decorative categories, no JS filtering required) ===== */
.gallery-cats { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.gallery-cats span {
  padding: 9px 20px; border-radius: 999px; font-weight: 600; font-size: 0.88rem;
  background: var(--white); border: 1px solid rgba(59,44,36,0.12); color: var(--espresso-soft);
}
.gallery-cats span:first-child { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); }
