@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

:root {
  --cream: #faf6f0;
  --warm-white: #fffef9;
  --blush: #e8d5c4;
  --dusty-rose: #c9a99a;
  --taupe: #8c7b72;
  --charcoal: #2d2926;
  --gold: #c8a96e;
  --light-gold: #e8d5a3;
  --ink: #1a1714;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.5s ease;
}
nav.scrolled {
  background: rgba(250,246,240,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,169,110,0.2);
  padding: 11px 48px;
}
.nav-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 2.2rem;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s;
  z-index: 1001; position: relative;
}
.nav-logo:hover { color: var(--dusty-rose); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--charcoal); text-decoration: none;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; width: 0; height: 1px;
  background: var(--dusty-rose); transition: width 0.35s ease;
}
.nav-links a:hover { color: var(--dusty-rose); }
.nav-links a:hover::after { width: 100%; }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--warm-white);
  border: 1px solid rgba(200,169,110,0.25);
  min-width: 185px; list-style: none;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu li a {
  display: block; padding: 11px 22px;
  font-size: 0.76rem; letter-spacing: 0.12em;
  border-bottom: 1px solid rgba(200,169,110,0.1);
  white-space: nowrap;
}
.dropdown-menu li:last-child a { border-bottom: none; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
  z-index: 1001; position: relative;
}
.nav-toggle span { width: 26px; height: 1px; background: var(--charcoal); transition: all 0.3s; display: block; }

/* ─── PAGE TRANSITION ─── */
.page-content {
  opacity: 0; transform: translateY(14px);
  animation: pageIn 0.8s ease forwards 0.1s;
}
@keyframes pageIn { to { opacity: 1; transform: translateY(0); } }

/* ─── BUTTONS — FULLY FIXED ─── */
.btn-primary {
  display: inline-block;
  padding: 14px 38px;
  border: 1px solid var(--charcoal);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.83rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  position: relative; overflow: hidden;
  background: transparent; cursor: pointer;
  vertical-align: middle;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--charcoal);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
  z-index: 0;
}
.btn-primary:hover { color: #ffffff; }
.btn-primary:hover::before { transform: translateX(0); }
/* All direct text inside btn-primary needs to sit above the fill */
.btn-primary > * { position: relative; z-index: 1; }

/* Since text nodes can't be z-indexed, we use this trick: */
.btn-primary {
  isolation: isolate;
}
.btn-primary::after {
  content: attr(data-text);
}

.btn-ghost {
  display: inline-block;
  padding: 14px 38px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.83rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--taupe); text-decoration: none;
  border-bottom: 1px solid var(--dusty-rose);
  transition: color 0.3s, letter-spacing 0.3s;
  background: transparent;
}
.btn-ghost:hover { color: var(--dusty-rose); letter-spacing: 0.28em; }

/* ─── HERO ─── */
.hero {
  height: 100vh; min-height: 600px;
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: #d4c8bc; }
.hero-collage {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 2.2fr 1fr;
  opacity: 0.52;
}
.hero-collage img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(15%) contrast(0.95);
}
.hero-collage img:nth-child(1),
.hero-collage img:nth-child(3) { opacity: 0.62; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(250,246,240,0.22) 0%, rgba(250,246,240,0.48) 50%, rgba(250,246,240,0.84) 100%);
}
.hero-ornament {
  position: absolute;
  width: 360px; height: 360px;
  border: 1px solid rgba(200,169,110,0.28);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: slowSpin 80s linear infinite;
  pointer-events: none;
}
.hero-ornament::before {
  content: ''; position: absolute; inset: 20px;
  border: 1px solid rgba(200,169,110,0.15);
  border-radius: 50%;
}
@keyframes slowSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.hero-text { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 16px;
  opacity: 0; animation: fadeUp 1s ease forwards 0.6s;
}
.hero-name {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3.6rem,10vw,9rem);
  color: var(--charcoal); line-height: 1; margin-bottom: 10px;
  opacity: 0; animation: fadeUp 1.1s ease forwards 0.8s;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(1rem,2.5vw,1.4rem);
  color: var(--taupe); letter-spacing: 0.08em; margin-bottom: 38px;
  opacity: 0; animation: fadeUp 1.1s ease forwards 1s;
}
.hero-divider {
  width: 68px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 30px;
  opacity: 0; animation: fadeUp 1s ease forwards 1.1s;
}
.hero-cta {
  opacity: 0; animation: fadeUp 1s ease forwards 1.3s;
  display: inline-flex; gap: 18px; flex-wrap: wrap; justify-content: center;
}
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 7px;
  opacity: 0; animation: fadeUp 1s ease forwards 1.8s;
}
.hero-scroll span { font-size: 0.63rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--taupe); }
.scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* ─── PHOTO STRIP ─── */
.photo-strip {
  display: flex; overflow: hidden;
  height: 260px; gap: 4px;
}
.photo-strip img {
  flex: 1 1 0; min-width: 0;
  height: 100%; object-fit: cover;
  filter: sepia(10%) contrast(0.96);
  transition: transform 0.6s ease, filter 0.5s ease, flex 0.5s ease;
}
.photo-strip img:hover { flex: 1.6 1 0; filter: sepia(4%) contrast(1); }

/* ─── MOSAIC ─── */
.mosaic { display: grid; gap: 5px; }
.mosaic-4 { grid-template-columns: 1.3fr 1fr 1fr 1.3fr; height: 320px; }
.mosaic-5 { grid-template-columns: 1fr 1fr 1.5fr 1fr 1fr; height: 350px; }
.mosaic-3 { grid-template-columns: 1fr 1.4fr 1fr; height: 380px; }
.mosaic img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(10%) contrast(0.96);
  transition: transform 0.7s ease, filter 0.5s ease;
  display: block;
}
.mosaic img:hover { transform: scale(1.04); filter: sepia(4%) contrast(1); }

/* ─── SECTIONS ─── */
section { padding: 90px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-label {
  font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--dusty-rose); margin-bottom: 12px; display: block;
}
.section-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2.8rem,6vw,5rem);
  color: var(--charcoal); line-height: 1.1; margin-bottom: 18px;
}
.section-title.centered { text-align: center; }
.gold-rule { width: 52px; height: 1px; background: var(--gold); margin-bottom: 26px; }
.gold-rule.centered { margin: 0 auto 34px; }

/* ─── INTRO ─── */
.intro-section { background: var(--cream); padding: 80px 0; }
.intro-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 70px; align-items: center; }
.intro-img-wrap { position: relative; }
.intro-img-wrap img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: sepia(10%) contrast(0.97); position: relative; z-index: 1;
}
.intro-img-wrap::before {
  content: ''; position: absolute;
  inset: -12px -12px auto auto;
  width: calc(100% - 24px); height: calc(100% - 24px);
  border: 1px solid rgba(200,169,110,0.4);
  pointer-events: none; z-index: 0;
}
.intro-body { font-size: 1rem; color: var(--taupe); font-style: italic; line-height: 1.9; margin-bottom: 26px; }

/* ─── SLIDER ─── */
.slider-section { padding: 80px 0; overflow: hidden; background: var(--warm-white); }
.slider-header { text-align: center; margin-bottom: 46px; padding: 0 48px; }
.slider-track-wrap { position: relative; overflow: hidden; }
.slider-track { display: flex; gap: 18px; transition: transform 0.7s cubic-bezier(0.4,0,0.2,1); padding: 0 48px; }
.slide { flex: 0 0 calc(33.333% - 12px); position: relative; overflow: hidden; cursor: pointer; }
.slide img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: sepia(10%) contrast(0.96); display: block;
  transition: transform 0.7s ease, filter 0.5s ease;
}
.slide:hover img { transform: scale(1.04); filter: sepia(4%) contrast(1); }
.slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 34px 18px 16px;
  background: linear-gradient(to top, rgba(26,23,20,0.72), transparent);
  color: white; font-family: 'Great Vibes', cursive; font-size: 1.7rem;
  opacity: 0; transform: translateY(8px); transition: all 0.4s ease;
}
.slide:hover .slide-caption { opacity: 1; transform: translateY(0); }
.slider-controls { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 34px; }
.slider-btn {
  width: 44px; height: 44px; border: 1px solid var(--blush);
  background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; color: var(--taupe); font-size: 1rem;
}
.slider-btn:hover { background: var(--charcoal); border-color: var(--charcoal); color: white; }
.slider-dots { display: flex; gap: 7px; }
.slider-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blush); cursor: pointer; transition: all 0.3s; border: none;
}
.slider-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }

/* ─── CATEGORIES ─── */
.categories-section { background: var(--cream); padding: 90px 0; }
.categories-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--blush); border: 1px solid var(--blush);
}
.category-tile {
  position: relative; overflow: hidden;
  aspect-ratio: 2/3; background: var(--cream);
  text-decoration: none; display: block;
}
.category-tile img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(18%) saturate(0.88) contrast(0.95);
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1), filter 0.6s ease;
}
.category-tile:hover img { transform: scale(1.06); filter: sepia(6%) saturate(1) contrast(0.98); }
.category-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.72) 0%, rgba(26,23,20,0.06) 55%, transparent 100%);
  transition: background 0.5s ease;
}
.category-tile:hover .category-tile-overlay {
  background: linear-gradient(to top, rgba(26,23,20,0.52) 0%, rgba(26,23,20,0.03) 55%, transparent 100%);
}
.category-tile-text { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; }
.category-tile-name {
  font-family: 'Great Vibes', cursive; font-size: 1.85rem; color: white;
  display: block; margin-bottom: 3px; transition: transform 0.4s ease;
}
.category-tile:hover .category-tile-name { transform: translateY(-4px); }
.category-tile-sub {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

/* ─── QUOTE STRIP ─── */
.quote-strip {
  padding: 70px 48px; text-align: center;
  background: var(--charcoal); position: relative; overflow: hidden;
}
.quote-strip::before {
  content: '"'; position: absolute; top: -38px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Great Vibes', cursive; font-size: 17rem;
  color: rgba(200,169,110,0.055); line-height: 1; pointer-events: none;
}
.quote-text {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.9rem,5vw,3.1rem);
  color: var(--light-gold); max-width: 740px; margin: 0 auto 15px; line-height: 1.3;
}
.quote-attr { font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.33); }

/* ─── SERVICES ─── */
.services-section { background: var(--warm-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--blush); border: 1px solid var(--blush); margin-top: 50px;
}
.service-card { background: var(--warm-white); padding: 46px 34px; transition: background 0.3s; }
.service-card:hover { background: var(--cream); }
.service-number { font-family: 'Great Vibes', cursive; font-size: 4rem; color: rgba(200,169,110,0.17); line-height: 1; margin-bottom: -8px; }
.service-name { font-family: 'Great Vibes', cursive; font-size: 2rem; color: var(--charcoal); margin-bottom: 10px; }
.service-desc { font-size: 0.88rem; color: var(--taupe); font-style: italic; line-height: 1.8; }
.service-price { margin-top: 18px; font-size: 0.73rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dusty-rose); }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--cream); padding: 90px 0; }
.testimonials-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: rgba(200,169,110,0.18); margin-top: 50px;
}
.testimonial-card { background: var(--cream); padding: 46px 42px; position: relative; }
.testimonial-card::before {
  content: '"'; font-family: 'Great Vibes', cursive; font-size: 5.5rem;
  color: rgba(200,169,110,0.2); position: absolute; top: 10px; left: 30px; line-height: 1;
}
.testimonial-text { font-size: 0.95rem; font-style: italic; color: var(--taupe); line-height: 1.9; margin-bottom: 22px; position: relative; z-index: 1; }
.testimonial-author { font-size: 0.73rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dusty-rose); }

/* ─── CONTACT ─── */
.contact-section { background: var(--warm-white); padding: 90px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 88px; align-items: start; }
.contact-body { font-size: 0.93rem; color: var(--taupe); font-style: italic; margin-bottom: 34px; line-height: 1.9; }
.contact-details { list-style: none; }
.contact-details li { display: flex; gap: 14px; margin-bottom: 15px; font-size: 0.86rem; color: var(--taupe); align-items: flex-start; }
.contact-details li span:first-child { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dusty-rose); min-width: 66px; margin-top: 2px; }
.contact-form { display: flex; flex-direction: column; gap: 17px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.66rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--taupe); }
.form-group input, .form-group select, .form-group textarea {
  border: none; border-bottom: 1px solid var(--blush);
  background: transparent; padding: 9px 0;
  font-family: 'Cormorant Garamond', serif; font-size: 0.93rem; color: var(--charcoal);
  outline: none; transition: border-color 0.3s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: none; height: 96px; }
.form-group select option { background: var(--warm-white); }

/* ─── FOOTER ─── */
footer { background: var(--ink); padding: 54px 48px 26px; text-align: center; }
.footer-logo { font-family: 'Great Vibes', cursive; font-size: 2.9rem; color: var(--light-gold); margin-bottom: 17px; display: block; }
.footer-links { display: flex; gap: 26px; justify-content: center; list-style: none; margin-bottom: 30px; flex-wrap: wrap; }
.footer-links a { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.36); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--light-gold); }
.footer-rule { width: 34px; height: 1px; background: rgba(200,169,110,0.33); margin: 0 auto 18px; }
.footer-copy { font-size: 0.66rem; letter-spacing: 0.13em; color: rgba(255,255,255,0.2); }

/* ─── GALLERY PAGE ─── */
.gallery-hero {
  height: 55vh; min-height: 360px;
  position: relative; display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 50px; overflow: hidden;
}
.gallery-hero-bg { position: absolute; inset: 0; }
.gallery-hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: sepia(15%) contrast(0.95) brightness(0.84); }
.gallery-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,23,20,0.65) 0%, transparent 60%); }
.gallery-hero-text { position: relative; z-index: 2; text-align: center; color: white; }
.gallery-title { font-family: 'Great Vibes', cursive; font-size: clamp(3rem,8vw,7rem); line-height: 1; color: white; margin-bottom: 6px; }
.gallery-sub { font-size: 0.73rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.58); }
.gallery-grid-section { padding: 70px 0; background: var(--cream); }
.masonry-grid { columns: 3; column-gap: 9px; padding: 0 48px; }
.masonry-item { break-inside: avoid; margin-bottom: 9px; overflow: hidden; }
.masonry-item img { width: 100%; display: block; filter: sepia(8%) contrast(0.96); transition: transform 0.6s ease, filter 0.5s ease; }
.masonry-item:hover img { transform: scale(1.03); filter: sepia(3%) contrast(1); }

/* ─── ABOUT ─── */
.about-intro { padding: 120px 0 80px; background: var(--warm-white); }
.about-intro-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 88px; align-items: start; }
.about-portrait-wrap { position: relative; margin-top: 48px; }
.about-portrait-wrap img { width: 100%; aspect-ratio: 2/3; object-fit: cover; filter: sepia(10%) contrast(0.96); }
.retro-stamp {
  position: absolute; bottom: -20px; right: -20px;
  width: 96px; height: 96px; border: 2px dashed var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--warm-white); animation: slowSpin 30s linear infinite reverse;
}
.retro-stamp-inner { font-size: 0.48rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); text-align: center; line-height: 1.5; }
.about-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--blush); border: 1px solid var(--blush); margin-top: 68px; }
.about-value { background: var(--cream); padding: 46px 34px; }
.about-value-icon { font-family: 'Great Vibes', cursive; font-size: 3rem; color: var(--gold); margin-bottom: 10px; line-height: 1; }
.about-value-title { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--taupe); margin-bottom: 11px; }
.about-value p { font-size: 0.91rem; font-style: italic; color: var(--taupe); line-height: 1.85; }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  nav { padding: 13px 20px; }
  nav.scrolled { padding: 10px 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,254,249,0.98);
    align-items: center; justify-content: center; gap: 26px; z-index: 1000;
  }
  .nav-links.open a { font-size: 0.92rem; letter-spacing: 0.16em; }
  .nav-links.open .dropdown-menu { display: none; }

  .hero-collage { display: none; }
  .hero-ornament { width: 240px; height: 240px; }
  .section-inner { padding: 0 18px; }
  section { padding: 56px 0; }
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .intro-img-wrap { max-width: 320px; margin: 0 auto; }
  .photo-strip { height: 180px; }
  .mosaic-4, .mosaic-5, .mosaic-3 { grid-template-columns: 1fr 1fr; height: auto; }
  .mosaic img { aspect-ratio: 4/3; height: 160px; }
  .slide { flex: 0 0 78%; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .form-row { grid-template-columns: 1fr; }
  .masonry-grid { columns: 2; padding: 0 14px; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-portrait-wrap { max-width: 340px; margin: 0 auto; }
  .about-values { grid-template-columns: 1fr; }
  footer { padding: 42px 18px 22px; }
  .footer-links { gap: 16px; }
  .btn-primary, .btn-ghost { padding: 11px 26px; font-size: 0.76rem; }
  .gallery-hero { height: 42vh; min-height: 280px; }
  .quote-strip { padding: 50px 20px; }
  .slider-section { padding: 56px 0; }
  .slider-track { padding: 0 18px; }
  .slider-header { padding: 0 18px; }
}

@media (max-width: 520px) {
  .hero-name { font-size: 3.2rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .masonry-grid { columns: 1; }
  .mosaic-4, .mosaic-5, .mosaic-3 { grid-template-columns: 1fr; }
  .mosaic img { height: 220px; }
  .photo-strip img { flex: 0 0 60%; }
}
