﻿:root {
  color-scheme: light;
  --bg: #fcfbf9;
  --surface: #ffffff;
  --surface-soft: #f8f3eb;
  --text: #1f1a16;
  --muted: #6b625b;
  --accent: #b88d3a;
  --accent-strong: #8d6515;
  --border: rgba(184, 141, 58, 0.16);
  --shadow: 0 22px 70px rgba(31, 26, 22, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fefdfb 0%, var(--bg) 100%);
  min-height: 100vh;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button,
a {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(184, 141, 58, 0.05), transparent 35%, transparent 65%, rgba(184, 141, 58, 0.03));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 253, 250, 0.94);
  box-shadow: 0 12px 40px rgba(31, 26, 22, 0.05);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

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

.brand-copy {
  display: grid;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.82rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.3rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #e7c97d 100%);
  color: #37260f;
  box-shadow: 0 14px 35px rgba(184, 141, 58, 0.18);
}

.btn-secondary,
.btn-ghost {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--border);
  color: var(--text);
}

.section {
  padding: 6rem 2rem;
}

.hero {
  min-height: 100vh;
  padding-top: 8.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-copy {
  display: grid;
  gap: 1.25rem;
  max-width: 620px;
}

.eyebrow,
.section-heading span,
.about-copy span {
  display: inline-block;
  width: fit-content;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.cta-card h2 {
  font-family: "Cormorant Garamond", serif;
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  max-width: 620px;
}

.hero p,
.about-copy p,
.procedure-caption p,
.testimonial-card p,
.tip-body p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.4rem;
}

.hero-note {
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
  max-width: 520px;
}

.hero-note p {
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  left: -2rem;
  top: 2rem;
  background: #fdfdfd;
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  z-index: 2;
}

.hero-badge img {
  width: 110px;
  height: auto;
  box-shadow: none;
  object-fit: contain;
}

.procedures,
.about,
.gallery,
.testimonials,
.tips,
.contact,
.final-cta {
  max-width: 1280px;
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.about-copy h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-top: 0.4rem;
}

.procedures-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.procedure-list {
  display: grid;
  gap: 0.8rem;
}

.procedure-item {
  width: 100%;
  border: 1px solid transparent;
  background: transparent;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 18px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.procedure-item:hover,
.procedure-item.active {
  background: var(--surface);
  border-color: var(--border);
  transform: translateX(4px);
}

.procedure-item span {
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
}

.procedure-item strong {
  font-size: 1rem;
  font-weight: 600;
}

.procedure-visual {
  border-radius: 32px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.procedure-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.procedure-caption {
  padding: 1.5rem 1.6rem 1.8rem;
}

.procedure-caption h3 {
  margin: 0 0 0.6rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
}

.about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.about-list li {
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.about-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 1rem;
}

.gallery-card {
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(31, 26, 22, 0.08);
}

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

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 2;
}

.testimonial-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.testimonial-card {
  padding: 1.6rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  color: var(--accent-strong);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.tip-card {
  background: var(--surface);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.tip-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.tip-body {
  padding: 1.2rem 1.35rem 1.4rem;
}

.tip-category {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--accent-strong);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.tip-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.28rem;
  margin: 0 0 0.8rem;
}

.tip-body a {
  color: var(--text);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
}

.contact-card {
  padding: 1.8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.contact-card-alt {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-title {
  margin: 0 0 0.35rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
}

.contact-name,
.contact-crosp,
.contact-address,
.contact-hours {
  color: var(--muted);
  line-height: 1.8;
}

.contact-link {
  display: inline-block;
  color: var(--accent-strong);
  font-weight: 700;
  margin-top: 0.35rem;
}

.final-cta {
  padding-bottom: 5rem;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.2rem;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(184, 141, 58, 0.12) 0%, rgba(255,255,255,0.95) 100%);
  border: 1px solid var(--border);
}

.cta-card span {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: var(--accent-strong);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

.site-footer {
  padding: 0 2rem 3rem;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem 2.2rem;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
}

.footer-brand-copy strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.08rem;
  margin-bottom: 0.25rem;
}

.footer-brand-copy span {
  color: var(--muted);
  font-size: 0.92rem;
  display: block;
  line-height: 1.6;
}

.footer-logo {
  width: 78px;
  flex-shrink: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.footer-links h3 {
  margin: 0 0 0.6rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--text);
}

.footer-links a,
.footer-links address {
  display: block;
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 0.35rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-strong);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.site-footer p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.lightbox.visible {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 15, 12, 0.72);
  backdrop-filter: blur(6px);
}

.lightbox-image {
  position: relative;
  max-width: min(92vw, 1000px);
  max-height: min(92vh, 800px);
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  border: 0;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  background: rgba(255,255,255,0.92);
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .about,
  .procedures-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 480px;
  }

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

  .gallery-card.wide {
    grid-column: span 2;
  }

  .testimonial-list,
  .tips-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 1rem 1.25rem;
    flex-wrap: wrap;
  }

  .site-footer {
    padding: 0 1.25rem 2.4rem;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 253, 250, 0.96);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 16px 40px rgba(31, 26, 22, 0.06);
  }

  .main-nav.open {
    max-height: 240px;
  }

  .main-nav a {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border);
  }

  .menu-toggle {
    display: inline-block;
  }

  .btn-ghost {
    order: 3;
    width: 100%;
  }

  .hero {
    padding-top: 7.5rem;
    gap: 2rem;
  }

  .hero-badge {
    left: 1rem;
    top: 1rem;
  }

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

  .gallery-card.wide {
    grid-column: span 1;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 4.2rem 1.1rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-badge img {
    width: 86px;
  }

  .procedure-visual img,
  .about-visual img {
    height: 320px;
  }
}
