:root {
  --forest-emerald: #254734;
  --soft-linen: #E7E2DB;
  --rose-clay: #B48A78;
  --honey-oak: #C69E72;
  --mint-mist: #CBE7E4;
  --charcoal: #242424;
  --warm-white: #FAF8F5;

  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Work Sans", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--soft-linen);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 48px;
  text-align: center;
  color: var(--forest-emerald);
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn-primary {
  background: var(--forest-emerald);
  color: var(--warm-white);
}
.btn-primary:hover { transform: translateY(-2px); background: #1c3626; }

.btn-outline {
  background: transparent;
  color: var(--forest-emerald);
  border: 1px solid var(--forest-emerald);
}
.btn-outline:hover { background: var(--forest-emerald); color: var(--warm-white); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(37, 71, 52, 0.08);
  transition: background 0.3s ease;
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: flex-end;
}

.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
}
.main-nav a:hover { color: var(--forest-emerald); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--forest-emerald);
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--soft-linen);
  padding: 140px 32px 80px;
}

.hero-inner { max-width: 780px; }

.hero-photo {
  width: 100%;
  max-width: 420px;
  margin: 56px auto 0;
}

.hero-photo img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.hero h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.25;
  color: var(--forest-emerald);
  margin: 0 0 28px;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--charcoal);
  opacity: 0.85;
  margin: 0 0 40px;
}

/* About */
.about {
  background: var(--warm-white);
  padding: 100px 0;
}

.about-inner { max-width: 700px; margin: 0 auto; text-align: center; }

.about-photo {
  max-width: 420px;
  margin: 0 auto 40px;
}

.about-photo img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.about-statement {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  line-height: 1.55;
  color: var(--forest-emerald);
  margin: 0;
}

.certificate {
  max-width: 160px;
  margin: 48px auto 0;
}

.certificate .photo-frame {
  aspect-ratio: 3 / 4;
  margin-bottom: 0;
}

/* Services */
.services { background: var(--soft-linen); padding: 100px 0; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px 32px;
}

.service-card { text-align: left; }

.photo-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--warm-white);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}

.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.photo-frame.no-photo {
  background: linear-gradient(135deg, var(--soft-linen), var(--warm-white));
  border: 1px solid rgba(37, 71, 52, 0.12);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: var(--charcoal);
  border-left: 2px solid var(--honey-oak);
  padding-left: 12px;
}

.service-card.accent-pmu h3 { border-color: var(--rose-clay); }

.service-card p {
  font-size: 0.92rem;
  opacity: 0.8;
  margin: 0 0 0 14px;
}

.service-price {
  margin: 14px 0 0 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(37, 71, 52, 0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--charcoal);
  opacity: 0.7;
}

.service-price strong {
  font-weight: 500;
  color: var(--forest-emerald);
  opacity: 1;
}

.service-price--single {
  font-size: 0.88rem;
}

.accent-pmu .service-price { border-top-color: rgba(180, 138, 120, 0.3); }

.packages {
  margin-top: 88px;
  padding-top: 64px;
  border-top: 1px solid rgba(37, 71, 52, 0.12);
}

.packages-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--forest-emerald);
  text-align: center;
  margin: 0 0 40px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.package-card {
  background: var(--warm-white);
  border-radius: 4px;
  padding: 28px 24px;
  border-top: 2px solid var(--honey-oak);
}

.package-card h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin: 0 0 10px;
}

.package-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--honey-oak);
  border: 1px solid var(--honey-oak);
  border-radius: 999px;
  padding: 2px 10px;
  vertical-align: middle;
  margin-left: 4px;
}

.package-card p {
  font-size: 0.85rem;
  opacity: 0.75;
  margin: 0 0 16px;
  line-height: 1.5;
}

.package-price {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--forest-emerald);
}

.services-more {
  text-align: center;
  margin-top: 64px;
}

.services-more p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0 0 20px;
}

/* Results */
.results { background: var(--warm-white); padding: 100px 0; }

.results-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

.tab-btn {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  background: transparent;
  border: 1px solid rgba(37, 71, 52, 0.25);
  color: var(--forest-emerald);
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.tab-btn.is-active,
.tab-btn:hover {
  background: var(--forest-emerald);
  color: var(--warm-white);
  border-color: var(--forest-emerald);
}

.results-grid {
  columns: 3 280px;
  column-gap: 24px;
}

.result-item {
  margin: 0 0 24px;
  break-inside: avoid;
}

.result-item .photo-frame {
  aspect-ratio: auto;
  margin-bottom: 0;
}

.result-item .photo-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.result-item .photo-frame.no-photo {
  aspect-ratio: 4 / 5;
}

.result-item.is-hidden { display: none; }

.result-caption {
  display: block;
  margin-top: 6px;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.5;
  text-align: center;
}

.result-pair {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.result-pair-photo {
  flex: 1;
  min-width: 0;
}

/* Reviews */
.reviews { background: var(--mint-mist); padding: 100px 0; }

.reviews-inner { text-align: center; max-width: 560px; margin: 0 auto; }

.reviews-text {
  font-size: 1rem;
  opacity: 0.85;
  margin: 0 0 32px;
}

/* Instagram */
.instagram { background: var(--warm-white); padding: 64px 0; }

.instagram-inner { text-align: center; }

.instagram p {
  font-size: 1rem;
  opacity: 0.85;
  margin: 0;
}

.instagram a {
  color: var(--forest-emerald);
  font-weight: 500;
  border-bottom: 1px solid var(--honey-oak);
}

/* Contact */
.contact { background: var(--forest-emerald); color: var(--warm-white); padding: 100px 0; }

.contact .section-title { color: var(--warm-white); }

.contact-inner { text-align: center; }

.contact-photo {
  max-width: 420px;
  margin: 0 auto 56px;
}

.contact-photo img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: left;
}

.contact-block h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1rem;
  margin: 0 0 10px;
  color: var(--honey-oak);
}

.contact-block p {
  font-size: 0.92rem;
  opacity: 0.9;
  margin: 0;
}

.contact-block a { border-bottom: 1px solid var(--honey-oak); }

.btn-contact.btn-primary {
  background: var(--warm-white);
  color: var(--forest-emerald);
}
.btn-contact.btn-primary:hover { background: var(--soft-linen); }

/* Footer */
.site-footer {
  background: #1c3626;
  color: var(--soft-linen);
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer-logo {
  height: 28px;
  width: auto;
  display: block;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--forest-emerald);
  color: var(--warm-white);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10px;
  box-shadow: 0 4px 18px rgba(37, 71, 52, 0.28);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.25s ease;
}

.floating-cta::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid var(--forest-emerald);
  opacity: 0;
}

.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta.is-visible::before {
  animation: ring-blink 2.6s ease-in-out infinite;
}

.floating-cta:hover { background: #1c3626; }

@keyframes ring-blink {
  0%, 60%, 100% { opacity: 0; transform: scale(1); }
  30% { opacity: 0.6; transform: scale(1.08); }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(36, 36, 36, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--warm-white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--warm-white);
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  padding: 12px;
  transition: opacity 0.2s ease;
}

.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

.lightbox-counter {
  position: absolute;
  top: 28px;
  left: 32px;
  color: var(--warm-white);
  font-size: 0.85rem;
  opacity: 0.7;
  letter-spacing: 0.04em;
}

.results-grid img {
  cursor: zoom-in;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 860px) {
  .header-actions { display: none; }
  .nav-toggle { display: flex; }

  .header-inner.nav-open .header-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-white);
    padding: 24px 32px 32px;
    gap: 24px;
    border-bottom: 1px solid rgba(37, 71, 52, 0.1);
  }

  .header-inner.nav-open .main-nav {
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }

  .results-grid { columns: 2 220px; }
}

@media (max-width: 520px) {
  .results-grid { columns: 1; }
  .floating-cta { right: 16px; bottom: 16px; padding: 13px 22px; font-size: 0.82rem; }
}
