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

:root {
  --bg: #111110;
  --bg2: #1a1a18;
  --panel: #1e1e1c;
  --gold: #c9a86a;
  --gold-dark: #a98b4f;
  --text: #ece9e2;
  --muted: #908a7e;
  --line: rgba(201,168,106,0.2);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  overflow-x: hidden;
}

/* PROMO BANNER */
.promo-bar {
  position: sticky; top: 0; z-index: 300;
  background: #000; color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 0 22px; height: 48px;
  border-bottom: 1px solid var(--line);
}
.promo-back { display: inline-flex; align-items: center; gap: 7px; color: var(--text); text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; opacity: 0.8; transition: opacity 0.2s, transform 0.2s; white-space: nowrap; }
.promo-back:hover { opacity: 1; transform: translateX(-3px); }
.promo-msg { font-size: 13px; letter-spacing: 0.02em; text-align: center; flex: 1; }
.promo-msg strong { color: var(--gold); font-style: italic; }
.promo-cta { background: var(--gold); color: #1a1a18; text-decoration: none; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 9px 18px; border-radius: 2px; white-space: nowrap; transition: background 0.2s, transform 0.2s; }
.promo-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* NAV */
nav { position: absolute; top: 48px; left: 0; right: 0; z-index: 100; display: flex; justify-content: space-between; align-items: center; padding: 28px 60px; }
.logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; align-items: center; }
.logo-top { font-size: 9px; letter-spacing: 5px; color: var(--gold); text-transform: uppercase; margin-bottom: 6px; }
.logo-main { font-family: Georgia, serif; font-size: 22px; font-weight: normal; letter-spacing: 3px; color: #fff; text-transform: uppercase; }
nav ul { list-style: none; display: flex; gap: 36px; align-items: center; }
nav a { color: #fff; text-decoration: none; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; transition: color 0.3s; position: relative; }
nav a:hover { color: var(--gold); }
nav a.active { color: var(--gold); }
nav a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -7px; height: 1px; background: var(--gold); }
.nav-cta { border: 1px solid var(--gold); padding: 10px 22px; border-radius: 2px; color: var(--gold); }
.nav-cta:hover { background: var(--gold); color: var(--bg); }
.nav-cta.active::after { display: none; }

/* HERO (centered) */
.hero { height: calc(100vh - 48px); min-height: 600px; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(rgba(17,17,16,0.55), rgba(17,17,16,0.75)), url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1600&q=80') center/cover; }
.hero-content { position: relative; max-width: 760px; padding: 0 40px; }
.hero-eyebrow { font-size: 11px; letter-spacing: 7px; color: var(--gold); text-transform: uppercase; margin-bottom: 28px; }
.hero h1 { font-family: Georgia, serif; font-size: clamp(46px, 8vw, 96px); line-height: 1; color: #fff; font-weight: normal; margin-bottom: 26px; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-sub { font-weight: 300; font-size: 16px; line-height: 1.9; color: rgba(236,233,226,0.8); max-width: 500px; margin: 0 auto 40px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* PAGE HERO */
.page-hero { height: 52vh; min-height: 340px; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-position: center; background-size: cover; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(17,17,16,0.5), rgba(17,17,16,0.8)); }
.page-hero-content { position: relative; padding: 0 40px; max-width: 720px; }
.page-hero h1 { font-family: Georgia, serif; font-size: clamp(40px, 6vw, 72px); line-height: 1.05; color: #fff; font-weight: normal; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p { font-weight: 300; font-size: 16px; line-height: 1.8; color: rgba(236,233,226,0.8); margin-top: 16px; }

.btn-primary { background: var(--gold); color: #1a1a18; padding: 16px 36px; border-radius: 2px; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 700; text-decoration: none; transition: background 0.3s, transform 0.15s; display: inline-block; }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-ghost { color: #fff; padding: 16px 36px; border-radius: 2px; border: 1px solid rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; text-decoration: none; transition: all 0.3s; display: inline-block; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.section-label { font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }

/* ABOUT */
.about { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 0; }
.about-img { background-position: center; background-size: cover; min-height: 600px; }
.about-text { padding: 90px 70px; }
.about-text h2 { font-family: Georgia, serif; font-size: 42px; line-height: 1.2; font-weight: normal; margin-bottom: 24px; }
.about-text p { color: var(--muted); line-height: 2; font-size: 15px; margin-bottom: 18px; font-weight: 300; }
.signature { font-family: Georgia, serif; font-style: italic; font-size: 28px; color: var(--gold); margin-top: 24px; }

/* PORTFOLIO MASONRY */
.portfolio { padding: 100px 50px; }
.port-head { text-align: center; margin-bottom: 60px; }
.port-head h2 { font-family: Georgia, serif; font-size: 46px; font-weight: normal; }
.port-head p { color: var(--muted); font-size: 14px; margin-top: 12px; letter-spacing: 1px; }
.port-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 14px; max-width: 1200px; margin: 0 auto; }
.port-grid figure { position: relative; overflow: hidden; border-radius: 3px; }
.port-grid figure.tall { grid-row: span 2; }
.port-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.port-grid figure:hover img { transform: scale(1.06); }
.port-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: #fff; font-family: Georgia, serif; font-style: italic; font-size: 18px; opacity: 0; transition: opacity 0.3s; }
.port-grid figure:hover figcaption { opacity: 1; }

/* PACKAGES */
.packages { padding: 100px 60px; background: var(--bg2); }
.pkg-head { text-align: center; margin-bottom: 60px; }
.pkg-head h2 { font-family: Georgia, serif; font-size: 46px; font-weight: normal; }
.pkg-head p { color: var(--muted); font-size: 14px; margin-top: 12px; }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.pkg-card { background: var(--panel); border: 1px solid var(--line); border-radius: 4px; padding: 44px 36px; text-align: center; transition: transform 0.2s; }
.pkg-card:hover { transform: translateY(-6px); }
.pkg-card.featured { border-color: var(--gold); position: relative; }
.pkg-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--bg); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; padding: 6px 16px; border-radius: 20px; }
.pkg-card h3 { font-family: Georgia, serif; font-size: 26px; font-weight: normal; margin-bottom: 8px; }
.pkg-price { font-size: 42px; color: var(--gold); margin: 18px 0; }
.pkg-price span { font-size: 14px; color: var(--muted); }
.pkg-card ul { list-style: none; margin: 24px 0 30px; }
.pkg-card li { padding: 10px 0; color: var(--muted); font-size: 14px; border-bottom: 1px solid var(--line); font-weight: 300; }

/* BOOKING / CONTACT */
.booking { padding: 100px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; max-width: 1180px; margin: 0 auto; }
.booking-text h2 { font-family: Georgia, serif; font-size: 44px; font-weight: normal; line-height: 1.2; margin-bottom: 18px; }
.booking-text p { color: var(--muted); line-height: 1.9; font-size: 15px; margin-bottom: 16px; font-weight: 300; }
.form-card { background: var(--panel); border: 1px solid var(--line); padding: 44px; border-radius: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
input, select, textarea { background: var(--bg); border: 1px solid var(--line); border-radius: 3px; color: var(--text); padding: 13px 15px; font-size: 14px; font-family: inherit; outline: none; transition: border-color 0.3s; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
.form-submit { margin-top: 18px; width: 100%; background: var(--gold); color: var(--bg); padding: 17px; border: none; border-radius: 3px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; cursor: pointer; transition: background 0.3s; }
.form-submit:hover { background: var(--gold-dark); }

/* CTA BAND */
.cta-band { background: var(--bg2); text-align: center; padding: 90px 40px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-band h2 { font-family: Georgia, serif; font-size: 42px; font-weight: normal; margin-bottom: 16px; }
.cta-band p { color: var(--muted); font-size: 15px; margin-bottom: 30px; font-weight: 300; }

/* FOOTER */
footer { background: #0c0c0b; padding: 64px 60px 30px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-brand .logo-main { color: #fff; font-size: 24px; margin-bottom: 14px; align-items: flex-start; }
.footer-brand p { font-size: 13px; line-height: 1.8; color: var(--muted); max-width: 280px; font-weight: 300; }
.footer-col h5 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col p, .footer-col a { display: block; font-size: 13px; line-height: 1.9; color: var(--muted); text-decoration: none; font-weight: 300; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { background: #000; text-align: center; padding: 18px; font-size: 11px; color: var(--muted); }

@media (max-width: 860px) {
  nav { padding: 20px 24px; }
  nav ul { display: none; }
  .about, .booking { grid-template-columns: 1fr; }
  .port-grid, .pkg-grid { grid-template-columns: 1fr; }
  .port-grid { grid-auto-rows: 240px; }
  .port-grid figure.tall { grid-row: span 1; }
  .hero-content, .page-hero-content { padding-left: 24px; padding-right: 24px; }
  .promo-msg { display: none; }
  footer { grid-template-columns: 1fr; }
}
