:root {
  --ink: #242022;
  --muted: #756c70;
  --cream: #fbf7f4;
  --blush: #ead3d0;
  --rose: #b86f75;
  --deep-rose: #8d4f57;
  --white: #fff;
  --line: #eadfdd;
  --shadow: 0 20px 60px rgba(70, 42, 44, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  letter-spacing: .03em;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.topbar a { color: #f3d8d6; font-weight: 700; }

.navbar {
  background: rgba(251,247,244,.94);
  border-bottom: 1px solid rgba(141,79,87,.10);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
}
.nav-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.logo {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.03em;
  white-space: nowrap;
}
.logo span {
  color: var(--rose);
  font-size: 34px;
}
nav { display: flex; gap: 30px; font-size: 14px; font-weight: 600; }
nav a { position: relative; }
nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -8px;
  width: 0; height: 2px;
  background: var(--rose);
  transition: width .25s ease;
}
nav a:hover::after { width: 100%; }

.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav-cta, .button-primary { background: var(--deep-rose); color: #fff; box-shadow: 0 10px 25px rgba(141,79,87,.2); }
.nav-cta:hover, .button:hover { transform: translateY(-2px); }
.menu-toggle { display: none; background: none; border: 0; font-size: 25px; }

.hero {
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(31,23,24,.78), rgba(31,23,24,.32), rgba(31,23,24,.08)),
    url("images/IMG_5266.jpeg") center/cover;
  color: #fff;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(30,20,21,.32), transparent 55%); }
.hero-content { position: relative; padding: 90px 0; }
.eyebrow {
  color: var(--rose);
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 800;
  margin: 0 0 13px;
}
.hero .eyebrow { color: #f3d7d4; }
h1, h2, h3 { font-family: "Playfair Display", serif; line-height: 1.12; margin-top: 0; }
h1 { font-size: clamp(52px, 7vw, 86px); letter-spacing: -.045em; margin-bottom: 24px; }
h1 em { color: #f1c9c7; font-weight: 500; }
.hero-text { max-width: 580px; font-size: 17px; color: #f5eeee; }
.hero-buttons { display: flex; gap: 12px; margin: 32px 0 28px; }
.button-light { background: rgba(255,255,255,.13); color: #fff; border: 1px solid rgba(255,255,255,.4); }
.hero-location { font-size: 13px; color: #f4e8e6; }

.section { padding: 105px 0; }
.intro { background: #fff; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
h2 { font-size: clamp(40px, 5vw, 58px); letter-spacing: -.035em; margin-bottom: 22px; }
.intro-copy { color: var(--muted); font-size: 16px; }
.intro-copy p { margin-top: 0; margin-bottom: 18px; }

.services-section { background: #f7efed; }
.section-heading { text-align: center; max-width: 680px; margin: 0 auto 55px; }
.section-heading > p:last-child { color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  background: #fff;
  padding: 35px 30px;
  min-height: 220px;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-icon { color: var(--rose); font-size: 25px; margin-bottom: 20px; }
.service-card h3 { font-size: 25px; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 14px; margin: 0; }

.gallery-section { background: #fff; }
.gallery-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  text-align: left;
}
.gallery-heading h2 { margin-bottom: 0; }
.gallery-heading > p { max-width: 350px; font-size: 13px; color: var(--muted); }
.gallery-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-auto-rows: 250px; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; background: #eee; }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute; left: 16px; bottom: 16px;
  color: #fff; background: rgba(30,20,21,.66);
  padding: 7px 12px; border-radius: 999px; font-size: 11px; font-weight: 700;
}

.about-section { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.about-photo { position: relative; }
.about-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow); }
.photo-badge {
  position: absolute; right: -20px; bottom: 35px;
  width: 100px; height: 100px; border-radius: 50%;
  display: grid; place-items: center; align-content: center;
  background: var(--deep-rose); color: #fff;
  font-family: "Playfair Display", serif; font-size: 32px;
  line-height: .8; box-shadow: 0 15px 30px rgba(80,40,45,.2);
}
.photo-badge small { font-family: "DM Sans", sans-serif; font-size: 7px; letter-spacing: .2em; }
.about-content > p:not(.eyebrow) { color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 28px 0; }
.check-list li { padding: 8px 0; font-size: 14px; }
.check-list li::before { content: "✓"; color: var(--rose); font-weight: 800; margin-right: 12px; }
.text-link { color: var(--deep-rose); font-weight: 800; font-size: 14px; }

.quote-section {
  padding: 110px 0;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(rgba(86,44,48,.86), rgba(86,44,48,.86)),
    url("https://images.unsplash.com/photo-1604654894610-df63bc536371?auto=format&fit=crop&w=1800&q=80") center/cover;
}
.quote-content { max-width: 800px; }
.quote-section h2 { font-size: clamp(42px, 5vw, 64px); }
.quote-section .eyebrow { color: #f2cfcc; }

.contact-section { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: start; }
.contact-intro { color: var(--muted); max-width: 520px; }
.contact-details { margin-top: 35px; display: grid; gap: 16px; }
.contact-details a { display: flex; gap: 18px; align-items: center; padding: 17px 0; border-bottom: 1px solid var(--line); }
.contact-details span { color: var(--rose); font-size: 22px; width: 25px; text-align: center; }
.contact-details a div { font-size: 14px; }
.contact-details strong { font-size: 11px; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); }

.hours-card { background: #f8efed; padding: 35px; border: 1px solid var(--line); }
.hours-card h3 { font-size: 28px; }
.hours-row { display: flex; justify-content: space-between; gap: 15px; padding: 10px 0; border-bottom: 1px solid rgba(141,79,87,.12); font-size: 13px; }
.hours-row b { font-weight: 700; }
.hours-note { font-size: 11px; color: var(--muted); margin: 18px 0 0; }

footer { background: var(--ink); color: #eee; padding: 28px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 12px; }
footer .logo { color: #fff; }
footer .logo span { color: #e4a7a5; }
footer a:last-child { color: #e4a7a5; font-weight: 700; }

@media (max-width: 800px) {
  .topbar-inner { flex-wrap: wrap; gap: 8px 18px; padding: 8px 0; }
  .topbar-inner span:nth-child(2), .topbar-inner span:nth-child(3) { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  nav {
    position: absolute; left: 20px; right: 20px; top: 70px;
    background: #fff; padding: 20px; display: none; flex-direction: column; gap: 15px;
    box-shadow: var(--shadow);
  }
  nav.open { display: flex; }
  .hero { min-height: 620px; }
  .hero-content { padding: 70px 0; }
  .intro-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .gallery-heading { display: block; }
  .gallery-heading > p { margin-top: 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; }
  .gallery-item:first-child { grid-row: span 1; }
  .gallery-item:last-child { grid-column: span 2; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .service-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:last-child { grid-column: auto; }
  .footer-inner { flex-direction: column; }
  .hours-row { font-size: 12px; }
}
