/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #b8943f;
  --gold-light: #d4b35c;
  --gold-dark: #8a6e2f;
  --dark: #0b0b0b;
  --dark-blue: #0f1923;
  --ocean: #1c3650;
  --sand: #f3ece0;
  --sand-dark: #e8dece;
  --white: #fafaf8;
  --text: #1a1a1a;
  --text-light: #706b63;
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, sans-serif;
  --radius: 6px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== EYEBROW (reusable label) ===== */
.eyebrow {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow-light { color: var(--gold-light); }

/* ===== PAGE LOADER ===== */
.page-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--dark-blue);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s ease, visibility .7s ease;
}
.page-loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 2px;
  opacity: 0;
  animation: loaderIn .8s ease forwards;
}
.loader-sub {
  display: block;
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-top: 8px;
  opacity: 0;
  animation: loaderIn .6s .3s ease forwards;
}
@keyframes loaderIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 1001;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  width: 0%;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0;
  transition: background .4s cubic-bezier(.4,0,.2,1), padding .4s cubic-bezier(.4,0,.2,1), box-shadow .4s;
}
.navbar.scrolled {
  background: rgba(15,25,35,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.25);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img {
  height: 52px;
  transition: height .4s cubic-bezier(.4,0,.2,1), transform .3s;
}
.nav-logo:hover img { transform: scale(1.04); }
.navbar.scrolled .nav-logo img { height: 40px; }

.nav-links {
  display: flex; align-items: center; gap: 8px;
  position: relative;
}
.nav-pill {
  position: absolute;
  background: rgba(184,148,63,.1);
  border-radius: 100px;
  transition: left .35s cubic-bezier(.4,0,.2,1), width .35s cubic-bezier(.4,0,.2,1), opacity .25s;
  pointer-events: none; opacity: 0; z-index: 0;
}
.nav-links li { position: relative; z-index: 1; }
.nav-links a {
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  transition: color .25s;
  display: inline-block;
}
.nav-links li {
  opacity: 0; transform: translateY(-8px);
  animation: navIn .5s cubic-bezier(.4,0,.2,1) forwards;
}
.nav-links li:nth-child(1) { animation-delay: .15s; }
.nav-links li:nth-child(2) { animation-delay: .22s; }
.nav-links li:nth-child(3) { animation-delay: .29s; }
.nav-links li:nth-child(4) { animation-delay: .36s; }
.nav-links li:nth-child(5) { animation-delay: .43s; }
.nav-links li:nth-child(6) { animation-delay: .50s; }
@keyframes navIn { to { opacity: 1; transform: translateY(0); } }

.nav-links a.nav-active { color: var(--gold); }
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  padding: 9px 24px !important;
  border: 1.5px solid var(--gold) !important;
  color: var(--gold) !important;
  border-radius: 100px !important;
  transition: all .25s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
  transform: scale(1.03);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 6px;
  cursor: pointer; z-index: 1001;
}
.hamburger span {
  width: 26px; height: 2px; background: var(--white); transition: .3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh; min-height: 680px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: -60px;
  background: url('../img/hero.jpg') center/cover no-repeat;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.3) 0%, rgba(0,0,0,.45) 40%, rgba(0,0,0,.72) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 0 24px;
}
.hero-tagline {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0;
  animation: softIn .7s .2s ease forwards;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 16px;
  clip-path: inset(0 0 100% 0);
  animation: clipReveal .9s .5s cubic-bezier(.77,0,.18,1) forwards;
}
.hero h1 span { color: var(--gold-light); font-style: italic; }
@keyframes clipReveal { to { clip-path: inset(0 0 0% 0); } }

/* Ornament between title and subtitle */
.hero-ornament {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 16px;
  color: var(--gold);
  opacity: 0;
  animation: softIn .6s 1s ease forwards;
}
.hero-ornament span {
  display: block; width: 40px; height: 1px;
  background: rgba(255,255,255,.2);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto 32px;
  opacity: 0;
  animation: softIn .8s 1.1s ease forwards;
}
.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: softIn .8s 1.35s ease forwards;
}
@keyframes softIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: softIn .6s 2s ease forwards;
}
.scroll-hint span {
  font-size: .6rem; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,.35);
}
.scroll-hint-line {
  width: 1px; height: 36px;
  background: rgba(255,255,255,.12);
  position: relative; overflow: hidden;
}
.scroll-hint-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { top: -100%; } 50% { top: 100%; } 100% { top: 100%; } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 34px;
  font-size: .76rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: none; cursor: pointer;
  border-radius: 100px;
  position: relative; overflow: hidden;
  transition: color .3s, transform .2s;
  font-family: var(--font-body);
}
.btn:active { transform: scale(.97); }
.btn::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 100px; z-index: -1;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary::before { background: var(--gold-light); transform: translateX(-101%); }
.btn-primary:hover::before { transform: translateX(0); }

.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.2);
}
.btn-outline::before { background: rgba(255,255,255,.08); transform: translateX(-101%); }
.btn-outline:hover::before { transform: translateX(0); }
.btn-outline:hover { border-color: rgba(255,255,255,.45); }

.btn-dark {
  background: var(--dark-blue); color: var(--white);
}
.btn-dark::before { background: var(--ocean); transform: translateX(-101%); }
.btn-dark:hover::before { transform: translateX(0); }

/* ===== SECTION COMMON ===== */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 520px;
}

/* Section divider */
.section-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; padding: 0; color: var(--gold);
}
.section-divider span {
  display: block; width: 60px; height: 1px;
  background: var(--sand-dark);
}
.section-divider-sand { background: var(--sand); padding: 0; }

/* ===== ABOUT ===== */
.about {
  background: var(--white);
  padding: 110px 0 100px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-image {
  position: relative; overflow: visible;
}
.about-image img {
  width: 100%; height: 500px;
  object-fit: cover;
  position: relative; z-index: 1;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s cubic-bezier(.77,0,.18,1);
}
.about-image.in-view img { clip-path: inset(0 0% 0 0); }
/* Gold accent frame */
.about-image-accent {
  position: absolute;
  top: 16px; left: 16px; right: -16px; bottom: -16px;
  border: 1.5px solid var(--gold);
  opacity: .3;
  z-index: 0;
}

.about-text .section-title,
.about-text .section-desc,
.about-text .about-divider,
.about-text .about-stats,
.about-text .eyebrow {
  opacity: 0; transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.about-text.in-view .eyebrow       { opacity: 1; transform: translateY(0); transition-delay: .15s; }
.about-text.in-view .section-title  { opacity: 1; transform: translateY(0); transition-delay: .25s; }
.about-text.in-view .about-divider  { opacity: 1; transform: translateY(0); transition-delay: .35s; }
.about-text.in-view .section-desc   { opacity: 1; transform: translateY(0); transition-delay: .45s; }
.about-text.in-view .about-stats    { opacity: 1; transform: translateY(0); transition-delay: .6s; }

.about-divider {
  width: 48px; height: 1.5px;
  background: var(--gold);
  margin-bottom: 20px;
}

.about-stats {
  display: flex; gap: 40px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

/* ===== SPECIALTIES ===== */
.specialties {
  background: var(--dark-blue);
  color: var(--white);
  padding: 100px 0;
  position: relative;
}
/* Subtle noise texture */
.specialties::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.specialties .container { position: relative; z-index: 1; }
.specialties .section-title { color: var(--white); }

.specialties-header { margin-bottom: 56px; }
.specialties-header .section-title {
  opacity: 0; transform: translateX(-20px);
  transition: opacity .6s ease, transform .6s ease;
}
.specialties-header.in-view .section-title { opacity: 1; transform: translateX(0); }
.specialties-header .eyebrow-light {
  opacity: 0; transition: opacity .5s ease;
}
.specialties-header.in-view .eyebrow-light { opacity: 1; }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.spec-card {
  padding: 36px 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  border-right: 1px solid rgba(255,255,255,.08);
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease, background .3s;
  position: relative;
}
.spec-card:nth-child(2n) { border-right: none; }
.spec-card.in-view { opacity: 1; transform: translateY(0); }
.spec-card:hover { background: rgba(255,255,255,.03); }

.spec-num {
  display: block;
  font-family: var(--font-heading);
  font-size: .85rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: .6;
}
.spec-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 400;
  margin-bottom: 8px;
}
.spec-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
}

/* ===== MENU ===== */
.menu {
  background: var(--sand);
  padding: 100px 0 120px;
}
.menu-header {
  margin-bottom: 56px;
  text-align: center;
}
.menu-header .section-desc { margin: 0 auto; }

.menu-section { margin-bottom: 40px; }
.menu-section-title {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 400;
  color: var(--dark-blue);
  margin-bottom: 6px; padding-bottom: 10px;
  display: inline-block; position: relative;
}
.menu-section-title::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .8s cubic-bezier(.4,0,.2,1);
}
.menu-section.in-view .menu-section-title::after { width: 100%; }
.menu-section-note {
  font-size: .82rem; color: var(--text-light);
  font-style: italic; margin-bottom: 16px;
}

.menu-items { display: flex; flex-direction: column; }
.menu-item {
  display: flex; align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
  opacity: 0; transform: translateX(-8px);
  transition: opacity .4s ease, transform .4s ease;
}
.menu-item:last-child { border-bottom: none; }
.menu-section.in-view .menu-item { opacity: 1; transform: translateX(0); }

.menu-item-info { flex-shrink: 0; }
.menu-item-name {
  font-weight: 600; font-size: .92rem;
  color: var(--text);
}
.menu-item-desc {
  font-size: .8rem; color: var(--text-light);
  margin-top: 2px; font-style: italic;
}
/* Dot leader between name and edge */
.menu-dots {
  flex: 1;
  margin: 0 8px;
  border-bottom: 1px dotted rgba(0,0,0,.15);
  min-width: 20px;
  align-self: center;
  margin-bottom: 4px;
}

.menu-pdf-link { text-align: center; margin-top: 48px; }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 60px;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--white);
  padding: 100px 0 110px;
}
.gallery-header {
  text-align: center;
  margin-bottom: 52px;
}

.gallery-grid { columns: 4; column-gap: 10px; }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border-radius: var(--radius);
}
.gallery-item img {
  width: 100%; display: block;
  border-radius: var(--radius);
  transform: scale(1.06);
  opacity: 0;
  transition: transform .7s cubic-bezier(.4,0,.2,1), opacity .7s ease;
}
.gallery-item.in-view img { transform: scale(1); opacity: 1; }

/* Hover overlay with caption */
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 100%);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s, transform .3s;
  border-radius: 0 0 var(--radius) var(--radius);
  pointer-events: none;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item.in-view:hover img { transform: scale(1.03); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease, background .4s ease;
  cursor: pointer;
}
.lightbox.active { opacity: 1; visibility: visible; background: rgba(0,0,0,.94); }
.lightbox img {
  max-width: 90%; max-height: 85vh;
  object-fit: contain;
  transform: scale(.92);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  border-radius: var(--radius);
}
.lightbox.active img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  color: var(--white); font-size: 2rem;
  cursor: pointer; background: none; border: none;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s .2s;
}
.lightbox.active .lightbox-close { opacity: 1; }

/* ===== CONTACT ===== */
.contact {
  background: var(--dark-blue);
  color: var(--white);
  padding: 100px 0 110px;
  position: relative;
}
.contact::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.contact .container { position: relative; z-index: 1; }

.contact-header { margin-bottom: 48px; }
.contact-header .section-title {
  color: var(--white);
  opacity: 0; transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.contact-header.in-view .section-title { opacity: 1; transform: translateY(0); }
.contact-header .eyebrow-light {
  opacity: 0; transition: opacity .5s ease;
}
.contact-header.in-view .eyebrow-light { opacity: 1; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  opacity: 0; transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}
.contact-item.in-view { opacity: 1; transform: translateY(0); }

.contact-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: border-color .2s, background .2s;
}
.contact-item:hover .contact-icon {
  border-color: var(--gold);
  background: rgba(184,148,63,.08);
}

.contact-item h4 {
  font-size: .7rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 3px;
}
.contact-item p {
  color: rgba(255,255,255,.6);
  line-height: 1.6; font-size: .92rem;
}
.contact-item a {
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.contact-item a:hover { color: var(--gold); }

.contact-social {
  opacity: 0; transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}
.contact-social.in-view { opacity: 1; transform: translateY(0); }
.contact-social h4 {
  font-size: .7rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
}

.contact-map {
  overflow: hidden;
  min-height: 400px;
  border-radius: var(--radius);
  opacity: 0; transform: translateY(16px);
  transition: opacity .7s .2s ease, transform .7s .2s ease;
}
.contact-map.in-view { opacity: 1; transform: translateY(0); }
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* Social */
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: border-color .2s, color .2s, transform .2s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.08);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 56px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo {
  height: 44px;
  opacity: .7;
  margin-bottom: 14px;
}
.footer-tagline {
  font-size: .85rem;
  color: rgba(255,255,255,.3);
  line-height: 1.6;
  font-style: italic;
}
.footer-nav, .footer-contact-col { }
.footer-nav h5, .footer-contact-col h5 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-nav a {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  padding: 4px 0;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-contact-col p {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
  margin-bottom: 6px;
}
.footer-contact-col a {
  color: rgba(255,255,255,.35);
  transition: color .2s;
}
.footer-contact-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding-top: 24px;
}
.footer-bottom p {
  font-size: .75rem;
  color: rgba(255,255,255,.2);
}
.footer-credit {
  font-size: .72rem;
  color: rgba(255,255,255,.15);
}
.footer-credit a {
  color: var(--gold-dark);
  transition: color .2s;
}
.footer-credit a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 80%; max-width: 340px; height: 100vh;
    background: rgba(15,25,35,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center;
    gap: 8px; transition: right .4s cubic-bezier(.4,0,.2,1);
    padding: 40px;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: .92rem; padding: 12px 18px; }
  .nav-pill { display: none; }
  .hamburger { display: flex; }
  .nav-links li { opacity: 0; transform: translateX(30px); animation: none; }
  .nav-links.open li { animation: mobileNavIn .4s cubic-bezier(.4,0,.2,1) forwards; }
  .nav-links.open li:nth-child(1) { animation-delay: .05s; }
  .nav-links.open li:nth-child(2) { animation-delay: .1s; }
  .nav-links.open li:nth-child(3) { animation-delay: .15s; }
  .nav-links.open li:nth-child(4) { animation-delay: .2s; }
  .nav-links.open li:nth-child(5) { animation-delay: .25s; }
  .nav-links.open li:nth-child(6) { animation-delay: .3s; }
  @keyframes mobileNavIn { to { opacity: 1; transform: translateX(0); } }

  .hero { min-height: 580px; }
  .hero h1 { font-size: 2.2rem; }
  .scroll-hint { bottom: 24px; }

  .about { padding: 72px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-image img { height: 320px; }
  .about-image-accent { display: none; }
  .about-stats { gap: 24px; }

  .specialties { padding: 72px 0; }
  .spec-grid { grid-template-columns: 1fr; }
  .spec-card { border-right: none; }

  .menu { padding: 72px 0 80px; }
  .menu-grid { grid-template-columns: 1fr; }

  .gallery { padding: 72px 0; }
  .gallery-grid { columns: 3; column-gap: 6px; }
  .gallery-item { margin-bottom: 6px; }

  .contact { padding: 72px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-map { min-height: 280px; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .gallery-grid { columns: 2; column-gap: 4px; }
  .gallery-item { margin-bottom: 4px; }
  .about-stats { flex-direction: column; gap: 16px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg { inset: 0; }
}
