
:root {
  --background: #fbf7f2;
  --foreground: #201913;
  --card: #f7f1ea;
  --card-strong: #f3ebe2;
  --muted: #efe5da;
  --muted-foreground: #76685e;
  --primary: #c8902e;
  --primary-strong: #b37f1f;
  --accent: #9a6520;
  --border: #e5d7c8;
  --shadow: 0 18px 50px rgba(32, 25, 19, 0.09);
  --radius: 22px;
  --font-body: "Montserrat", system-ui, sans-serif;
  --font-heading: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) rgba(32, 25, 19, 0.08);
}
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }

body::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

body::-webkit-scrollbar-track {
  background: rgba(32, 25, 19, 0.06);
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 999px;
  border: 3px solid rgba(251, 247, 242, 0.92);
}

body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--accent), var(--primary-strong));
}

.site { min-height: 100vh; }

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}
.narrow { width: min(900px, calc(100% - 32px)); }

.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 60;
  transition: background .35s ease, backdrop-filter .35s ease, box-shadow .35s ease;
  background: transparent;
}
.nav.scrolled {
  background: rgba(251, 247, 242, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(32, 25, 19, 0.08);
}
.nav-inner {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: .08em;
  font-weight: 600;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-link, .mobile-link {
  font-size: .92rem;
  color: rgba(32, 25, 19, .8);
  transition: color .2s ease;
}
.nav-link:hover, .mobile-link:hover, .social-link:hover, .text-link:hover { color: var(--primary); }
.socials { display: flex; align-items: center; gap: 12px; }
.social-link {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid rgba(32, 25, 19, 0.12);
  border-radius: 999px;
  color: rgba(32, 25, 19, .62);
  transition: all .2s ease;
  font-weight: 600;
}
.social-link svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}
.menu-btn {
  display: none;
  width: 44px; height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--foreground);
  margin: 5px auto;
  border-radius: 10px;
}
.mobile-menu {
  background: rgba(251, 247, 242, 0.96);
  border-top: 1px solid rgba(32, 25, 19, 0.08);
  backdrop-filter: blur(14px);
}
.mobile-menu-inner {
  padding: 18px 0 24px;
  display: grid;
  gap: 18px;
}
.mobile-link { padding: 8px 0; display: block; }
.mobile-socials { display: flex; gap: 12px; padding-top: 8px; border-top: 1px solid var(--border); }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 981px) {
  .hero-bg { object-position: center 72%; }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(32,25,19,.38), rgba(32,25,19,.28) 45%, rgba(32,25,19,.58));
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding-top: 84px;
  max-width: 920px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .85rem;
  opacity: .8;
  margin: 0 0 18px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 8vw, 5.8rem);
  line-height: .96;
  font-weight: 300;
  margin: 0;
}
.hero h1 span { font-style: italic; font-weight: 500; }
.hero-text {
  max-width: 720px;
  margin: 22px auto 0;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.85;
  opacity: .9;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.btn.primary { background: var(--primary); color: #fff; }
.btn.primary:hover { background: var(--accent); }
.btn.ghost {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.38);
  color: #fff;
}
.btn.ghost:hover { background: rgba(255,255,255,.08); }
.scroll-indicator {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-indicator span {
  width: 20px; height: 34px;
  display: block;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  position: relative;
}
.scroll-indicator span::after {
  content: "";
  position: absolute;
  top: 7px; left: 50%;
  width: 4px; height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  transform: translateX(-50%);
  animation: dot 2s infinite;
}
@keyframes dot {
  0%,100% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 10px); opacity: .8; }
}

.section {
  padding: 96px 0;
}
.section.alt { background: var(--card); }
.section-head {
  text-align: center;
  margin-bottom: 42px;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 0 0 10px;
}
.section-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted-foreground);
  line-height: 1.85;
  font-weight: 300;
  font-size: 1.02rem;
}
.grid { display: grid; gap: 22px; }
.services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card {
  background: var(--card);
  border: 1px solid rgba(229, 215, 200, .75);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(32,25,19,.11); }
.service-icon {
  width: 70px; height: 70px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: rgba(200, 144, 46, .12);
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 700;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin: 0 0 10px;
  font-weight: 500;
}
.service-card p {
  color: var(--muted-foreground);
  line-height: 1.9;
  font-weight: 300;
  margin: 0;
}
.service-toggle, .text-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--primary);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}
.service-gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.thumb {
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}
.thumb img, .gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.thumb:hover img, .gallery-card:hover img { transform: scale(1.08); }

.gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gallery-card {
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}
.overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(32,25,19, 0);
  transition: background .35s ease;
}
.overlay span {
  opacity: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  transition: opacity .25s ease;
}
.gallery-card:hover .overlay { background: rgba(32,25,19,.18); }
.gallery-card:hover .overlay span { opacity: 1; }

.centered { text-align: center; margin-top: 20px; }

.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 10px 0 8px;
}
.stars {
  letter-spacing: .18em;
  color: var(--primary);
  font-size: 1rem;
}
.stars.big { font-size: 1.1rem; }
.rating-score {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
}
.reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.review-card {
  background: white;
  border: 1px solid rgba(229, 215, 200, .9);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
}
.review-top { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 10px; }
.review-date { color: var(--muted-foreground); font-size: .78rem; }
.review-card p {
  margin: 0 0 14px;
  color: rgba(32,25,19,.9);
  line-height: 1.85;
}
.review-card footer {
  color: var(--muted-foreground);
  font-size: .85rem;
  font-weight: 600;
}
.reviews-toolbar {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.review-empty {
  grid-column: 1 / -1;
  background: rgba(255,255,255,.65);
  border: 1px dashed rgba(229, 215, 200, .9);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  color: var(--muted-foreground);
  line-height: 1.85;
}
.review-empty p { margin: 0; }
.review-empty p + p { margin-top: 8px; }
.review-delete {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  background: rgba(32,25,19,.08);
  color: var(--foreground);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 600;
}
.review-delete:hover { background: rgba(32,25,19,.14); }



.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: start;
}
.contact-info, .contact-form-wrap {
  background: var(--card);
  border: 1px solid rgba(229, 215, 200, .8);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 18px;
}
.contact-item:not(:last-child) { margin-bottom: 8px; border-bottom: 1px solid rgba(229, 215, 200, .7); }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(200, 144, 46, .12);
  display: grid; place-items: center;
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 700;
  flex: 0 0 auto;
}
.contact-item h3 {
  margin: 0 0 4px;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
}
.contact-item p, .contact-item a {
  margin: 0;
  color: var(--muted-foreground);
}
.contact-item a:hover { color: var(--primary); }
.map-wrap {
  margin-top: 18px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(229, 215, 200, .8);
  height: 280px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.contact-form { display: grid; gap: 16px; }
.field label {
  display: block;
  margin-bottom: 8px;
  font-size: .92rem;
  font-weight: 600;
}
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--foreground);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.field input:focus, .field textarea:focus {
  border-color: rgba(200, 144, 46, .7);
  box-shadow: 0 0 0 4px rgba(200, 144, 46, .12);
}
.field textarea { resize: vertical; min-height: 140px; }
.submit-btn { width: 100%; border: 0; cursor: pointer; }
.send-icon { font-size: 1rem; line-height: 1; }
.form-hint {
  margin: 0;
  color: var(--muted-foreground);
  font-size: .86rem;
  line-height: 1.7;
}

.footer {
  background: var(--foreground);
  color: rgba(255,255,255,.8);
  padding: 40px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
.footer h3, .footer h4 {
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--font-heading);
}
.footer p { margin: 0 0 10px; line-height: 1.8; color: rgba(255,255,255,.6); }
.footer-socials .social-link {
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.75);
}
.copyright {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
  font-size: .8rem;
  color: rgba(255,255,255,.42);
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 85;
  display: grid;
  place-items: center;
  padding: 24px;
}
.review-modal[hidden] { display: none; }
.review-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32,25,19,.68);
  backdrop-filter: blur(6px);
}
.review-modal-card {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  background: var(--background);
  border: 1px solid rgba(229, 215, 200, .95);
  border-radius: 24px;
  box-shadow: 0 35px 90px rgba(0,0,0,.2);
  padding: 28px;
}
.review-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 20px;
}
.modal-eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .75rem;
  color: var(--muted-foreground);
}
.review-modal h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
}
.review-modal-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(32,25,19,.08);
  cursor: pointer;
  font-size: 1.1rem;
}
.review-modal-close:hover { background: rgba(32,25,19,.14); }
.review-form {
  display: grid;
  gap: 16px;
}
.star-picker {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.star-option {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(229, 215, 200, .95);
  border-radius: 14px;
  background: #fff;
  color: rgba(200, 144, 46, .35);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all .2s ease;
}
.star-option.selected {
  background: rgba(200, 144, 46, .12);
  border-color: rgba(200, 144, 46, .45);
  color: var(--primary);
}
.review-submit { margin-top: 6px; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(32,25,19,.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 35px 90px rgba(0,0,0,.35);
}
.lightbox button {
  position: absolute;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.86);
  cursor: pointer;
}
.lightbox-close { top: 20px; right: 20px; font-size: 2rem; }
.lightbox-prev, .lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  padding: 10px 14px;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.toast {
  position: fixed;
  left: 50%;
  top: 92px;
  transform: translateX(-50%);
  z-index: 90;
  background: var(--primary);
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-size: .92rem;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-btn { display: block; }
  .services-grid, .reviews-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { gap: 18px; }
  .hero-content { padding-top: 100px; }
}

@media (max-width: 760px) {
  .nav-inner { height: 74px; }
  .section { padding: 76px 0; }
  .service-card, .contact-info, .contact-form-wrap, .review-modal-card { padding: 22px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .service-gallery { grid-template-columns: 1fr 1fr; }
  .lightbox-prev, .lightbox-next { font-size: 3rem; }
  .review-modal { padding: 16px; }
  .review-modal-head { align-items: center; }
}

@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;
  }
}
