:root {
  --rose-light: #ecd3c9;
  --rose: #c79485;
  --rose-dark: #a86a5b;
  --charcoal: #262422;
  --charcoal-soft: #454140;
  --cream: #fbf7f4;
  --white: #ffffff;
  --border: #e8ddd6;
  --shadow: 0 20px 40px -20px rgba(38, 36, 34, 0.25);
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 0.5em;
  color: var(--charcoal);
  font-weight: 700;
}

p { margin: 0 0 1em; color: var(--charcoal-soft); }

a { color: var(--rose-dark); text-decoration: none; }

img { max-width: 100%; display: block; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rose-dark);
  margin-bottom: 0.6em;
}

.center { text-align: center; }

.section { padding: 5.5rem 1.5rem; }
.section-inner { max-width: 1140px; margin: 0 auto; }

.btn {
  display: inline-block;
  padding: 0.85em 1.9em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(168, 106, 91, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(168, 106, 91, 0.6); }

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

.btn-ghost {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo { height: 62px; width: auto; }

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--rose-dark);
  transition: width 0.2s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1rem; }

.header-call { white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38,36,34,0.55) 0%, rgba(38,36,34,0.6) 45%, rgba(38,36,34,0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 780px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--rose-light);
  margin-bottom: 1.1em;
}

.hero-title {
  font-family: 'Alex Brush', cursive;
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.1em;
  text-shadow: 0 6px 30px rgba(0,0,0,0.35);
}

.hero-sub {
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 1rem;
  color: var(--rose-light);
  margin-bottom: 1.4em;
}

.hero-tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
  max-width: 600px;
  margin: 0 auto 2em;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Strip */
.strip {
  background: var(--charcoal);
  color: var(--white);
  padding: 2.2rem 1.5rem;
}
.strip-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.strip-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--rose-light);
}
.strip-label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 0.3em;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-text h2 { font-size: 2.1rem; }
.about-logo-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo { max-width: 320px; }

/* Services */
.services { background: var(--white); }
.services-intro { max-width: 620px; margin: 0 auto 3rem; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card h3 {
  font-size: 1.2rem;
  color: var(--rose-dark);
  margin-bottom: 0.4em;
}
.service-card p { margin: 0; font-size: 0.95rem; }

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
}
.why-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.why-text h2 { font-size: 2.1rem; }
.why-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; }
.why-list h4 {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 0.2em;
}
.why-list p { margin: 0; font-size: 0.95rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
  align-items: stretch;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
}
.contact-card h3 {
  font-size: 1.1rem;
  color: var(--rose-dark);
  margin-top: 1.5rem;
}
.contact-card h3:first-child { margin-top: 0; }
.contact-list, .hours-list { margin: 0 0 1rem; }
.contact-list dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rose-dark);
  margin-top: 0.8em;
}
.contact-list dd { margin: 0.1em 0 0; font-weight: 500; }
.hours-list div {
  display: flex;
  justify-content: space-between;
  padding: 0.35em 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.92rem;
}
.hours-list dt { font-weight: 500; margin: 0; }
.hours-list dd { margin: 0; color: var(--charcoal-soft); }
.hours-note { font-size: 0.85rem; font-style: italic; margin: 1rem 0 1.5rem; }
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 340px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}
.footer-logo {
  height: 70px;
  width: auto;
  margin: 0 auto 1rem;
  filter: brightness(0) invert(1) opacity(0.9);
}
.footer-inner p { color: rgba(255,255,255,0.75); margin: 0.2em 0; }
.footer-inner a { color: var(--rose-light); }
.footer-copy { font-size: 0.82rem; margin-top: 1rem; color: rgba(255,255,255,0.5); }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .why-image { order: -1; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .main-nav.open { max-height: 300px; }
  .main-nav a {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle { display: flex; }
  .header-call { display: none; }
  .service-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .brand-logo { height: 50px; }
}
