/* ============================================================
   CSS Variables & Reset
   ============================================================ */
:root {
  --bg:          #FAF7F3;
  --dark:        #1B1613;
  --accent:      #BF8B76;
  --gold:        #C6A87A;
  --blush:       #EDD9D0;
  --blush-light: #F8F1EB;
  --text:        #2D2420;
  --muted:       #8A7670;
  --border:      #E8DAD4;
  --white:       #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, -apple-system, sans-serif;

  --radius:    4px;
  --radius-lg: 14px;
  --shadow:    0 4px 24px rgba(27,22,19,.08);
  --shadow-lg: 0 12px 48px rgba(27,22,19,.14);
  --transition: .3s ease;
  --container: 1180px;
  --nav-h:     80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ============================================================
   Layout helpers
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 100px 0; }

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
}

.section__title em { font-style: italic; color: var(--accent); }

.section__desc {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: #a8735f;
  border-color: #a8735f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(191,139,118,.3);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; padding: 16px; }

.btn__icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   Navigation
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(250,247,243,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  transition: color var(--transition);
}

.logo-sub {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .28em;
  color: var(--accent);
}

.header.scrolled .logo-main { color: var(--dark); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav__link {
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: rgba(255,255,255,.82);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active { color: var(--white); }

.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.header.scrolled .nav__link        { color: var(--muted); }
.header.scrolled .nav__link:hover,
.header.scrolled .nav__link.active { color: var(--dark); }

.nav__link--cta {
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: var(--radius);
  color: var(--white) !important;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover  { background: var(--accent); border-color: var(--accent); }

.header.scrolled .nav__link--cta {
  color: var(--accent) !important;
  border-color: var(--accent);
}
.header.scrolled .nav__link--cta:hover {
  background: var(--accent);
  color: var(--white) !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 10;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}
.header.scrolled .nav__hamburger span { background: var(--dark); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 28% 55%, rgba(191,139,118,.13) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 65%, rgba(198,168,122,.09) 0%, transparent 50%),
    linear-gradient(155deg, #1B1613 0%, #2E2220 50%, #1B1613 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-h) 1.5rem 60px;
}

/* Subtle grid texture */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(191,139,118,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191,139,118,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero__eyebrow {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .8s .2s ease forwards;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: .95;
  letter-spacing: -.02em;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp .8s .4s ease forwards;
}
.hero__title em { font-style: italic; color: var(--accent); }

.hero__subtitle {
  font-size: .8rem;
  letter-spacing: .22em;
  color: rgba(255,255,255,.42);
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp .8s .6s ease forwards;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .8s ease forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s 1.4s ease forwards;
}
.scroll-indicator {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,.35), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn  { to { opacity: 1; } }
@keyframes scrollPulse {
  0%,100% { opacity:.35; transform: scaleY(1); }
  50%     { opacity:.8;  transform: scaleY(1.15); }
}

/* ============================================================
   About
   ============================================================ */
.about { background: var(--white); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image { position: relative; }

.about__image-frame {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blush) 0%, #D4BAB0 100%);
}
.about__image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.about__image-frame:hover img { transform: scale(1.04); }

.about__badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--dark);
  color: var(--white);
  padding: 22px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.badge-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
.badge-text {
  font-size: .7rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  margin-top: 4px;
}

.about__content { padding-top: 12px; }

.about__content .section__label { display: block; margin-bottom: 12px; }
.about__content .section__title { text-align: left; margin-bottom: 24px; }

.about__text {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 1.03rem;
  line-height: 1.85;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 36px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--text);
}
.feature__icon { color: var(--accent); font-size: .55rem; flex-shrink: 0; }

/* ============================================================
   Services
   ============================================================ */
.services { background: var(--bg); }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  transition: background var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before,
.service-card--featured::before {
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.service-card--featured {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.service-card__icon {
  width: 46px; height: 46px;
  margin-bottom: 22px;
  color: var(--accent);
}
.service-card__icon svg { width: 100%; height: 100%; }

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: inherit;
}

.service-card__list { margin-bottom: 30px; }
.service-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: .88rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.service-card__list li::before {
  content: '—';
  color: var(--accent);
  font-size: .65rem;
  flex-shrink: 0;
}
.service-card--featured .service-card__list li {
  color: rgba(255,255,255,.6);
  border-bottom-color: rgba(255,255,255,.1);
}

.service-card__cta {
  font-size: .85rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: .02em;
  transition: letter-spacing var(--transition);
}
.service-card__cta:hover       { letter-spacing: .08em; }
.service-card--featured .service-card__cta { color: var(--gold); }

/* ============================================================
   Gallery
   ============================================================ */
.gallery {
  background: var(--dark);
  padding-bottom: 60px;
}

/* Filter buttons */
.gallery__filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.gallery__filter {
  padding: 9px 22px;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .07em;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 24px;
  color: rgba(255,255,255,.55);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.gallery__filter:hover,
.gallery__filter.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.gallery__item.hidden {
  display: none;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 32px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, #2A2220 0%, #3A2B26 100%);
  aspect-ratio: 1;
}

.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  min-height: 180px;
}
.gallery__item:hover img { transform: scale(1.06); }

.gallery__overlay {
  position: absolute; inset: 0;
  background: rgba(27,22,19,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.gallery__overlay span {
  font-size: 2.2rem;
  color: var(--white);
  opacity: 0;
  transform: scale(.5);
  transition: all var(--transition);
}
.gallery__item:hover .gallery__overlay { background: rgba(27,22,19,.42); }
.gallery__item:hover .gallery__overlay span { opacity: 1; transform: scale(1); }

.gallery__more {
  text-align: center;
  margin-top: 52px;
  padding: 0 1.5rem;
}
.gallery__more .btn--outline {
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.25);
}
.gallery__more .btn--outline:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }

.lightbox__content { max-width: 90vw; max-height: 90vh; }
.lightbox__content img {
  max-width: 100%; max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255,255,255,.1);
  color: var(--white);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: background var(--transition);
}
.lightbox__close { top: 20px; right: 20px; font-size: 1.1rem; }
.lightbox__prev  { left: 16px;  top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: var(--accent); }

/* ============================================================
   Reviews
   ============================================================ */
.reviews { background: var(--blush-light); }

.reviews__stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.stars-display { display: flex; gap: 3px; }
.star          { color: var(--gold); font-size: 1.15rem; }
.reviews__rating { font-weight: 600; }
.reviews__source {
  font-size: .78rem;
  color: var(--muted);
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all var(--transition);
}
.reviews__source:hover { border-color: var(--accent); color: var(--accent); }

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

.review-card {
  background: var(--white);
  padding: 34px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.review-card:hover { transform: translateY(-4px); }

.review-card__stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: .9rem;
  margin-bottom: 16px;
}

.review-card__text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--accent);
  font-weight: 600;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card__name   { font-weight: 500; font-size: .88rem; }
.review-card__source { font-size: .73rem; color: var(--muted); margin-top: 2px; }

.reviews__cta { text-align: center; margin-top: 52px; }

/* ============================================================
   Contact
   ============================================================ */
.contact { background: var(--white); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.contact__item:last-of-type { border-bottom: none; margin-bottom: 0; }

.contact__icon { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.contact__icon svg { width: 100%; height: 100%; }

.contact__label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact__value { font-size: .95rem; color: var(--text); line-height: 1.55; }
a.contact__value:hover { color: var(--accent); }

.contact__social {
  display: flex;
  gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .78rem;
  color: var(--muted);
  transition: all var(--transition);
}
.social-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.social-btn:hover { border-color: var(--accent); color: var(--accent); }

/* Form */
.contact__form-wrap {
  background: var(--bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.form__group { margin-bottom: 20px; }
.form__row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form__label {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--text);
  margin-bottom: 8px;
}

.form__input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font-size: .9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(191,139,118,.12);
}
.form__input::placeholder { color: #C0B3AE; }

.form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A7670' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}

.form__textarea { resize: vertical; min-height: 120px; }

.form__success,
.form__error {
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: var(--radius);
  font-size: .88rem;
  line-height: 1.5;
}
.form__success { background: #F0FAF4; color: #276749; border: 1px solid #B7E4C7; }
.form__error   { background: #FDF1F0; color: #9B2335; border: 1px solid #F5C6CB; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.55);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.footer__logo span {
  font-family: var(--font-sans);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--accent);
  margin-left: 8px;
  vertical-align: middle;
}

.footer__tagline { font-size: .88rem; line-height: 1.9; }

.footer__heading {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li,
.footer__col a  { font-size: .85rem; transition: color var(--transition); }
.footer__col a:hover { color: var(--accent); }

.footer__social { display: flex; flex-direction: column; gap: 12px; }
.footer__social a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  transition: color var(--transition);
}
.footer__social svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer__social a:hover { color: var(--accent); }

.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
}

/* ============================================================
   Scroll-reveal animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible          { opacity: 1; transform: translateY(0); }
.reveal-delay-1.visible  { transition-delay: .12s; }
.reveal-delay-2.visible  { transition-delay: .24s; }

/* ============================================================
   Responsive – 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .about__grid    { gap: 48px; }
  .services__grid { gap: 16px; }
  .footer__grid   { grid-template-columns: 1fr 1fr; }

  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__item:first-child { grid-column: span 1; grid-row: span 1; aspect-ratio: 1; }
}

/* ============================================================
   Responsive – 768px (tablet / mobile)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .section { padding: 72px 0; }

  /* Nav mobile */
  .nav__hamburger { display: flex; }
  .nav__menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(250,247,243,.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 20px 1.5rem 28px;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    border-bottom: 1px solid var(--border);
  }
  .nav__menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }

  .nav__link {
    color: var(--text) !important;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
    font-size: .95rem;
  }
  .nav__link::after      { display: none; }
  .nav__link:last-child  { border-bottom: none; }
  .nav__link--cta {
    border: 1px solid var(--accent) !important;
    color: var(--accent) !important;
    text-align: center;
    border-radius: var(--radius);
    margin-top: 12px;
    padding: 12px !important;
  }
  .nav__link--cta:hover { background: var(--accent); color: var(--white) !important; }

  /* Hero */
  .hero__actions  { flex-direction: column; align-items: center; }

  /* About */
  .about__grid    { grid-template-columns: 1fr; gap: 40px; }
  .about__badge   { bottom: -14px; right: 14px; }
  .about__image   { max-width: 380px; margin: 0 auto; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery__grid  { grid-template-columns: repeat(2, 1fr); }

  /* Reviews */
  .reviews__grid  { grid-template-columns: 1fr; }

  /* Contact */
  .contact__grid      { grid-template-columns: 1fr; gap: 40px; }
  .form__row          { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 24px 20px; }

  /* Footer */
  .footer__grid  { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ============================================================
   Responsive – 480px (small mobile)
   ============================================================ */
@media (max-width: 480px) {
  .about__features    { grid-template-columns: 1fr; }
  .footer__grid       { grid-template-columns: 1fr; gap: 28px; }
  .contact__social    { flex-direction: column; }
  .reviews__stars-row { flex-direction: column; gap: 8px; }
}
