:root {
  --color-bg: #FAF7F2;
  --color-bg-alt: #F0EAE0;
  --color-text: #2B2B2B;
  --color-text-muted: #6B6560;
  --color-accent: #C1592E;
  --color-accent-dark: #9C4623;
  --color-border: #E2DACE;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1180px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 2rem;
  --space-4: 4rem;
  --space-5: 6rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3, p { margin: 0; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 150;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: var(--color-bg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.logo {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}
.site-header.scrolled .logo { color: var(--color-text); }
.logo-bold { font-weight: 700; }
.logo-light { font-weight: 300; }
.site-nav { display: flex; gap: 2rem; }
.site-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.site-header.scrolled .site-nav a { color: var(--color-text); }
.site-nav a:hover,
.site-header.scrolled .site-nav a:hover { color: var(--color-accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  z-index: 140;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 120;
}
.nav-backdrop.open { display: block; }
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
  transition: background 0.3s ease;
}
.site-header.scrolled .nav-toggle span { background: var(--color-text); }

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-bg);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.1);
    z-index: 130;
  }
  .site-nav.open { right: 0; }
  .site-nav a { color: var(--color-text) !important; padding: 0.75rem 0; border-bottom: 1px solid var(--color-border); }
}

/* Footer */
.site-footer {
  padding: var(--space-3);
  text-align: center;
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  font-size: 0.85rem;
}
.logo--small { font-size: 1.1rem; display: block; margin-bottom: 0.5rem; color: var(--color-text); }
.social-links { margin-top: 0.5rem; display: flex; gap: 1rem; justify-content: center; }
.social-links a { color: var(--color-text-muted); text-decoration: none; }
.social-links a:hover { color: var(--color-accent); }

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 var(--space-3);
}
.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  animation: hero-float 5s ease-in-out infinite;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-value {
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}
.hero-tagline {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}
.hero-location {
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  opacity: 0.85;
  margin-bottom: 2.5rem;
}
.scroll-cue {
  display: inline-block;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  line-height: 44px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* About */
.about { padding: var(--space-5) 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-items: center;
}
.about-media img { width: 100%; border-radius: 4px; }
.about-content h2 { font-size: 2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.5rem; }
.bio { margin-bottom: 1.5rem; }
.bio h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.25rem; }
.bio-nickname { font-weight: 400; font-style: italic; color: var(--color-text-muted); font-size: 0.95rem; }
.bio .bio-role {
  color: var(--color-accent-dark);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.bio p { color: var(--color-text-muted); }

@media (max-width: 800px) {
  .about-inner { grid-template-columns: 1fr; }
}

/* Services */
.services { padding: var(--space-5) 0; background: var(--color-bg-alt); }
.services h2 { text-align: center; font-size: 2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-4); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.service-card { border-radius: 6px; overflow: hidden; background: #fff; }
.service-card--photo img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.3s ease; }
.service-card--photo:hover img { transform: scale(1.05); }
.service-card h3 { font-size: 1.2rem; font-weight: 700; padding: 1.25rem 1.25rem 0.5rem; }
.service-card p { padding: 0 1.25rem 1.5rem; color: var(--color-text-muted); font-size: 0.95rem; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* Portfolio */
.portfolio { padding: var(--space-5) 0; }
.portfolio h2 { text-align: center; font-size: 2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-4); }
.portfolio-tabs { display: flex; justify-content: center; gap: var(--space-2); margin-bottom: var(--space-3); }
.portfolio-tab {
  background: none;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.portfolio-tab:hover { border-color: var(--color-accent); color: var(--color-text); }
.portfolio-tab.active { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.gallery-row { display: flex; align-items: center; gap: var(--space-2); }
.gallery { flex: 1; min-width: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-2); }
.gallery-item {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.portfolio-arrow {
  flex-shrink: 0;
  background: none;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.portfolio-arrow:hover { background: var(--color-bg-alt); border-color: var(--color-accent); }

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .gallery-row { gap: var(--space-1); }
  .portfolio-arrow { width: 36px; height: 36px; font-size: 1.25rem; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: var(--space-3);
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
}

/* FAQ */
.faq { padding: var(--space-5) 0; }
.faq h2 { text-align: center; font-size: 2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-4); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
}
.faq-question:hover { color: var(--color-accent-dark); }
.faq-icon { flex-shrink: 0; font-size: 1.3rem; font-weight: 400; color: var(--color-accent-dark); transition: transform 0.2s ease; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 0 1.25rem; }
.faq-answer p { color: var(--color-text-muted); font-size: 0.95rem; }

/* Contact */
.contact { padding: var(--space-5) 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.contact-info h2 { font-size: 2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.5rem; }
.contact-info img { width: 100%; border-radius: 4px; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form label { font-weight: 500; font-size: 0.9rem; }
.required-mark { color: var(--color-accent-dark); font-style: italic; margin-left: 0.15em; }
.contact-confirmation { color: var(--color-accent-dark); font-size: 0.9rem; font-weight: 500; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--color-text);
}
.contact-form button {
  align-self: flex-start;
  padding: 0.85rem 2rem;
  background: var(--color-accent-dark);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.contact-form button:hover { background: #7A371C; }

@media (max-width: 800px) {
  .contact-inner { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-content h1,
  .scroll-cue {
    animation: none;
  }
}
