:root {
  --ink: #1b1716;
  --ink-soft: #514640;
  --paper: #fffaf6;
  --paper-strong: #fffefe;
  --blush: #f4dfdf;
  --blush-strong: #c67b88;
  --champagne: #c69a52;
  --sage: #7d8b74;
  --line: rgba(86, 67, 54, 0.16);
  --shadow: 0 24px 70px rgba(50, 36, 28, 0.13);
  --radius: 8px;
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  margin: 12px;
  padding: 10px 14px;
  clip: auto;
  color: var(--paper);
  background: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 74px;
  padding: 12px max(20px, calc((100vw - var(--content)) / 2));
  color: var(--paper);
  background: rgba(21, 19, 19, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.brand strong {
  display: block;
  color: #f1cf91;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 250, 246, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
}

.main-nav a {
  position: relative;
  color: rgba(255, 250, 246, 0.84);
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--champagne);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  color: #132718;
  background: #f1cf91;
}

.button:hover,
.header-cta:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.button-primary,
.floating-whatsapp {
  color: #ffffff;
  background: #1fa65a;
  box-shadow: 0 14px 34px rgba(31, 166, 90, 0.25);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 254, 254, 0.88);
  border-color: rgba(198, 154, 82, 0.45);
}

.button-muted {
  color: #ffffff;
  background: var(--blush-strong);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.section {
  padding: 92px max(20px, calc((100vw - var(--content)) / 2));
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 1.02fr);
  gap: 48px;
  align-items: center;
  min-height: 720px;
  padding-top: 58px;
  padding-bottom: 58px;
  background:
    linear-gradient(90deg, rgba(255, 250, 246, 1) 0%, rgba(255, 250, 246, 0.96) 38%, rgba(244, 223, 223, 0.22) 100%);
}

.hero-copy {
  max-width: 610px;
}

.section-label {
  margin: 0 0 14px;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.03;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.85rem, 4.25vw, 3.85rem);
  overflow-wrap: normal;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.35rem);
}

h3 {
  font-size: 1.28rem;
}

.hero-lead {
  max-width: 500px;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.35;
}

.hero-text {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 0 0 0 86px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero-media::after {
  position: absolute;
  inset: auto auto 24px 24px;
  width: 86px;
  height: 2px;
  content: "";
  background: var(--champagne);
}

.service-preview {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.service-preview span {
  padding: 22px 18px;
  color: var(--ink-soft);
  text-align: center;
  border-right: 1px solid var(--line);
}

.service-preview span:last-child {
  border-right: 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading p:last-child {
  margin: 18px auto 0;
  color: var(--ink-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  min-height: 220px;
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.service-card:last-child {
  border-right: 0;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  color: var(--blush-strong);
  background: rgba(244, 223, 223, 0.56);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.about-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
  background: var(--paper-strong);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-copy p {
  color: var(--ink-soft);
}

.signature {
  color: var(--champagne) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-style: italic;
}

.gallery-section,
.testimonials-section {
  background:
    linear-gradient(180deg, rgba(244, 223, 223, 0.44), rgba(255, 250, 246, 0.92));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ead8cf;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.gallery-item figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  color: #ffffff;
  background: rgba(27, 23, 22, 0.72);
  border-radius: 6px;
  font-size: 0.78rem;
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  min-height: 220px;
  padding: 30px;
  background: rgba(255, 254, 254, 0.82);
  border: 1px solid rgba(198, 154, 82, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(60, 46, 39, 0.07);
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--ink-soft);
}

.testimonial-card blockquote::before {
  display: block;
  margin-bottom: 12px;
  color: var(--blush-strong);
  content: "\201C";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.4rem;
  line-height: 0.5;
}

.testimonial-card cite {
  display: block;
  margin-top: 22px;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

.testimonial-card small {
  display: block;
  color: var(--ink-soft);
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.contact-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-methods article {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-methods span,
.hours-card dt {
  display: block;
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-methods strong {
  display: block;
  margin: 6px 0;
  color: var(--ink);
}

.contact-methods a {
  color: var(--blush-strong);
  font-weight: 800;
  text-decoration: none;
}

.hours-card {
  margin-top: 28px;
  padding-top: 24px;
}

.hours-card h3 {
  margin-bottom: 14px;
}

.hours-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  margin: 0;
}

.hours-card dd {
  margin: 0;
  color: var(--ink-soft);
}

.map-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: 34px;
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(21, 19, 19, 0.04), rgba(21, 19, 19, 0.76)),
    url("../image/bureau_beauty_edited.jpg") center / cover;
  box-shadow: var(--shadow);
}

.map-card span {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.map-card strong {
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  line-height: 1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 38px max(20px, calc((100vw - var(--content)) / 2));
  color: rgba(255, 250, 246, 0.78);
  background: #151313;
}

.site-footer strong {
  display: block;
  color: #f1cf91;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  text-decoration: none;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: none;
}

:focus-visible {
  outline: 3px solid rgba(198, 154, 82, 0.52);
  outline-offset: 3px;
}

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

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 0;
    padding: 10px 0 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav.is-open a {
    padding: 12px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    min-height: 420px;
    border-radius: var(--radius);
  }

  .hero-media img {
    min-height: 420px;
  }

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

  .service-card {
    border-bottom: 1px solid var(--line);
  }

  .service-card:nth-child(2n) {
    border-right: 0;
  }

  .about-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 1.05rem;
  }

  .section {
    padding: 66px 18px;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 44px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 12.5vw, 3.2rem);
  }

  .cta-row,
  .button {
    width: 100%;
  }

  .service-preview {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-preview span {
    border-bottom: 1px solid var(--line);
  }

  .services-grid,
  .testimonials-grid,
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(2n) {
    border-right: 0;
  }

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

  .gallery-item,
  .gallery-item img {
    min-height: 180px;
  }

  .contact-panel,
  .map-card {
    padding: 24px;
  }

  .map-card {
    min-height: 300px;
  }

  .site-footer {
    display: block;
  }

  .site-footer nav {
    margin-top: 20px;
  }

  .floating-whatsapp {
    display: inline-flex;
    left: 18px;
    right: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
