@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,500;1,600&display=swap');

:root {
  --accent: #c7a56a;
  --accent-dark: #9d7b43;
  --dark: #111;
  --light: #f7f5f1;
  --muted: #6f6b64;
  --border: rgba(17,17,17,.1);
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "DM Sans", sans-serif; color: var(--dark); background: var(--light); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; object-fit: cover; }
button { font: inherit; }

header {
  position: fixed; z-index: 20; top: 0; left: 0; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 5%; color: white; transition: .3s;
}
header.scrolled { background: rgba(17,17,17,.94); backdrop-filter: blur(12px); padding-block: 16px; }
.brand { font-weight: 700; letter-spacing: .22em; font-size: 15px; }
nav { display: flex; gap: 28px; font-size: 13px; }
nav a { opacity: .9; transition: .2s; }
nav a:hover { color: var(--accent); }
.menu-button { display: none; border: 0; background: none; color: white; font-size: 24px; }

.hero {
  min-height: 92vh; position: relative; display: grid; place-items: center;
  background: linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.18)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1800&q=90") center/cover;
  color: white;
}
.hero-content { width: min(900px, 90%); padding-top: 70px; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 700; color: var(--accent); margin-bottom: 15px; }
.hero h1 { max-width: 780px; font: 500 clamp(44px, 7vw, 86px)/1.02 "Playfair Display", serif; }
.hero-description { max-width: 600px; margin: 25px 0 32px; color: rgba(255,255,255,.8); font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; gap: 15px; padding: 14px 22px; border-radius: 2px; font-size: 13px; font-weight: 700; transition: .25s; }
.button-primary { background: var(--accent); color: #111; }
.button-primary:hover { background: white; transform: translateY(-2px); }
.button-ghost { border: 1px solid rgba(255,255,255,.4); color: white; }
.button-ghost:hover { background: white; color: #111; }
.scroll-cue { position: absolute; bottom: 28px; left: 5%; font-size: 24px; }

.section { max-width: var(--max); margin: auto; padding: 115px 5%; }
.section-heading { margin-bottom: 48px; }
h2 { font: 500 clamp(38px, 5vw, 62px)/1.05 "Playfair Display", serif; letter-spacing: -.02em; }
h2 em { color: var(--accent-dark); }

.services-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--border); }
.service-card { padding: 30px 25px 35px; border-right: 1px solid var(--border); position: relative; min-height: 250px; }
.service-card:last-child { border-right: 0; }
.service-number { color: var(--accent-dark); font-size: 12px; }
.service-card h3 { margin: 45px 0 10px; font-size: 20px; }
.service-card p { color: var(--muted); font-size: 14px; }
.service-card strong { display: block; margin-top: 25px; font-size: 17px; }

.about { display: grid; grid-template-columns: 1fr 1fr; gap: 8%; align-items: center; background: white; max-width: none; padding-left: 8%; padding-right: 8%; }
.about-image img { height: 570px; }
.about-content { max-width: 520px; }
.about-content > p:not(.eyebrow) { color: var(--muted); margin-top: 28px; }
.mini-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 40px; padding-top: 25px; border-top: 1px solid var(--border); }
.mini-stats strong { display: block; font-size: 22px; }
.mini-stats span { color: var(--muted); font-size: 11px; }

.gallery-section { max-width: none; padding-left: 8%; padding-right: 8%; }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.gallery-item { position: relative; overflow: hidden; }
.gallery-item img { height: 360px; transition: transform .6s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption { position: absolute; left: 18px; bottom: 15px; color: white; font-weight: 600; text-shadow: 0 1px 12px #000; }

.reviews-section { background: #111; color: white; max-width: none; padding-left: 8%; padding-right: 8%; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.review-card { border: 1px solid rgba(255,255,255,.12); padding: 30px; min-height: 220px; }
.stars { color: var(--accent); letter-spacing: 4px; }
.review-card p { color: rgba(255,255,255,.72); margin: 25px 0; }

.contact { max-width: none; background: white; padding-left: 8%; padding-right: 8%; }
.contact-card { max-width: var(--max); margin: auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; padding: 70px; background: var(--light); }
.contact-card p:not(.eyebrow) { color: var(--muted); margin-top: 10px; }
.text-link { display: inline-block; margin-top: 22px; font-weight: 700; border-bottom: 1px solid var(--accent); }
.hours-list { list-style: none; margin-top: 8px; }
.hours-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }

.final-cta { background: var(--accent); text-align: center; padding: 110px 5%; }
.final-cta .eyebrow { color: #6f5429; }
.final-cta h2 { margin-bottom: 30px; }
.final-cta .button-primary { background: #111; color: white; }
.final-cta .button-primary:hover { background: white; color: #111; }

footer { background: #111; color: white; padding: 50px 5%; display: grid; grid-template-columns: 1fr auto; gap: 30px; }
.footer-brand { letter-spacing: .2em; font-weight: 700; }
footer p { color: rgba(255,255,255,.55); font-size: 12px; max-width: 430px; margin-top: 10px; }
.footer-links { display: flex; gap: 25px; font-size: 13px; }
footer > p { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.1); padding-top: 25px; max-width: none; }

.floating-whatsapp { position: fixed; z-index: 30; right: 22px; bottom: 22px; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: #111; color: white; box-shadow: 0 8px 30px rgba(0,0,0,.22); font-size: 22px; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s, transform .7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 850px) {
  header { padding: 18px 5%; }
  .menu-button { display: block; }
  nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; padding: 20px 5%; background: #111; flex-direction: column; gap: 18px; }
  nav.open { display: flex; }
  .hero { min-height: 88vh; }
  .services-grid, .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .about { grid-template-columns: 1fr; padding-left: 5%; padding-right: 5%; }
  .about-image img { height: 400px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact { padding-left: 5%; padding-right: 5%; }
  .contact-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 40px; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 48px; }
  .hero-description { font-size: 15px; }
  .services-grid, .gallery-grid { grid-template-columns: 1fr; }
  .service-card { border-right: 0; border-bottom: 1px solid var(--border); }
  .gallery-item img { height: 300px; }
  .mini-stats { gap: 8px; }
  .mini-stats strong { font-size: 18px; }
  footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}
