/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --light-gray: #F2F2F2;
  --mid-gray: #888888;
  --dark-gray: #555555;
  --ink: #1C1C1E;
  --gold: #FFB612;
  --gold-hover: #E6A310;
  --gold-light: #FFF3D0;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SHARED NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28,28,30,0.08);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
}

.nav-logo span { color: var(--gold); font-style: italic; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }

.nav-cta {
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 2px;
}

.nav-cta:hover { background: var(--gold) !important; color: var(--ink) !important; }

.nav-mobile-cta { display: none; }

/* ── SHARED FOOTER ── */
footer {
  background: var(--ink);
  padding: 64px 80px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--white);
  display: block;
  margin-bottom: 14px;
}

.footer-logo span { color: var(--gold); font-style: italic; }

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  max-width: 260px;
}

.footer-col h5 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 32px;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── SHARED COMPONENTS ── */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}

.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}

.btn-ghost:hover { color: var(--ink); gap: 14px; }
.btn-ghost::after { content: '→'; font-size: 16px; }

/* ── SHARED TESTIMONIALS ── */
.testimonials-section {
  padding: 100px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-header .section-label { justify-content: center; }

.testimonials-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  margin-top: 16px;
}

.testimonials-header h2 em { font-style: italic; color: var(--gold); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.testi-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  padding: 44px 36px;
}

.testi-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testi-quote {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 28px;
}

.testi-name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
}

.testi-detail {
  font-size: 12px;
  color: var(--mid-gray);
  letter-spacing: 0.04em;
  display: block;
  margin-top: 2px;
}

/* ── SHARED MASONRY ── */
.masonry-grid {
  columns: 3;
  column-gap: 8px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 8px;
  overflow: hidden;
  position: relative;
  contain: layout;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.masonry-item:hover img { transform: scale(1.03); }

.masonry-item .photo-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(28,28,30,0.75);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.2s;
}

.masonry-item:hover .photo-tag { opacity: 1; }

/* ── HAMBURGER & MOBILE MENU ── */
.nav-mobile-row {
  display: none;
  align-items: center;
  gap: 12px;
}

.nav-mobile-cta {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 2px;
  transition: background 0.2s;
}

.nav-mobile-cta:hover { background: var(--gold); color: var(--ink); }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.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); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 61px;
  left: 0; right: 0;
  z-index: 99;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28,28,30,0.08);
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
}

.nav-mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-menu ul {
  list-style: none;
  padding: 8px 0 16px;
}

.nav-mobile-menu ul li a {
  display: block;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.nav-mobile-menu ul li a:hover {
  color: var(--ink);
  background: var(--light-gray);
}

.nav-mobile-menu ul li:last-child a {
  color: var(--ink);
  font-weight: 500;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in { animation: fadeUp 0.7s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

/* ── SHARED RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 18px 32px; }
  footer { grid-template-columns: 1fr 1fr; padding: 48px 40px 32px; }
  .testimonials-section { padding: 80px 40px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 12px; }
  .masonry-grid { columns: 2; }
}

@media (max-width: 640px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-mobile-row { display: flex; }
  .nav-mobile-menu { display: block; }
  footer { grid-template-columns: 1fr; padding: 48px 24px 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .masonry-grid { columns: 1; }
  .testimonials-section { padding: 64px 24px; }
}