/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-burgundy:    #7C1D23;
  --color-burgundy-dark: #5A1519;
  --color-burgundy-light: #9E2A31;
  --color-blush:       #FADADD;
  --color-blush-light: #FFF5F5;
  --color-cream:       #FDF8F6;
  --color-neutral:     #2C2C2C;
  --color-neutral-mid: #5A5A5A;
  --color-neutral-light: #8A8A8A;
  --color-bg:          #FDF8F6;
  --color-bg-alt:      #F5EDEA;
  --color-white:       #FFFFFF;
  --color-text:        #1A1A1A;
  --color-text-muted:  #5A5A5A;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  0.75rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  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%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ── Skip Link ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--color-burgundy);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus { top: var(--space-md); }

/* ── Typography ─────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-burgundy);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.8125rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-burgundy);
  color: var(--color-white);
  border-color: var(--color-burgundy);
}
.btn-primary:hover {
  background: var(--color-burgundy-dark);
  border-color: var(--color-burgundy-dark);
}

.btn-outline {
  background: transparent;
  color: var(--color-burgundy);
  border-color: var(--color-burgundy);
}
.btn-outline:hover {
  background: var(--color-burgundy);
  color: var(--color-white);
}

.btn-sm { padding: 0.5rem 1.125rem; font-size: 0.8125rem; }
.btn-full { width: 100%; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 248, 246, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124, 29, 35, 0.1);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--color-text);
}
.logo-mark { color: var(--color-burgundy); }
.logo-text { text-transform: lowercase; }

.primary-nav ul {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}
.primary-nav a:not(.btn) {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-neutral-mid);
  transition: color var(--transition);
  position: relative;
}
.primary-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-burgundy);
  transition: width var(--transition);
}
.primary-nav a:not(.btn):hover { color: var(--color-burgundy); }
.primary-nav a:not(.btn):hover::after { width: 100%; }

.primary-nav > * { display: flex; align-items: center; gap: var(--space-xl); }
.primary-nav > ul { margin-right: auto; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}
.nav-toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-bg);
  padding-top: 72px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  position: relative;
  z-index: 1;
}

.hero-content { padding-right: var(--space-xl); }

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-burgundy);
  margin-bottom: var(--space-lg);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--color-text);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
}
.hero-headline .accent {
  color: var(--color-burgundy);
  display: block;
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}
.hero-badges li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-neutral-mid);
}
.badge-icon { color: var(--color-burgundy); flex-shrink: 0; }

.hero-image { position: relative; }

.hero-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(124, 29, 35, 0.15);
}
.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-accent-block {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--color-burgundy);
  color: var(--color-white);
  padding: var(--space-xl) var(--space-2xl);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(124, 29, 35, 0.3);
}
.hero-accent-number {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
}
.hero-accent-label {
  font-size: 0.8125rem;
  opacity: 0.85;
  margin-top: 4px;
}

.hero-slash {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(124, 29, 35, 0.12);
  z-index: 0;
}

/* ── Services ───────────────────────────────────────────── */
.services {
  padding: var(--space-4xl) 0;
  background: var(--color-bg-alt);
}

.section-header { margin-bottom: var(--space-3xl); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  border: 1px solid rgba(124, 29, 35, 0.08);
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--color-burgundy);
  box-shadow: 0 8px 32px rgba(124, 29, 35, 0.1);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--color-blush);
  color: var(--color-burgundy);
  margin-bottom: var(--space-lg);
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.service-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

/* ── About ──────────────────────────────────────────────── */
.about {
  padding: var(--space-4xl) 0;
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image { position: relative; }

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.1);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  border: 4px solid var(--color-bg);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.about-content { padding-left: var(--space-xl); }

.about-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(124, 29, 35, 0.12);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-burgundy);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* ── Gallery ────────────────────────────────────────────── */
.gallery {
  padding: var(--space-4xl) 0;
  background: var(--color-bg-alt);
}

.gallery .section-header { text-align: center; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-burgundy);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-note {
  text-align: center;
  margin-top: var(--space-xl);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* ── Process ────────────────────────────────────────────── */
.process {
  padding: var(--space-4xl) 0;
  background: var(--color-burgundy);
  color: var(--color-white);
}
.process .section-eyebrow { color: var(--color-blush); }
.process .section-title { color: var(--color-white); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.process-step {
  position: relative;
  padding: var(--space-xl) 0;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: var(--space-2xl);
  right: 0;
  width: 1px;
  height: 60%;
  background: rgba(250, 218, 221, 0.25);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-blush);
  line-height: 1;
  margin-bottom: var(--space-md);
  opacity: 0.7;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.step-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  opacity: 0.8;
}

/* ── Contact ────────────────────────────────────────────── */
.contact {
  padding: var(--space-4xl) 0;
  background: var(--color-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
}

.contact-details {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.contact-item a {
  color: var(--color-burgundy);
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--color-burgundy-dark); }
.contact-icon { color: var(--color-burgundy); flex-shrink: 0; margin-top: 2px; }

.contact-hours {
  background: var(--color-blush-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  border: 1px solid var(--color-blush);
}
.contact-hours strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-burgundy);
  margin-bottom: 4px;
}
.contact-hours p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ── Form ───────────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid rgba(124, 29, 35, 0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }

.form-group { margin-bottom: var(--space-lg); }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-neutral-mid);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem var(--space-md);
  border: 1.5px solid var(--color-bg-alt);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-burgundy);
  box-shadow: 0 0 0 3px rgba(124, 29, 35, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-neutral-light); }

.form-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: var(--space-md);
}

.form-success {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
}
.form-success svg { color: var(--color-burgundy); margin: 0 auto var(--space-lg); }
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}
.form-success p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--color-neutral);
  color: rgba(255,255,255,0.7);
  padding: var(--space-4xl) 0 var(--space-xl);
}
.site-footer a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.site-footer a:hover { color: var(--color-blush); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo-light { color: var(--color-white); }
.footer-brand p {
  margin-top: var(--space-md);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links strong,
.footer-contact strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blush);
  margin-bottom: var(--space-lg);
}
.footer-links ul { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-links a { font-size: 0.9375rem; }
.footer-contact address {
  font-style: normal;
  line-height: 1.7;
  font-size: 0.9375rem;
  margin-bottom: var(--space-sm);
}
.footer-contact a { display: block; font-size: 0.9375rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  font-size: 0.8125rem;
  opacity: 0.6;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { gap: var(--space-2xl); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none !important; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .primary-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid rgba(124, 29, 35, 0.1);
    padding: var(--space-xl);
    transform: translateY(-120%);
    transition: transform var(--transition);
    z-index: 99;
  }
  .primary-nav.open { transform: translateY(0); }
  .primary-nav > ul { flex-direction: column; gap: var(--space-md); margin-right: 0; }
  .primary-nav > .btn { width: 100%; justify-content: center; margin-top: var(--space-md); }

  .hero { min-height: auto; padding-top: 72px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }
  .hero-content { padding-right: 0; order: 1; }
  .hero-image { order: 2; }
  .hero-img-wrapper { max-height: 480px; }
  .hero-accent-block { bottom: -16px; left: 16px; padding: var(--space-lg) var(--space-xl); }
  .hero-slash { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: 2; }
  .about-content { padding-left: 0; order: 1; }
  .about-img-accent { right: -16px; bottom: -16px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .footer-bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-md); }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
