:root {
  --primary: #b8332d;
  --primary-dark: #84231f;
  --accent: #0f6ba8;
  --gold: #cfaa57;
  --text: #1f1f1f;
  --muted: #666;
  --bg: #ffffff;
  --soft: #f7f5f2;
  --line: #e9e2dc;
  --shadow: 0 18px 45px rgba(32, 21, 17, 0.08);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav {
  min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand-logo {
  width: 64px; height: 64px; object-fit: contain; border-radius: 16px; background: #fff; box-shadow: var(--shadow); padding: 6px;
}
.brand-title, .brand-subtitle { display: block; }
.brand-title { font-weight: 800; font-size: 1.05rem; }
.brand-subtitle { color: var(--primary); font-size: .92rem; }
.menu { display: flex; align-items: center; gap: 20px; }
.menu a { font-weight: 600; color: #333; }
.menu-toggle {
  display: none; border: 0; background: var(--soft); width: 46px; height: 46px; border-radius: 12px; font-size: 1.25rem;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: 999px; font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff;
  box-shadow: 0 14px 30px rgba(184, 51, 45, .22);
}
.btn:hover { transform: translateY(-1px); }
.btn-outline {
  background: #fff; color: var(--primary); border: 1px solid rgba(184,51,45,.2); box-shadow: none;
}
.btn-dark { background: linear-gradient(135deg, #171717, #343434); box-shadow: 0 14px 30px rgba(0,0,0,.15); }
.btn-sm { padding: 10px 16px; }
.hero {
  padding: 48px 0 34px;
  background:
    radial-gradient(circle at top right, rgba(184,51,45,.10), transparent 28%),
    radial-gradient(circle at left center, rgba(15,107,168,.08), transparent 25%),
    #fff;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 34px; align-items: center;
}
.eyebrow, .section-tag {
  display: inline-block; padding: 8px 14px; border-radius: 999px; background: rgba(184,51,45,.08); color: var(--primary); font-weight: 800; font-size: .83rem; letter-spacing: .04em; text-transform: uppercase;
}
.hero h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.1; margin: 0; }
.hero h1 { font-size: clamp(2.6rem, 5vw, 5rem); margin-top: 14px; }
.hero-subtitle { font-size: 1.1rem; color: #444; max-width: 60ch; }
.hero-highlights { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.hero-highlights span, .strip-points span {
  border: 1px solid var(--line); background: #fff; padding: 10px 14px; border-radius: 999px; font-weight: 700; color: #333;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); min-height: 520px;
}
.card-glow { position: relative; }
.card-glow::before {
  content: ''; position: absolute; inset: 14px -10px -14px 10px; background: linear-gradient(135deg, rgba(184,51,45,.18), rgba(15,107,168,.12)); filter: blur(30px); z-index: -1;
}
.stats { padding: 0 0 32px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.stats-grid article {
  background: linear-gradient(180deg, #fff, #fbfbfb);
  border: 1px solid var(--line); border-radius: 22px; padding: 24px; box-shadow: var(--shadow);
}
.stats-grid strong { display: block; font-size: 1.35rem; margin-bottom: 6px; }
.stats-grid span { color: var(--muted); }
.section { padding: 86px 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.about { background: var(--soft); }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.check-list li {
  position: relative; padding-left: 30px; font-weight: 600;
}
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0; color: var(--primary); font-weight: 800;
}
.stacked-images { display: grid; gap: 18px; }
.stacked-images img, .gallery-item img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow);
}
.section-head { margin-bottom: 30px; }
.section-head.center { text-align: center; max-width: 820px; margin-left: auto; margin-right: auto; }
.section-head h2, .about h2, .location-box h2, .contact-box h2 { font-size: clamp(2rem, 3.3vw, 3.1rem); margin-top: 14px; }
.grid.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: var(--shadow);
}
.card h3 { font-size: 1.45rem; margin-bottom: 12px; }
.card p { margin: 0; color: #4d4d4d; }
.accent-card { background: linear-gradient(135deg, rgba(184,51,45,.09), rgba(207,170,87,.12)); }
.pricing { background: linear-gradient(180deg, #fff, #fcf9f7); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 26px; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.price-card.featured {
  border-color: rgba(184,51,45,.28); transform: translateY(-10px);
}
.price-top { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.price-top h3 { font-size: 3rem; color: var(--primary); margin: 10px 0 2px; }
.price-badge {
  display: inline-block; padding: 8px 14px; border-radius: 999px; background: rgba(15,107,168,.08); color: var(--accent); font-weight: 800;
}
.price-card ul { margin: 18px 0 0; padding-left: 18px; color: #444; display: grid; gap: 10px; }
.price-note {
  margin-top: auto; padding-top: 16px; font-weight: 800; color: var(--primary);
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; grid-auto-rows: 240px;
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item { overflow: hidden; border-radius: 24px; }
.gallery-item img { transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.highlight-strip { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; }
.strip-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: center; }
.highlight-strip .section-tag { background: rgba(255,255,255,.12); color: #fff; }
.strip-points { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.location-contact { background: #fff; }
.location-box, .contact-box {
  border: 1px solid var(--line); border-radius: 28px; padding: 34px; box-shadow: var(--shadow); background: linear-gradient(180deg, #fff, #fcfbfa);
}
.contact-number {
  display: inline-block; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--primary); margin: 8px 0 20px;
}
.footer {
  padding: 34px 0; background: #151515; color: rgba(255,255,255,.88);
}
.footer-grid { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer h3 { font-size: 1.5rem; margin-bottom: 10px; }
.footer p { margin: 6px 0; }

@media (max-width: 1100px) {
  .grid.cards-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .menu {
    display: none; position: absolute; top: 86px; left: 16px; right: 16px; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 18px; box-shadow: var(--shadow); flex-direction: column; align-items: flex-start;
  }
  .menu.open { display: flex; }
  .hero-grid, .split, .strip-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual img { min-height: 380px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 22px, 1180px); }
  .hero { padding-top: 26px; }
  .hero h1 { font-size: 2.5rem; }
  .stats-grid, .grid.cards-4, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 230px; }
  .gallery-item.large, .gallery-item.wide { grid-column: span 1; grid-row: span 1; }
  .nav { min-height: 78px; }
  .brand-title { font-size: .95rem; }
  .brand-subtitle { font-size: .82rem; }
  .location-box, .contact-box, .card, .price-card { padding: 22px; }
}


/* Extras */
.extras{
  padding: 80px 0;
  background: #ffffff;
}

.extras-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.extra-card{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.extra-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.extra-card h3{
  margin-bottom: 12px;
}

.extra-card p{
  margin-bottom: 18px;
}

.extra-price{
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  background: #f3f3f3;
}
