:root {
    --accent: #D4AF37; /* Champagne Gold */
    --accent-light: #F7E7CE; /* Soft Gold */
    --accent-dark: #B8860B; /* Darker Gold */
    --rose-gold: #E5B4A2;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --platinum: #E5E4E2;
    --charcoal: #333333;
    --ink: #1A1A1A;
    --muted: #777777;
    --bg-light: #FDFBF9;
    --surface: #FFFFFF;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.text-center { text-align: center; }
.accent-text { color: var(--accent); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
}

.btn-sm { padding: 8px 20px; font-size: 0.9rem; }

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--platinum);
}

.nav {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--ink);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-list a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-list a:hover {
    color: var(--accent);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('assets/hero-banner.webp') center/cover no-repeat;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 700;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 30px;
    color: var(--muted);
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-item .icon {
    font-size: 1.5rem;
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.85rem;
    margin: 0;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--surface);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.card-img {
    height: 200px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.card-body p {
    font-size: 0.9rem;
    color: var(--muted);
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--surface);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-info {
    padding: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-list {
    list-style: none;
    margin-top: 30px;
}

.contact-list li {
    margin-bottom: 25px;
}

.contact-list strong {
    display: block;
    color: var(--accent);
    margin-bottom: 5px;
}

.contact-list a {
    text-decoration: none;
    color: var(--ink);
    font-size: 1.1rem;
}

.contact-map-placeholder {
    position: relative;
    min-height: 400px;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.9);
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 50px 0;
    background: var(--ink);
    color: var(--white);
}

.footer .logo {
    margin-bottom: 15px;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-delay {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.2s;
}

.reveal-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.4s;
}

.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-list {
        display: none;
    }
    .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .about-text, .contact-info {
        padding: 40px 24px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .section {
        padding: 60px 0;
    }
}

/* BuilderJH generated subpage support */
.subpage { background: var(--page-bg, #f7f8fb); color: var(--ink, #111827); min-height: 100vh; }
.subpage .container, .site-header .container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.site-header { background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(15,23,42,.08); position: sticky; top: 0; z-index: 20; backdrop-filter: blur(14px); }
.nav-container { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand, .logo { color: inherit; text-decoration: none; font-weight: 900; letter-spacing: 0; }
.main-nav, .nav-menu { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.main-nav a, .nav-menu a { color: inherit; text-decoration: none; font-weight: 700; opacity: .78; }
.main-nav a[aria-current="page"], .nav-menu a[aria-current="page"] { opacity: 1; color: var(--accent, #0f9f8f); }
.mobile-toggle { display: none; }
.page-hero { padding: clamp(56px, 8vw, 110px) 0; background: linear-gradient(135deg, rgba(15,23,42,.92), rgba(30,64,80,.74)); color: #fff; }
.page-hero h1 { max-width: 850px; margin: 14px 0; font-size: clamp(44px, 8vw, 92px); line-height: .98; letter-spacing: 0; }
.page-hero p { max-width: 760px; font-size: clamp(18px, 2.1vw, 24px); line-height: 1.55; color: rgba(255,255,255,.86); }
.section { padding: clamp(48px, 7vw, 88px) 0; }
.section-title { margin: 0 0 20px; font-size: clamp(30px, 4.4vw, 56px); line-height: 1.06; letter-spacing: 0; }
.content-grid, .product-grid, .field-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: 18px; align-items: stretch; }
.info-card, .media-card, .product-card, .form-card, .faq-list article, .faq-list li { min-width: 0; border: 1px solid rgba(15,23,42,.1); border-radius: 8px; padding: clamp(20px, 3vw, 30px); background: #fff; box-shadow: 0 20px 60px -44px rgba(15,23,42,.42); overflow: hidden; }
.info-card h2, .info-card h3, .media-card h2, .media-card h3, .product-card h2, .product-card h3, .form-card h2, .form-card h3 { margin: 0 0 12px; font-size: clamp(24px, 3.2vw, 42px); line-height: 1.08; letter-spacing: 0; overflow-wrap: anywhere; }
.info-card p, .media-card p, .product-card p, .form-card p, .faq-list p, .faq-list li { color: var(--muted, #526174); line-height: 1.65; }
img { max-width: 100%; height: auto; }
.media-card img, .product-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; display: block; margin-bottom: 16px; }
.price { display: inline-flex; margin: 10px 0 16px; font-weight: 900; color: var(--accent, #0f9f8f); }
.badge { display: inline-flex; align-items: center; width: fit-content; border-radius: 999px; padding: 8px 12px; background: rgba(16,185,129,.14); color: #047857; font-weight: 800; }
.btn, .btn-primary, .btn-secondary, button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; border: 0; border-radius: 8px; padding: 12px 18px; font-weight: 800; text-decoration: none; cursor: pointer; }
.btn-primary, .btn { background: var(--accent, #0f9f8f); color: #fff; }
.btn-secondary { background: #111827; color: #fff; }
.form-card form, form.form-card { display: grid; gap: 14px; }
label { display: grid; gap: 7px; font-weight: 800; color: inherit; }
input, select, textarea { width: 100%; min-height: 44px; border: 1px solid rgba(15,23,42,.16); border-radius: 8px; padding: 11px 13px; font: inherit; color: #111827; background: #fff; }
textarea { min-height: 118px; resize: vertical; }
footer, .footer { padding: 36px 0; border-top: 1px solid rgba(15,23,42,.08); background: #fff; color: var(--muted, #526174); }
.animate-in { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; transition-delay: var(--delay, 0ms); }
.animate-in.is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 760px) {
  .subpage .container, .site-header .container { width: min(100% - 28px, 1160px); }
  .nav-container { min-height: auto; padding: 14px 0; align-items: flex-start; flex-direction: column; }
  .main-nav, .nav-menu { gap: 10px; }
  .page-hero { padding: 48px 0 64px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .animate-in { opacity: 1; transform: none; }
}

/* BuilderJH prompt color dominance */
:root {
  --accent: #b76e79;
  --accent-2: #d4af37;
  --accent-dark: #2b2526;
  --accent-soft: #fff8f2;
  --page-bg: #fff8f2;
}
body {
  background: linear-gradient(180deg, #fff8f2 0%, #ffffff 52%, #fff8f2 100%);
}
.site-header,
.navbar,
header:not(.gjs-selected) {
  border-bottom-color: color-mix(in srgb, #b76e79 22%, transparent);
}
.hero,
.site-hero,
.hero-section,
main > section:first-of-type,
.page-hero {
  background:
    radial-gradient(circle at 80% 20%, color-mix(in srgb, #d4af37 28%, transparent), transparent 34%),
    linear-gradient(135deg, #2b2526 0%, #b76e79 58%, #d4af37 100%) !important;
  color: #ffffff !important;
}
.hero *,
.site-hero *,
.hero-section *,
.page-hero * {
  color: inherit;
}
.btn,
.btn-primary,
button[type="submit"],
a[class*="btn"],
.cta,
.badge,
.pill,
.price {
  background-color: #b76e79;
  border-color: #b76e79;
  color: #ffffff;
}
.btn-secondary {
  background-color: #2b2526;
  border-color: #2b2526;
  color: #ffffff;
}
a,
.nav-menu a[aria-current="page"],
.main-nav a[aria-current="page"],
.logo span,
.brand span,
h1 strong,
h2 strong {
  color: #b76e79;
}
.section-highlight,
.highlight,
.feature-card:nth-child(odd),
.service-card:nth-child(odd),
.product-card:nth-child(odd),
.card:nth-child(odd) {
  background: linear-gradient(145deg, #ffffff 0%, #fff8f2 100%);
  border-color: color-mix(in srgb, #b76e79 22%, transparent);
}