:root {
  --ink: #1f1d1b;
  --muted: #6f6960;
  --line: #e6ded2;
  --paper: #fffaf3;
  --cream: #f7efe3;
  --sage: #758272;
  --rose: #b67f7b;
  --gold: #9b7a4c;
  --gold-dark: #6f5638;
  --gold-light: #e8d2a2;
  --black-gold: #17120f;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(31, 29, 27, 0.12);
  --font-display: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-accent: Optima, Candara, "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px clamp(18px, 5vw, 68px);
  background: rgba(255, 250, 243, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  width: 98px;
  height: 78px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.95rem;
  color: var(--muted);
}

.main-nav a,
.contact-actions a,
.service-card a {
  text-decoration: none;
}

.main-nav a:hover,
.service-card a:hover,
.contact-actions a:hover {
  color: var(--gold-dark);
}

.language-switcher {
  position: relative;
  min-width: 178px;
}

.language-current {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(155, 122, 76, 0.45);
  background: linear-gradient(135deg, var(--white), #f7ead7);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.language-current::after {
  content: "⌄";
  color: var(--gold-dark);
}

.language-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  display: none;
  width: 100%;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.language-switcher.is-open .language-options {
  display: grid;
  gap: 4px;
}

.lang-button {
  width: 100%;
  min-height: 38px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.lang-button.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  min-height: calc(100svh - 86px);
  padding: clamp(42px, 7vw, 96px) clamp(18px, 5vw, 68px);
  background:
    linear-gradient(110deg, rgba(255, 250, 243, 0.98) 0%, rgba(255, 250, 243, 0.86) 45%, rgba(247, 239, 227, 0.95) 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-family: var(--font-accent);
  font-size: 1.08rem;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--gold-dark);
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  color: var(--ink);
  background: linear-gradient(135deg, #f5dfad, var(--gold), #6f5638);
  box-shadow: 0 18px 42px rgba(155, 122, 76, 0.28);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
}

.gold-note {
  display: inline-flex;
  margin-top: 22px;
  padding: 12px 16px;
  color: var(--gold-dark);
  background: rgba(232, 210, 162, 0.24);
  border-left: 3px solid var(--gold);
  font-family: var(--font-accent);
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-height: 600px;
}

.logo-hero {
  display: flex;
  min-height: 520px;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at center, rgba(255, 248, 224, 0.82) 0%, rgba(232, 210, 162, 0.34) 34%, rgba(255, 250, 243, 0.16) 58%, rgba(255, 250, 243, 0) 76%);
}

.hero-logo-large {
  width: min(68%, 440px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 42px rgba(111, 86, 56, 0.22));
}

.photo {
  position: absolute;
  display: block;
  object-fit: contain;
  background: linear-gradient(135deg, #fff8ed, #ead8bd);
  border: 10px solid var(--white);
  box-shadow: var(--shadow);
}

.photo-large {
  left: 8%;
  top: 7%;
  width: 58%;
  aspect-ratio: 4 / 5;
}

.photo-small {
  right: 2%;
  width: 42%;
  aspect-ratio: 1 / 1;
}

.photo-small.top {
  top: 0;
}

.photo-small.bottom {
  bottom: 4%;
}

.hero-logo-mark {
  position: absolute;
  right: 30%;
  bottom: 32%;
  width: 116px;
  height: 116px;
  object-fit: contain;
  padding: 14px;
  background: radial-gradient(circle, rgba(255, 248, 224, 0.92) 0%, rgba(232, 210, 162, 0.72) 62%, rgba(155, 122, 76, 0.72) 100%);
  border: 1px solid rgba(111, 86, 56, 0.35);
  border-radius: 999px;
  box-shadow: 0 20px 50px rgba(111, 86, 56, 0.25);
}

.hero-logo-mark::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -14px;
  width: 72px;
  height: 2px;
  background: var(--gold);
  transform: rotate(28deg);
  transform-origin: left center;
}

.quick-book {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 24px;
  align-items: center;
  padding: clamp(34px, 5vw, 62px) clamp(18px, 5vw, 68px);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.96), rgba(246, 231, 207, 0.9)),
    radial-gradient(circle at 12% 20%, rgba(232, 210, 162, 0.45), transparent 34%);
  border-top: 1px solid rgba(155, 122, 76, 0.2);
  border-bottom: 1px solid rgba(155, 122, 76, 0.2);
}

.quick-book .eyebrow {
  color: var(--gold-dark);
}

.quick-book h2 {
  max-width: 420px;
  color: var(--gold-dark);
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.booking-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 16px;
  color: var(--ink);
  background: linear-gradient(135deg, #fff4d0 0%, #d7ad60 46%, #8b6736 100%);
  border: 1px solid rgba(111, 86, 56, 0.5);
  box-shadow: 0 16px 38px rgba(111, 86, 56, 0.18);
  text-align: center;
  text-decoration: none;
  font-family: var(--font-accent);
  font-weight: 800;
}

.booking-grid a:hover {
  color: var(--white);
  background: linear-gradient(135deg, #c89a45 0%, #8b6736 52%, #4b3620 100%);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 68px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 2px solid rgba(155, 122, 76, 0.42);
  box-shadow:
    0 16px 40px rgba(31, 29, 27, 0.08),
    inset 0 0 0 1px rgba(232, 210, 162, 0.55);
}

.service-card img {
  width: 100%;
  height: 300px;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(135deg, #fbf4ea, #f7ead7);
}

.service-card img.pedicure-no-polish-img {
  object-position: center 78%;
}

.service-card div {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 250px;
  padding: 22px;
  background: rgba(255, 250, 243, 0.98);
  border-top: 2px solid rgba(155, 122, 76, 0.35);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.service-card a {
  margin-top: auto;
  padding-top: 20px;
  color: var(--gold-dark);
  font-family: var(--font-accent);
  font-weight: 800;
}

.compact-card {
  grid-template-rows: 1fr;
  background: #fbf7f0;
}

.compact-card div {
  min-height: 230px;
}

.gallery-section {
  background: linear-gradient(180deg, var(--white), #fbf4ea);
}

.gallery-section .section-heading p:last-child {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center;
  background: var(--cream);
  border: 1px solid rgba(155, 122, 76, 0.28);
  box-shadow: 0 18px 45px rgba(31, 29, 27, 0.12);
}

.prices-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 18, 15, 0.97), rgba(62, 47, 31, 0.96)),
    radial-gradient(circle at 80% 10%, rgba(232, 210, 162, 0.24), transparent 34%);
}

.prices-section .eyebrow {
  color: var(--gold-light);
}

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

.price-group {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: rgba(255, 250, 243, 0.07);
  border: 1px solid rgba(232, 210, 162, 0.35);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.price-group h3 {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.45rem;
}

dl {
  display: grid;
  gap: 4px;
  margin: 18px 0 0;
}

dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding: 12px 0;
  border-top: 1px solid rgba(232, 210, 162, 0.22);
}

dt {
  color: rgba(255, 250, 243, 0.78);
}

dd {
  margin: 0;
  color: var(--gold-light);
  font-weight: 900;
  white-space: nowrap;
}

.price-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: auto;
  padding: 12px 16px;
  color: var(--ink);
  background: linear-gradient(135deg, #f5dfad, var(--gold), #6f5638);
  text-decoration: none;
  font-weight: 900;
}

.size-guide-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: rgba(255, 250, 243, 0.09);
  border: 1px solid rgba(232, 210, 162, 0.35);
}

.size-guide-card h3 {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.size-guide-card p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 250, 243, 0.78);
}

.size-guide-card img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  background: var(--black-gold);
  border: 1px solid rgba(232, 210, 162, 0.35);
}

.trust-section {
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.trust-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 800;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
}

details {
  border: 1px solid var(--line);
  background: #fbf7f0;
}

summary {
  min-height: 58px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.about-section {
  display: flex;
  justify-content: center;
  padding-top: clamp(42px, 6vw, 74px);
  padding-bottom: clamp(42px, 6vw, 74px);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.96), rgba(246, 231, 207, 0.86)),
    radial-gradient(circle at 50% 25%, rgba(232, 210, 162, 0.38), transparent 38%);
  border-top: 1px solid rgba(155, 122, 76, 0.18);
  border-bottom: 1px solid rgba(155, 122, 76, 0.18);
}

.about-section h2 {
  max-width: 960px;
}

.about-section p:last-child {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.certificates-section {
  background: var(--paper);
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.certificates-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 10px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(155, 122, 76, 0.38);
  box-shadow: 0 14px 36px rgba(31, 29, 27, 0.1);
}

.contact-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  padding: clamp(48px, 7vw, 76px) clamp(18px, 5vw, 68px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 18, 15, 0.97), rgba(62, 47, 31, 0.96)),
    radial-gradient(circle at 82% 16%, rgba(232, 210, 162, 0.24), transparent 34%);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: -35% -12% auto auto;
  width: min(72vw, 980px);
  height: min(72vw, 980px);
  pointer-events: none;
  background:
    repeating-conic-gradient(
      from -22deg,
      rgba(232, 210, 162, 0.34) 0deg,
      rgba(232, 210, 162, 0.34) 1.4deg,
      transparent 1.4deg,
      transparent 11deg
    );
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 38%, transparent 70%);
  opacity: 0.55;
}

.contact-section > * {
  position: relative;
  z-index: 1;
}

.contact-section .eyebrow {
  color: var(--gold-light);
}

.contact-actions {
  display: grid;
  gap: 10px;
  align-content: start;
}

.contact-actions a {
  display: flex;
  min-height: 50px;
  align-items: center;
  padding: 0 16px;
  color: var(--white);
  border: 1px solid rgba(232, 210, 162, 0.35);
  background: rgba(255, 250, 243, 0.06);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 5vw, 68px) 88px;
  color: var(--muted);
}

.mobile-booking {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 12;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  color: var(--ink);
  background: linear-gradient(135deg, #f5dfad, var(--gold), #6f5638);
  box-shadow: 0 14px 40px rgba(31, 29, 27, 0.22);
  text-decoration: none;
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .quick-book,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    min-height: 520px;
  }

  .service-grid,
  .price-layout,
  .trust-grid,
  .gallery-grid,
  .certificates-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .size-guide-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .brand span {
    display: none;
  }

  .brand img {
    width: 82px;
    height: 64px;
  }

  .booking-grid,
  .service-grid,
  .price-layout,
  .trust-grid,
  .gallery-grid,
  .certificates-grid {
    grid-template-columns: 1fr;
  }

  .certificates-grid img {
    aspect-ratio: 4 / 3;
  }

  .hero-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    min-height: 0;
  }

  .photo,
  .photo-large,
  .photo-small {
    position: static;
    width: 100%;
    border-width: 6px;
  }

  .hero-logo-mark {
    right: 18px;
    bottom: 18px;
    width: 96px;
    height: 96px;
  }

  .photo-large {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
  }

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

  footer {
    flex-direction: column;
  }

  .mobile-booking {
    display: flex;
  }
}
