@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,400;6..96,500;6..96,600&family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&display=swap");

:root {
  --blue-bayoux: #496677;
  --rock-blue: #9fb2cd;
  --pampas: #f0ede8;
  --kilimanjaro: #271203;
  --olive-green: #abac5a;
  --text-dark: #2a2019;
  --text-light: #f8f4ef;
  --border-soft: rgba(39, 18, 3, 0.12);
  --shadow-soft: 0 18px 40px rgba(39, 18, 3, 0.12);
  --container: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--pampas);
  color: var(--text-dark);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: var(--kilimanjaro);
  color: var(--pampas);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(240, 237, 232, 0.88);
  border-bottom: 1px solid rgba(39, 18, 3, 0.08);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-logo,
.footer-logo {
  display: block;
  object-fit: cover;
  object-position: center;
}

.brand-logo {
  width: 3.35rem;
  height: 3.35rem;
  transform: scale(1.12);
}

.brand-text {
  display: grid;
  gap: 0.1rem;
}

.brand-name,
.brand-subtitle {
  white-space: nowrap;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.82rem;
  color: rgba(39, 18, 3, 0.72);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a:not(.button) {
  font-size: 0.95rem;
  color: rgba(39, 18, 3, 0.82);
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible {
  color: var(--blue-bayoux);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(39, 18, 3, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  color: var(--kilimanjaro);
  cursor: pointer;
}

.menu-toggle-lines {
  position: relative;
  width: 1.15rem;
  height: 0.9rem;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after,
.menu-toggle-lines {
  display: block;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle-lines::before {
  top: 0;
  box-shadow: 0 0.4rem 0 0 currentColor;
}

.menu-toggle-lines::after {
  bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.95rem;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--blue-bayoux);
  color: var(--pampas);
  border-color: var(--blue-bayoux);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #385160;
}

.button-secondary {
  background: transparent;
  color: var(--pampas);
  border-color: rgba(240, 237, 232, 0.42);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(240, 237, 232, 0.12);
}

.button-small {
  min-height: 2.55rem;
  padding-inline: 1rem;
  background: rgba(73, 102, 119, 0.1);
  color: var(--blue-bayoux);
  border-color: rgba(73, 102, 119, 0.22);
}

.button-small:hover,
.button-small:focus-visible {
  background: rgba(73, 102, 119, 0.16);
}

.hero,
.booking-cta {
  position: relative;
  min-height: min(calc(100svh - 80px), 52rem);
  display: grid;
  align-items: center;
  overflow: clip;
  color: var(--text-light);
}

.hero {
  padding: 2rem 0;
}

.hero-background,
.cta-background {
  position: absolute;
  inset: 0;
  background-image: url("images/salon.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(39, 18, 3, 0.52) 0%, rgba(39, 18, 3, 0.34) 46%, rgba(39, 18, 3, 0.2) 100%),
    linear-gradient(180deg, rgba(39, 18, 3, 0.18), rgba(39, 18, 3, 0.3));
}

.hero-content,
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin-right: auto;
}

.hero-wordmark {
  margin: 0 0 0.5rem;
  color: #f0ede8;
  font-family: "Bodoni Moda", Didot, "Bodoni MT", "Times New Roman", serif;
  font-size: clamp(4.2rem, 5.4vw, 4.9rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  max-width: none;
  white-space: nowrap;
}

.hero-tagline {
  margin: 0.55rem 0 0.85rem;
  color: rgba(240, 237, 232, 0.92);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}

.footer-brand {
  display: flex;
  align-items: center;
  column-gap: 0.72rem;
  row-gap: 0.4rem;
  flex-wrap: wrap;
}
.footer-logo {
  width: 3.35rem;
  height: 3.35rem;
  transform: scale(1.12);
}

.footer-brand h2 {
  line-height: 1;
}

.hero h1,
.section-heading h2,
.cta-content h2,
.site-footer h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0.02em;
}

.hero h1 {
  max-width: 9ch;
}

.hero p,
.cta-content p,
.footer-copy,
.service-group-header p {
  font-size: 1.05rem;
}

.hero p {
  max-width: 36rem;
  margin: 0.9rem 0 0;
  color: rgba(248, 244, 239, 0.88);
}

.hero p:not(.hero-tagline) {
  margin-top: 0.85rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-actions .button {
  min-width: 12.5rem;
}

.section-shell {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.section-heading {
  margin-bottom: 2rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--blue-bayoux);
}

.section-heading h2 {
  color: var(--kilimanjaro);
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 18ch;
}

.service-layout {
  display: grid;
  gap: 1.25rem;
}

.service-group {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow-soft);
}

.service-group-header {
  margin-bottom: 1rem;
}

.service-group-header h3,
.gallery-card p,
.footer-details h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--kilimanjaro);
  width: min(100%, 7.5rem);
  height: auto;
  transform: none;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.service-group-header p {
  margin: 0.4rem 0 0;
  color: rgba(39, 18, 3, 0.78);
}

.service-list {
  display: grid;
  gap: 0.85rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: rgba(240, 237, 232, 0.78);
  border: 1px solid rgba(39, 18, 3, 0.08);
}

.service-item h4,
.gallery-card figcaption {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--kilimanjaro);
}

.service-item p {
  margin: 0.2rem 0 0;
  color: rgba(39, 18, 3, 0.78);
}

.service-list-two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery {
  background:
    linear-gradient(180deg, rgba(159, 178, 205, 0.16), rgba(159, 178, 205, 0.02)),
    var(--pampas);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-card {
  min-height: 18rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(39, 18, 3, 0.08);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
}

.gallery-image-card {
  position: relative;
}

.gallery-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-image-card figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(39, 18, 3, 0.72);
  color: var(--pampas);
  font-size: 0.82rem;
}

.placeholder-card {
  display: grid;
  align-content: end;
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(73, 102, 119, 0.08), rgba(39, 18, 3, 0.02)),
    rgba(255, 255, 255, 0.65);
}

.placeholder-card p {
  font-size: 1.2rem;
}

.placeholder-card span {
  color: rgba(39, 18, 3, 0.72);
}

.booking-cta {
  min-height: 30rem;
  padding: 5rem 0;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(39, 18, 3, 0.78), rgba(39, 18, 3, 0.68));
}

.cta-content {
  max-width: 34rem;
}

.cta-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.cta-content p {
  margin: 1rem 0 0;
  color: rgba(248, 244, 239, 0.9);
}

.cta-content .button {
  margin-top: 1.6rem;
}

.site-footer {
  padding: 4rem 0;
  background: var(--kilimanjaro);
  color: var(--pampas);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  gap: 0.7rem;

.footer-eyebrow {
  color: rgba(240, 237, 232, 0.72);
  width: 82px;

  transform: none;
  flex-shrink: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  max-width: 11ch;
}

.footer-copy {
  max-width: 36rem;
  color: rgba(240, 237, 232, 0.82);
}

.footer-details {
  display: grid;
  gap: 1rem;
}

.footer-details > div {
  padding: 1rem 0;
}

.footer-details > div:first-child {
  padding-top: 0;
}

.footer-details h3 {
  color: var(--pampas);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.footer-details p {
  margin: 0;
  color: rgba(240, 237, 232, 0.82);
}

.hours-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.35rem;
}

.hours-row {
  display: grid;
  grid-template-columns: max-content max-content;
  column-gap: 0.95rem;
  row-gap: 0.1rem;
  align-items: baseline;
  justify-content: start;
}

.hours-row-sunday {
  grid-template-columns: max-content max-content;
  margin-top: 0.04rem;
}

.hours-row-sunday .hours-time {
  justify-self: start;
  text-align: left;
}

.hours-times {
  display: grid;
  justify-items: start;
  gap: 0.25rem;
}

.hours-day,
.hours-time {
  color: rgba(240, 237, 232, 0.9);
}

.hours-day {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.99rem;
  letter-spacing: 0.02em;
}

.hours-time {
  text-align: left;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-link {
  width: 2.7rem;
  height: 2.7rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(240, 237, 232, 0.16);
  background: rgba(240, 237, 232, 0.06);
  color: var(--pampas);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(240, 237, 232, 0.12);
  border-color: rgba(240, 237, 232, 0.3);
}

.social-link svg {
  width: 1.2rem;
  height: 1.2rem;
}

.social-handle {
  margin: 0.7rem 0 0;
  color: rgba(240, 237, 232, 0.82);
  font-size: 0.95rem;
}

@media (min-width: 720px) {
  .service-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-group-wide {
    grid-column: 1 / -1;
  }

  .gallery-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(13rem, 1fr));
  }

  .gallery-image-card {
    grid-row: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }
}

@media (min-width: 960px) {
  .service-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-group-wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(240, 237, 232, 0.98);
    border: 1px solid rgba(39, 18, 3, 0.08);
    box-shadow: var(--shadow-soft);
    transform-origin: top;
    transform: scaleY(0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .nav-book {
    justify-content: center;
  }
}

@media (max-width: 719px) {
  .hero {
    min-height: calc(100svh - 80px);
    padding: 1.5rem 0;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-wordmark {
    font-size: clamp(2.8rem, 11vw, 3.3rem);
    white-space: normal;
    line-height: 1;
    letter-spacing: -0.005em;
  }

  .hero-tagline {
    font-size: clamp(1.15rem, 4.8vw, 1.4rem);
    margin: 0.4rem 0 0.7rem;
  }

  .service-list-two-column {
    grid-template-columns: 1fr;
  }

  .service-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-item .button {
    align-self: flex-start;
  }

  .hours-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .hours-time {
    text-align: left;
  }

  .hours-times {
    justify-items: start;
    gap: 0.1rem;
  }

  .hours-row-indented .hours-day-spacer {
    display: none;
  }

  .hero-actions .button {
    min-width: 0;
    width: 100%;
  }

  .footer-logo {
    width: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
