/* Golden Age Landscape — site styles */
:root {
  --gold: #c9a34e;
  --gold-dark: #a8843a;
  --green: #1f3d2b;
  --green-dark: #152b1e;
  --ink: #22272b;
  --gray: #5f6b66;
  --bg: #ffffff;
  --bg-soft: #f6f5f1;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(20, 30, 25, 0.10);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--ink); background: var(--bg); line-height: 1.65; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; color: var(--green); line-height: 1.2; }
img { max-width: 100%; display: block; }
a { color: var(--gold-dark); text-decoration: none; }
.container { width: min(1160px, 92%); margin: 0 auto; }

/* Utility bar */
.utility { background: var(--green-dark); color: #e9e6dd; font-size: 0.82rem; }
.utility .container { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; gap: 12px; flex-wrap: wrap; }
.utility a { color: var(--gold); font-weight: 600; }
.utility .lic { letter-spacing: 0.04em; }

/* Header / nav */
header { background: #fff; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 62px; width: auto; }
.brand .brand-name { font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; color: var(--green); font-weight: 700; line-height: 1.15; }
.brand .brand-name span { display: block; font-family: 'Inter', sans-serif; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; }
nav ul { display: flex; gap: 26px; list-style: none; align-items: center; }
nav a { color: var(--ink); font-weight: 600; font-size: 0.95rem; padding: 6px 2px; border-bottom: 2px solid transparent; }
nav a:hover, nav a.active { color: var(--green); border-bottom-color: var(--gold); }
.nav-cta { background: var(--gold); color: #fff !important; padding: 10px 20px !important; border-radius: 6px; border-bottom: none !important; }
.nav-cta:hover { background: var(--gold-dark); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--green); margin: 5px 0; border-radius: 2px; }

/* Hero */
.hero { position: relative; min-height: 78vh; display: flex; align-items: center; color: #fff; background-size: cover; background-position: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(15,30,21,0.82) 20%, rgba(15,30,21,0.35) 65%, rgba(15,30,21,0.15)); }
.hero .container { position: relative; padding: 90px 0; }
.hero .kicker, .kicker { color: var(--gold); text-transform: uppercase; letter-spacing: 0.25em; font-weight: 700; font-size: 0.8rem; margin-bottom: 14px; }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.6rem); max-width: 17ch; margin-bottom: 18px; }
.hero p { max-width: 52ch; font-size: 1.08rem; color: #e8e6df; margin-bottom: 30px; }
.btn { display: inline-block; padding: 15px 32px; border-radius: 6px; font-weight: 700; font-size: 1rem; transition: all .2s; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline { border: 2px solid #fff; color: #fff; margin-left: 12px; }
.btn-outline:hover { background: #fff; color: var(--green); }
.hero .badges { margin-top: 38px; display: flex; gap: 26px; flex-wrap: wrap; font-size: 0.85rem; color: #d9d5c9; }
.hero .badges div { display: flex; align-items: center; gap: 8px; }
.hero .badges svg { flex: none; }

/* Sections */
section { padding: 84px 0; }
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin: 8px 0 16px; }
.section-head p { color: var(--gray); }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* About split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split .checks { list-style: none; margin: 22px 0 28px; }
.split .checks li { padding-left: 30px; position: relative; margin-bottom: 10px; color: var(--ink); font-weight: 500; }
.split .checks li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 800; }

/* Services grid */
.soft { background: var(--bg-soft); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .2s; }
.card:hover { transform: translateY(-5px); }
.card img { height: 210px; object-fit: cover; width: 100%; }
.card .body { padding: 24px 26px 28px; }
.card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.card p { color: var(--gray); font-size: 0.94rem; }

/* Markets strip */
.markets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.market { background: var(--green); color: #e9e6dd; border-radius: var(--radius); padding: 36px 30px; }
.market h3 { color: var(--gold); margin-bottom: 10px; font-size: 1.3rem; }
.market p { font-size: 0.94rem; margin-bottom: 16px; }
.market a { color: #fff; font-weight: 700; font-size: 0.9rem; }
.market a:hover { color: var(--gold); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery figure { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; box-shadow: var(--shadow); }
.gallery img { height: 265px; width: 100%; object-fit: cover; transition: transform .3s; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption { position: absolute; inset: auto 0 0 0; background: linear-gradient(transparent, rgba(15,30,21,0.85)); color: #fff; padding: 34px 16px 12px; font-size: 0.85rem; font-weight: 600; }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.filter-bar button { border: 1.5px solid var(--green); background: #fff; color: var(--green); padding: 8px 18px; border-radius: 30px; font-weight: 600; font-size: 0.86rem; cursor: pointer; }
.filter-bar button.on, .filter-bar button:hover { background: var(--green); color: #fff; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(10,15,12,0.93); display: none; align-items: center; justify-content: center; z-index: 300; padding: 4vh 4vw; }
.lightbox.open { display: flex; }
.lightbox img { max-height: 88vh; max-width: 92vw; border-radius: 6px; }
.lightbox button { position: absolute; top: 18px; right: 24px; background: none; border: none; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; }

/* CTA banner */
.cta-banner { background: linear-gradient(rgba(15,30,21,0.88), rgba(15,30,21,0.88)), var(--cta-img, none) center/cover; color: #fff; text-align: center; }
.cta-banner h2 { color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.4rem); max-width: 26ch; margin: 0 auto 16px; }
.cta-banner p { max-width: 60ch; margin: 0 auto 30px; color: #ddd9cd; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; }
.contact-grid .info div { margin-bottom: 20px; }
.contact-grid .info h4 { font-size: 1rem; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.contact-grid .info a { color: var(--ink); font-weight: 600; }
form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
form input, form select, form textarea { width: 100%; padding: 13px 15px; border: 1.5px solid #d8d5cc; border-radius: 6px; font: inherit; margin-bottom: 14px; background: #fff; }
form input:focus, form select:focus, form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
form button { width: 100%; border: none; cursor: pointer; }

/* Footer */
footer { background: var(--green-dark); color: #cfcabc; font-size: 0.92rem; }
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding: 64px 0 44px; }
.foot img { height: 74px; margin-bottom: 14px; }
.foot h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; }
.foot ul { list-style: none; }
.foot li { margin-bottom: 9px; }
.foot a { color: #cfcabc; }
.foot a:hover { color: var(--gold); }
.copyright { border-top: 1px solid rgba(255,255,255,0.12); padding: 18px 0; text-align: center; font-size: 0.8rem; color: #9aa196; }

/* Floating call button (mobile) */
.call-fab { display: none; position: fixed; right: 18px; bottom: 18px; z-index: 200; background: var(--gold); color: #fff; font-weight: 800; padding: 15px 24px; border-radius: 40px; box-shadow: 0 8px 22px rgba(0,0,0,0.3); }

/* Page hero (interior pages) */
.page-hero { position: relative; padding: 110px 0 90px; color: #fff; background-size: cover; background-position: center; text-align: center; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: rgba(15,30,21,0.72); }
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); }
.page-hero p { color: #e0ddd2; max-width: 62ch; margin: 14px auto 0; }

/* Responsive */
@media (max-width: 900px) {
  .grid, .markets, .gallery { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .foot { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  nav ul { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 18px 6%; gap: 16px; box-shadow: 0 12px 20px rgba(0,0,0,0.12); }
  nav ul.open { display: flex; }
  .hamburger { display: block; }
  .grid, .markets, .gallery { grid-template-columns: 1fr; }
  .btn-outline { margin-left: 0; margin-top: 12px; }
  .call-fab { display: block; }
  .utility .hide-m { display: none; }
  section { padding: 60px 0; }
}
