*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F7F3EE;
  --cream-dark: #EDE6DB;
  --ink: #1A1410;
  --ink-soft: #3D3028;
  --mink: #8B6F5E;
  --gold: #B8935A;
  --gold-light: #D4B483;
  --white: #FFFFFF;
  --font-display: 'Palatino Linotype', 'Palatino', 'Book Antiqua', Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247,243,238,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-dark);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(26,20,16,0.08); }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mink);
  margin-top: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
nav a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
nav a:hover, nav a.active { color: var(--ink); }
nav a:hover::after, nav a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: var(--transition);
}

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.05em;
}
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--ink);
  line-height: 1;
}

/* ── PAGE WRAPPER ── */
main { padding-top: 80px; }

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
  gap: 4rem;
}
.hero-text {}
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 2rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--mink);
}
.hero-desc {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 380px;
  margin-bottom: 3rem;
  line-height: 1.8;
}
.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover {
  background: var(--ink-soft);
  transform: translateY(-1px);
}
.btn-outline {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--transition);
  margin-left: 1rem;
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.hero-image {
  position: relative;
  height: 70vh;
  min-height: 500px;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-image-accent {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  width: 60%; height: 40%;
  border: 1px solid var(--gold-light);
  z-index: -1;
}

/* ── SERVICES ── */
.services {
  background: var(--ink);
  padding: 6rem 2rem;
  color: var(--cream);
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4rem;
  line-height: 1.2;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: rgba(255,255,255,0.04);
  padding: 2.5rem 2rem;
  border-left: 1px solid rgba(184,147,90,0.3);
  transition: background var(--transition);
}
.service-card:hover { background: rgba(255,255,255,0.07); }
.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(184,147,90,0.3);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.9rem;
  color: rgba(247,243,238,0.65);
  line-height: 1.7;
}

/* ── CONTACTS ── */
.contacts {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.contacts-text .section-title { color: var(--ink); }
.contact-list { margin-top: 2rem; }
.contact-item {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mink);
  margin-bottom: 0.3rem;
}
.contact-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
}
.contacts-logo-block {
  background: #1A1410;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  min-height: 340px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--ink);
  padding: 8rem 2rem 4rem;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
}
.page-hero p {
  color: rgba(247,243,238,0.6);
  margin-top: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

/* ── GALLERY ── */
.gallery-section {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,20,16,0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(26,20,16,0.25);
}
.gallery-icon {
  color: white;
  font-size: 2rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-icon { opacity: 1; }

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,20,16,0.97);
  z-index: 500;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.lightbox.open { display: flex; }
.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 80vw;
}
.lightbox-img {
  max-width: 80vw;
  max-height: 85vh;
  object-fit: contain;
  transition: opacity 0.2s ease;
}
.lightbox-counter {
  color: rgba(247,243,238,0.5);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  color: rgba(247,243,238,0.7);
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color var(--transition);
}
.lightbox-close:hover { color: white; }
.lightbox-prev, .lightbox-next {
  color: white;
  font-size: 3rem;
  cursor: pointer;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(184,147,90,0.3);
  border-color: var(--gold);
}
@media (max-width: 600px) {
  .lightbox-prev, .lightbox-next { width: 44px; height: 44px; font-size: 2rem; }
  .lightbox-img { max-width: 100vw; max-height: 80vh; }
  .lightbox-content { max-width: 100vw; }
}

/* ── AWARDS ── */
.awards-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.award-card {
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: border-color var(--transition), transform var(--transition);
  cursor: pointer;
}
.award-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.award-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(247,243,238,0.6);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
}
.footer-copy { font-size: 0.8rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

/* ── DIVIDER ── */
.divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 4rem 1.5rem 3rem; min-height: auto; }
  .hero-image { height: 50vh; min-height: 300px; }
  .services-grid { grid-template-columns: 1fr; }
  .contacts { grid-template-columns: 1fr; gap: 3rem; }
  .contacts-image { height: 300px; }
  nav ul { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2.8rem; }
}
@media (max-width: 600px) {
  .header-inner { padding: 0 1.25rem; }
  .hero { padding: 3rem 1.25rem 2rem; }
  .services, .contacts, .gallery-section, .awards-section { padding: 4rem 1.25rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; text-align: center; }
}
