/* ===================== DESIGN TOKENS ===================== */
:root {
  --maroon: #6B1E1E;
  --maroon-dark: #4A1414;
  --orange: #E4894C;
  --orange-light: #F0A868;
  --near-black: #2B2B2B;

  --ink: #262223;
  --muted: #6a6260;
  --bg: #ffffff;
  --bg-alt: #faf6f2;
  --line: #ece4dd;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(43, 43, 43, .08);
  --shadow-md: 0 10px 30px rgba(43, 43, 43, .12);
  --shadow-lg: 0 18px 50px rgba(74, 20, 20, .18);

  --maxw: 1140px;
  --header-h: 72px;

  --font-head: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ===================== RESET / BASE ===================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--maroon); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--maroon); margin: 0 0 .5em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--maroon); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 50px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: .92rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--orange); color: #3a1a08; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--orange-light); box-shadow: var(--shadow-md); }

.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: #fff; color: var(--maroon); border-color: #fff; }

.btn-whatsapp { background: #25D366; color: #04310f; box-shadow: var(--shadow-sm); }
.btn-whatsapp:hover { background: #22c25e; box-shadow: var(--shadow-md); }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(43, 43, 43, .97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }

.brand { display: flex; align-items: center; gap: 12px; }
.brand:hover { text-decoration: none; }
.brand-logo { border-radius: 8px; box-shadow: var(--shadow-sm); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: #fff; letter-spacing: .5px; }
.brand-sub { font-size: .72rem; color: var(--orange-light); font-weight: 500; }

.main-nav { display: flex; align-items: center; }
.nav-list { list-style: none; display: flex; align-items: center; gap: 6px; margin: 0; padding: 0; }
.nav-list > li > a {
  color: #f4ece7; font-family: var(--font-head); font-weight: 500; font-size: .98rem;
  padding: 8px 14px; border-radius: 8px; transition: background .15s ease, color .15s ease;
}
.nav-list > li > a:hover { background: rgba(255,255,255,.1); color: #fff; text-decoration: none; }
.nav-cta a { color: #3a1a08 !important; }
.nav-cta a:hover { background: var(--orange-light) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  background: transparent; border: 0; cursor: pointer; padding: 10px; border-radius: 8px;
}
.nav-toggle span { display: block; height: 2.5px; background: #fff; border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex; align-items: center;
  background: url("assets/img/hero.jpg") center 30% / cover no-repeat;
  color: #fff;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(74,20,20,.92) 0%, rgba(43,43,43,.78) 55%, rgba(43,43,43,.45) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 720px; padding-top: 40px; padding-bottom: 40px; }
.hero-eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: 1px; text-transform: uppercase; color: var(--orange-light);
  background: rgba(0,0,0,.25); padding: 6px 14px; border-radius: 50px; margin: 0 0 18px;
}
.hero-title { color: #fff; font-size: clamp(2rem, 5.5vw, 3.4rem); font-weight: 800; margin-bottom: .35em; }
.hero-subtitle { font-size: clamp(1rem, 2.2vw, 1.2rem); color: #f3e8e2; max-width: 620px; margin: 0 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ===================== SECTIONS ===================== */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-alt { background: var(--bg-alt); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto clamp(36px, 5vw, 56px); }
.section-eyebrow {
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; font-size: .8rem; color: var(--orange); margin: 0 0 8px;
}
.section-title { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 700; }
.section-title::after {
  content: ""; display: block; width: 60px; height: 4px; border-radius: 4px;
  background: var(--orange); margin: 14px auto 0;
}
.section-head .section-title::after { margin-left: auto; margin-right: auto; }
.section-lead { color: var(--muted); font-size: 1.05rem; margin: 14px 0 0; }

/* ===================== SERVICE CARDS ===================== */
.cards-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 26px;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange-light); }
.card-icon {
  width: 60px; height: 60px; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; border-radius: 14px; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--orange-light), var(--orange)); box-shadow: var(--shadow-sm);
}
.card-title { font-size: 1.2rem; }
.card p { color: var(--muted); margin: 0; }

.card-featured { border-color: var(--orange); box-shadow: var(--shadow-md); }
.card-featured::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  border: 2px solid var(--orange); pointer-events: none;
}
.card-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--maroon); color: #fff; font-family: var(--font-head); font-weight: 600;
  font-size: .72rem; letter-spacing: .5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
}

/* ===================== ABOUT ===================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.about-media img {
  width: 100%; height: 100%; max-height: 480px; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.about-text .section-title::after { margin-left: 0; }
.about-text p { color: #4a4241; margin: 0 0 16px; }
.feature-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; }
.feature-list li { color: var(--ink); font-weight: 500; }

/* ===================== GALLERY ===================== */
.gallery-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.gallery-item { margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.gallery-item img {
  width: 100%; height: 240px; object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

/* ===================== CONTACT ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }

.contact-list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-ico {
  flex: 0 0 auto; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-sm);
}
.contact-label { display: block; font-family: var(--font-head); font-weight: 600; color: var(--maroon); font-size: .95rem; }
.contact-label em { font-style: normal; color: var(--muted); font-weight: 400; font-size: .82rem; }
.contact-list a { font-weight: 600; }

.map-wrap {
  margin-top: 24px; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-fallback { margin: 12px 0 0; font-size: .92rem; }

/* ===================== FORM ===================== */
.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px); box-shadow: var(--shadow-md);
}
.form-title { font-size: 1.4rem; margin-bottom: 20px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block; font-family: var(--font-head); font-weight: 500; font-size: .92rem;
  color: var(--ink); margin-bottom: 6px;
}
.form-field input, .form-field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg-alt); transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--orange); background: #fff;
  box-shadow: 0 0 0 3px rgba(228,137,76,.2);
}
.form-field textarea { resize: vertical; }
.form-note { text-align: center; color: var(--muted); font-size: .9rem; margin: 14px 0 0; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--near-black); color: #d7cfca; }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px;
  padding: clamp(44px, 6vw, 64px) 20px;
}
.footer-logo { border-radius: 12px; box-shadow: var(--shadow-md); margin-bottom: 14px; }
.footer-desc { color: #b9afaa; max-width: 320px; margin: 0; }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 12px; }
.footer-col p { margin: 0 0 8px; color: #c9c0bb; }
.site-footer a { color: var(--orange-light); }
.site-footer a:hover { color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { text-align: center; font-size: .88rem; color: #a79d98; padding: 18px 0 0; margin: 0; }
.footer-bottom p.footer-credit { font-size: .82rem; padding: 6px 0 18px; color: #8f8580; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--near-black); padding: 14px 20px 22px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .2s ease, opacity .2s ease;
  }
  .nav-list.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-list > li > a { display: block; padding: 12px 14px; }
  .nav-cta { margin-top: 6px; }
  .nav-cta a { display: flex; }
}

@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-actions .btn { flex: 1 1 auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
