:root {
  --black: #0c0c0d;
  --charcoal: #1a1917;
  --gold: #c9a227;
  --gold-bright: #e3c15a;
  --cream: #faf6ee;
  --cream-dim: #efe6d3;
  --ink: #26221a;
  --ink-soft: #5c5545;
  --line: #e7dcc3;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(12, 12, 13, 0.08), 0 10px 28px -14px rgba(12, 12, 13, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--ink);
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
}

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--black);
  padding: 10px 16px;
  z-index: 100;
  font-weight: 600;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* Language toggle */

html[data-lang="es"] .lang-en { display: none !important; }
html[data-lang="en"] .lang-es { display: none !important; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--cream);
  font-family: "Work Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.lang-opt {
  padding: 2px 4px;
  opacity: 0.55;
}

html[data-lang="es"] .lang-opt[data-lang-opt="es"],
html[data-lang="en"] .lang-opt[data-lang-opt="en"] {
  opacity: 1;
  color: var(--gold-bright);
}

.lang-sep {
  opacity: 0.4;
}

/* Header */

.site-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 24px;
}

.brand {
  flex: none;
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 52px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 22px;
  flex: 1;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream-dim);
  transition: color 0.15s ease;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--gold-bright);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
}

.phone-link {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}

.phone-link:hover {
  color: var(--gold-bright);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
}

/* Buttons */

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--black);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn-gold:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 20px;
  border: 1px solid rgba(250, 246, 238, 0.4);
  border-radius: 999px;
  white-space: nowrap;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.btn-outline:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.btn-large {
  padding: 14px 30px;
  font-size: 0.95rem;
}

/* Hero */

.hero {
  background:
    radial-gradient(ellipse 900px 500px at 50% -10%, rgba(201, 162, 39, 0.16), transparent 60%),
    var(--black);
  padding: 76px 0 68px;
}

.hero-inner {
  display: flex;
  justify-content: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 1.5vw, 14px);
  margin: 0 auto 12px;
}

.hero-visual-logo {
  height: clamp(120px, 26vw, 230px);
  width: auto;
  flex: none;
}

.hero-visual-portrait {
  height: clamp(180px, 38vw, 380px);
  width: auto;
  flex: none;
}

.hero-tagline {
  color: var(--cream-dim);
  font-size: 1.15rem;
  margin: 4px 0 32px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Trust strip */

.trust-strip {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.trust-inner {
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--cream-dim);
}

.trust-dot {
  color: var(--gold);
  opacity: 0.6;
}

/* Sections */

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--cream-dim);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 12px;
}

.section h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 600;
}

.section-sub {
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 36px;
  font-size: 1.02rem;
}

/* Services */

.service-group-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 40px 0 18px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.service-group-title:first-of-type {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
}

.service-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.service-head h4 {
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.service-price {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 1.02rem;
  white-space: nowrap;
}

.service-foot {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-duration {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.service-book {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}

.service-book:hover {
  color: var(--gold);
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.about-photo {
  display: flex;
  justify-content: center;
}

.about-photo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 460px;
  filter: drop-shadow(0 24px 40px rgba(38, 34, 26, 0.22));
}

.about-copy p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 56ch;
}

/* Gallery */

.gallery-group-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 32px 0 14px;
  color: var(--ink-soft);
}

.gallery-group-title:first-of-type {
  margin-top: 0;
}

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

.gallery-item {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Reviews */

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

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow);
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.review-quote {
  font-size: 1rem;
  color: var(--ink);
  margin: 0 0 14px;
}

.review-author {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* FAQ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 4px 20px;
}

.faq-item summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--gold);
  flex: none;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-block {
  margin-bottom: 22px;
}

.contact-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-block p {
  margin: 0;
}

.contact-block a {
  text-decoration: none;
  font-weight: 500;
}

.hours-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 320px;
  font-size: 0.92rem;
}

.hours-table td {
  padding: 5px 0;
  border-bottom: 1px solid var(--line);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--ink-soft);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.storefront-photo {
  margin: 44px 0 0;
}

.storefront-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

/* Footer */

.site-footer {
  background: var(--black);
  color: var(--cream-dim);
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
}

.footer-logo {
  height: 44px;
  margin-bottom: 14px;
}

.footer-brand p {
  margin: 4px 0;
  font-size: 0.88rem;
}

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

.footer-brand a:hover {
  color: var(--gold-bright);
}

.footer-social {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--gold-bright);
}

.footer-heading {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--cream-dim);
}

.footer-nav a:hover {
  color: var(--gold-bright);
}

.footer-hours p {
  margin: 4px 0;
  font-size: 0.9rem;
}

.footer-legal {
  border-top: 1px solid rgba(250, 246, 238, 0.12);
  padding: 20px 24px 28px;
  font-size: 0.78rem;
  color: rgba(250, 246, 238, 0.55);
}

.footer-legal p {
  margin: 4px 0;
}

/* Scroll reveal */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .about-photo img {
    max-height: 340px;
  }

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

@media (max-width: 760px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 12px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.25);
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 0;
    border-bottom: 1px solid rgba(250, 246, 238, 0.08);
  }

  .header-inner {
    flex-wrap: wrap;
    position: relative;
  }

  .header-actions {
    margin-left: auto;
  }

  .phone-link {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: 56px 0 48px;
  }

  .service-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 8px 16px;
  }

  .brand-logo {
    height: 42px;
  }

  .header-actions {
    gap: 8px;
  }

  .btn-gold {
    padding: 9px 14px;
    font-size: 0.8rem;
  }
}
