:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --white: #ffffff;
  --off-white: #f9f7f3;
  --text: #333333;
  --text-light: #666666;
  --green: #2e7d32;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Lato', sans-serif; color: var(--text); background: var(--white); }

/* TOP BAR */
.top-bar { background: var(--dark); color: var(--gold-light); text-align: center; padding: 8px 16px; font-size: 14px; font-weight: 700; letter-spacing: 0.5px; }
.top-bar span { color: var(--gold); margin: 0 6px; }

/* HEADER */
header { background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--dark); line-height: 1.2; text-decoration: none; display: block; }
.logo-text small { display: block; font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 400; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 30px; height: 30px; border-radius: 50%; background: var(--dark); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 13px; text-decoration: none; transition: background 0.2s; }
.social-links a:hover { background: var(--gold); }
.header-contact { font-size: 14px; color: var(--text-light); }
.header-contact a { color: var(--dark); text-decoration: none; font-weight: 700; }

/* NAV */
nav { background: var(--dark2); border-top: 3px solid var(--gold); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; flex-wrap: wrap; position: relative; }
nav a { color: var(--white); text-decoration: none; padding: 14px 15px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; display: block; transition: color 0.2s, background 0.2s; white-space: nowrap; }
nav a:hover, nav a.active { color: var(--gold); background: rgba(255,255,255,0.05); }
.nav-item { position: relative; }
.nav-item:hover .dropdown { display: block; }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: var(--dark); min-width: 250px; border-top: 2px solid var(--gold); box-shadow: 0 8px 24px rgba(0,0,0,0.3); z-index: 999; }
.dropdown a { padding: 10px 18px; font-size: 12px; border-bottom: 1px solid rgba(255,255,255,0.07); text-transform: none; letter-spacing: 0; font-weight: 400; }
.dropdown a:last-child { border-bottom: none; }
.sub-dropdown { display: none; position: absolute; left: 100%; top: 0; background: var(--dark); min-width: 220px; border-top: 2px solid var(--gold); box-shadow: 8px 8px 24px rgba(0,0,0,0.3); }
.has-sub:hover .sub-dropdown { display: block; }
.has-sub > a::after { content: ' ›'; }
.menu-toggle { display: none; background: none; border: none; color: var(--white); font-size: 26px; cursor: pointer; padding: 14px 16px; }

/* HERO */
.hero { background: linear-gradient(135deg, var(--dark2) 0%, #0f3460 60%, #1a1a2e 100%); color: var(--white); padding: 80px 24px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; opacity: 0.18; background-size: cover; background-position: center; }
.hero-content { position: relative; max-width: 860px; margin: 0 auto; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 5vw, 46px); font-weight: 700; line-height: 1.25; margin-bottom: 16px; }
.hero p { font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.88); margin-bottom: 32px; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-badge { display: inline-block; background: var(--gold); color: var(--dark); font-weight: 700; font-size: 13px; padding: 6px 18px; border-radius: 100px; margin-bottom: 20px; letter-spacing: 1px; text-transform: uppercase; }

/* BUTTONS */
.btn { display: inline-block; padding: 14px 34px; background: var(--gold); color: var(--dark); font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: background 0.2s, transform 0.15s; }
.btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--dark); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark2); }

/* SECTIONS */
section { padding: 70px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(24px, 4vw, 36px); font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.section-title span { color: var(--gold); }
.section-subtitle { font-size: 16px; color: var(--text-light); margin-bottom: 40px; max-width: 700px; line-height: 1.7; }
.divider { width: 60px; height: 3px; background: var(--gold); margin: 16px 0 36px; }

/* CARDS GRID */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.card { background: var(--white); border-radius: 4px; padding: 32px 28px; border-bottom: 4px solid var(--gold); box-shadow: 0 2px 16px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.card-icon { font-size: 36px; margin-bottom: 16px; }
.card h3 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 10px; color: var(--dark); }
.card p { font-size: 14px; line-height: 1.7; color: var(--text-light); margin-bottom: 16px; }
.card .price { font-size: 22px; font-weight: 700; color: var(--gold); margin-bottom: 16px; }

/* PRODUCT GRID */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 32px; }
.product-card { background: var(--white); border-radius: 6px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.08); transition: transform 0.2s, box-shadow 0.2s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.14); }
.product-card img { width: 100%; height: 240px; object-fit: cover; }
.product-card .product-body { padding: 24px; }
.product-card h3 { font-family: 'Playfair Display', serif; font-size: 19px; margin-bottom: 8px; color: var(--dark); }
.product-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 14px; }
.product-card .price { font-size: 20px; font-weight: 700; color: var(--gold); margin-bottom: 16px; }
.badge { display: inline-block; background: var(--green); color: var(--white); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-gold { background: var(--gold); color: var(--dark); }

/* PAGE HERO (smaller) */
.page-hero { background: linear-gradient(135deg, var(--dark2) 0%, #0f3460 100%); color: var(--white); padding: 60px 24px; text-align: center; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 5vw, 44px); font-weight: 700; margin-bottom: 12px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto; line-height: 1.7; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold); text-decoration: none; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; }
.gallery-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: 3px; transition: transform 0.3s; cursor: pointer; }
.gallery-grid img:hover { transform: scale(1.03); }

/* AREAS */
.coverage { background: var(--dark2); color: var(--white); }
.coverage .section-title { color: var(--white); }
.coverage .section-subtitle { color: rgba(255,255,255,0.7); }
.areas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.area-tag { background: rgba(201,168,76,0.15); border: 1px solid var(--gold); color: var(--gold-light); padding: 8px 20px; border-radius: 100px; font-size: 14px; font-weight: 700; }

/* CTA BANNER */
.cta-banner { background: linear-gradient(90deg, var(--dark) 0%, #0f3460 100%); color: var(--white); text-align: center; padding: 60px 24px; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(22px, 4vw, 36px); margin-bottom: 12px; color: var(--gold-light); }
.cta-banner p { font-size: 17px; margin-bottom: 28px; color: rgba(255,255,255,0.85); }

/* INFO / CONTACT */
.info-section { background: var(--off-white); }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; align-items: start; }
.info-box h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--dark); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.07); font-size: 15px; }
.hours-row .day { font-weight: 700; color: var(--dark); }
.hours-row .time { color: var(--text-light); }
.contact-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.07); font-size: 15px; }
.contact-item .icon { font-size: 20px; width: 28px; text-align: center; }
.contact-item a { color: var(--text); text-decoration: none; }
.contact-item a:hover { color: var(--gold); }
.map-wrapper iframe { width: 100%; height: 280px; border: 0; border-radius: 4px; margin-top: 8px; }

/* FEATURES LIST */
.features { list-style: none; }
.features li { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.07); font-size: 15px; display: flex; align-items: flex-start; gap: 10px; }
.features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* FOOTER */
footer { background: var(--dark); color: rgba(255,255,255,0.6); text-align: center; padding: 28px 24px; font-size: 14px; }
footer a { color: var(--gold); text-decoration: none; }
.footer-logo { font-family: 'Playfair Display', serif; color: var(--white); font-size: 20px; margin-bottom: 8px; }

/* OFF-WHITE BG */
.bg-off { background: var(--off-white); }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col img { width: 100%; border-radius: 6px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .menu-toggle { display: block; }
  .nav-links { display: none; flex-direction: column; width: 100%; }
  .nav-links.open { display: flex; }
  .nav-item { width: 100%; }
  .dropdown, .sub-dropdown { position: static; box-shadow: none; border-top: none; background: rgba(255,255,255,0.05); min-width: unset; }
  .dropdown a { padding-left: 32px; }
  .sub-dropdown a { padding-left: 48px; }
  .btn-outline { margin-left: 0; margin-top: 12px; display: inline-block; }
}
