:root {
  --ink: #1f3029;
  --muted: #66766e;
  --leaf: #0d6b55;
  --leaf-dark: #064838;
  --gold: #af8424;
  --rose: #c75d55;
  --clay: #7a432d;
  --cream: #fffaf0;
  --mint: #edf7f2;
  --blush: #fff0f2;
  --line: rgba(31, 48, 41, 0.16);
  --shadow: 0 22px 55px rgba(16, 39, 31, 0.13);
  --hero-image: url("1.jpg");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fffdf8;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: grid;
  gap: 0;
  text-decoration: none;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  letter-spacing: 0;
  color: var(--gold);
  line-height: 1.1;
}

.brand span {
  color: var(--leaf-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--leaf-dark);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--mint);
  outline: none;
}

.language-button,
.primary-button,
.secondary-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.language-button {
  background: var(--leaf);
  color: white;
  box-shadow: 0 10px 24px rgba(13, 107, 85, 0.24);
}

.language-flag {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 15px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.flag-es {
  background: linear-gradient(
    to bottom,
    #aa151b 0 25%,
    #f1bf00 25% 75%,
    #aa151b 75% 100%
  );
}

.flag-gb {
  background:
    linear-gradient(27deg, transparent 44%, #fff 44% 50%, #c8102e 50% 56%, #fff 56% 62%, transparent 62%),
    linear-gradient(153deg, transparent 44%, #fff 44% 50%, #c8102e 50% 56%, #fff 56% 62%, transparent 62%),
    linear-gradient(to right, transparent 39%, #fff 39% 61%, transparent 61%),
    linear-gradient(to bottom, transparent 32%, #fff 32% 68%, transparent 68%),
    linear-gradient(to right, transparent 44%, #c8102e 44% 56%, transparent 56%),
    linear-gradient(to bottom, transparent 39%, #c8102e 39% 61%, transparent 61%),
    #012169;
}

.primary-button {
  background: var(--rose);
  color: white;
  box-shadow: 0 10px 24px rgba(199, 93, 85, 0.25);
}

.secondary-button {
  color: var(--leaf-dark);
  background: white;
  border: 1px solid var(--line);
}

.language-button:hover,
.primary-button:hover,
.secondary-button:hover,
.language-button:focus-visible,
.primary-button:focus-visible,
.secondary-button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.hero {
  min-height: 82svh;
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 45, 36, 0.78), rgba(11, 45, 36, 0.42) 46%, rgba(255, 250, 240, 0.2)),
    var(--hero-image) center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, #fffdf8 0%, rgba(255, 253, 248, 0));
  z-index: -1;
}

.hero-content {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 96px;
  color: white;
}

.eyebrow {
  margin: 0 0 14px;
  color: #f6d9d6;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.2rem, 9vw, 7.4rem);
}

.hero-text {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.quick-facts {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.fact {
  display: grid;
  gap: 2px;
  min-width: 180px;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.fact span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.fact a {
  color: inherit;
  text-decoration-color: rgba(255, 255, 255, 0.7);
  text-underline-offset: 4px;
}

.fact a:hover,
.fact a:focus-visible {
  color: #fff4d5;
  outline: none;
}

section {
  padding: 76px 0;
}

.section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  color: var(--leaf-dark);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.promo-band {
  background: linear-gradient(120deg, var(--blush), #fffdf8 42%, var(--mint));
}

.promo-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.promo-card,
.service-group,
.contact-panel,
.map-panel,
.poster-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.promo-card {
  display: grid;
  min-height: 310px;
  padding: clamp(24px, 4vw, 38px);
  align-content: space-between;
  overflow: hidden;
  position: relative;
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--leaf), var(--gold), var(--rose));
  pointer-events: none;
}

.promo-card > * {
  position: relative;
}

.promo-label {
  width: fit-content;
  border-radius: 999px;
  background: #fff4d5;
  color: #7f5b09;
  padding: 7px 12px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.promo-card h3 {
  margin-top: 22px;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.6vw, 4.3rem);
  font-weight: 500;
}

.promo-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.discount-number {
  color: var(--gold);
  font-size: clamp(4.2rem, 12vw, 8.5rem);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.9;
}

.menu-section {
  background: #fffdf8;
}

.menu-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.menu-stack {
  display: grid;
  gap: 22px;
}

.service-group {
  padding: clamp(20px, 3vw, 28px);
}

.service-group h3 {
  color: var(--leaf);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 500;
  margin-bottom: 12px;
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(31, 48, 41, 0.22);
}

.price-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.price-list span {
  color: var(--muted);
}

.price-list strong {
  color: var(--leaf-dark);
  white-space: nowrap;
}

.hair-band {
  color: white;
  background: linear-gradient(120deg, var(--leaf-dark), #174238 48%, var(--clay));
}

.hair-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

.hair-copy {
  max-width: 880px;
}

.hair-copy h2 {
  color: white;
  font-size: clamp(2.2rem, 5.8vw, 5.2rem);
}

.hair-copy > p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.ritual-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
}

.ritual-list li {
  position: relative;
  padding: 12px 14px 12px 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.ritual-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 1.15em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.ritual-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.ritual-prices {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.ritual-prices div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.11);
}

.ritual-prices span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.ritual-prices strong {
  color: #fff4d5;
  white-space: nowrap;
}

.contact-band {
  background: linear-gradient(180deg, #fffdf8, #edf7f2);
}

.contact-panel {
  padding: clamp(22px, 4vw, 34px);
}

.contact-panel h3 {
  margin-bottom: 14px;
  color: var(--leaf-dark);
  font-size: 1.35rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.contact-list li {
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.contact-list a {
  color: var(--leaf-dark);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.notice-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.notice-pill {
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--mint);
  color: var(--leaf-dark);
  font-weight: 900;
}

.map-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
  padding: 14px;
  overflow: hidden;
  background: white;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: clamp(260px, 30vw, 340px);
  border-radius: 6px;
}

.posters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.poster-card {
  overflow: hidden;
  background: white;
}

.poster-card img,
.poster-card video {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.poster-card video {
  display: block;
  background: #111;
}

.poster-card figcaption {
  padding: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  display: none;
}

.site-footer {
  padding: 28px 0 34px;
  color: white;
  background: var(--leaf-dark);
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer-credit {
  width: min(1160px, calc(100% - 32px));
  margin: 20px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    padding: 14px 0;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    min-height: 78svh;
  }

  .promo-grid,
  .contact-grid,
  .menu-layout,
  .hair-layout {
    grid-template-columns: 1fr;
  }

  .map-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 580px) {
  .nav-links a:not(.language-button) {
    display: none;
  }

  .hero-content {
    padding-top: 56px;
  }

  .quick-facts {
    display: grid;
  }

  section {
    padding: 58px 0;
  }

  .price-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

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

  .poster-card img {
    height: auto;
  }
}
