/* Lydian Impact — static marketing site */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700;900&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg: #f8f2e6;
  --fg: #241a3d;
  --card: #fefaf1;
  --muted: #6b6480;
  --border: #e3dccd;
  --primary: #2a7a4f;       /* tropical green */
  --primary-fg: #fefaf1;
  --accent: #d9642f;        /* sunset coral */
  --gold: #d4a53a;
  --gold-fg: #241a3d;
  --cream: #fefaf1;
  --royal-a: #241143;
  --royal-b: #170c31;
  --royal-c: #123526;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: "Playfair Display", Georgia, serif; letter-spacing: -0.02em; font-weight: 700; line-height: 1.1; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(248, 242, 230, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; max-width: 1200px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand img { height: 44px; width: auto; }
.brand-name { font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.25rem; }
nav.primary { display: flex; gap: 1.75rem; font-size: 0.9rem; font-weight: 500; }
nav.primary a { color: var(--muted); transition: color .2s; }
nav.primary a:hover, nav.primary a.active { color: var(--fg); }
.btn-apply {
  background: var(--gold); color: var(--gold-fg);
  padding: 0.55rem 1.25rem; border-radius: 999px;
  font-weight: 600; font-size: 0.85rem;
  box-shadow: 0 4px 14px -4px rgba(212, 165, 58, 0.5);
  transition: transform .2s;
}
.btn-apply:hover { transform: translateY(-1px); }

@media (max-width: 720px) {
  nav.primary { display: none; }
}

/* Hero */
.hero {
  position: relative; overflow: hidden; color: var(--cream);
  min-height: 640px; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url("./hero.jpg");
  background-size: cover; background-position: center;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.25) 100%),
              linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 50%, rgba(0,0,0,0.6) 100%);
}
.hero .container { position: relative; padding: 6rem 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); color: var(--cream); text-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.hero h1 .island {
  background: linear-gradient(135deg, #f0d078, #c98a3a);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { margin-top: 1.25rem; font-size: 1.15rem; max-width: 520px; color: rgba(254,250,241,0.9); }
.hero-ctas { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.5rem; border-radius: 999px;
  font-weight: 600; font-size: 0.9rem;
  transition: transform .2s, background .2s, border-color .2s, color .2s;
}
.btn-gold { background: var(--gold); color: var(--gold-fg); box-shadow: 0 10px 30px -8px rgba(0,0,0,0.4); }
.btn-gold:hover { transform: scale(1.03); }
.btn-outline { border: 1px solid rgba(254,250,241,0.5); color: var(--cream); background: rgba(0,0,0,0.2); backdrop-filter: blur(6px); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-ghost { border: 1px solid var(--border); color: var(--fg); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

.hero-stats { margin-top: 2.75rem; display: flex; gap: 2.5rem; }
.hero-stats .n {
  font-family: "Playfair Display", serif; font-size: 1.9rem; font-weight: 700;
  background: linear-gradient(135deg, #f0d078, #c98a3a);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-stats .l { font-size: 0.85rem; color: rgba(254,250,241,0.8); }
.hero-logo { display: flex; justify-content: flex-end; }
.hero-logo img { max-width: 340px; filter: drop-shadow(0 10px 40px rgba(0,0,0,0.6)); }
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; padding: 4rem 1.5rem; }
  .hero-logo { display: none; }
}

/* Sections */
.section { padding: 5rem 0; }
.section .eyebrow { color: var(--accent); font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 600; }
.section h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 0.5rem; }
.section .lead { margin-top: 0.75rem; color: var(--muted); max-width: 640px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }

.feature {
  background: var(--card); border: 1px solid var(--border); border-radius: 1.25rem;
  padding: 2rem; position: relative; overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.feature:hover { border-color: rgba(42,122,79,0.6); transform: translateY(-2px); }
.feature .tag {
  display: inline-block; border: 1px solid rgba(42,122,79,0.3); background: rgba(42,122,79,0.1);
  color: var(--primary); padding: 0.25rem 0.75rem; border-radius: 999px;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
}
.feature h3 { margin-top: 1rem; font-size: 1.5rem; }
.feature p { margin-top: 0.75rem; color: var(--muted); font-size: 0.95rem; }

/* CTA band */
.cta-band {
  margin: 0 auto 5rem; max-width: 1200px; padding: 0 1.5rem;
}
.cta-band .inner {
  background: linear-gradient(135deg, var(--royal-a) 0%, var(--royal-b) 50%, var(--royal-c) 100%);
  border: 1px solid rgba(212,165,58,0.3); border-radius: 1.75rem; color: var(--cream);
  padding: 3rem; display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between;
}
.cta-band h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); color: var(--cream); }
.cta-band p { color: rgba(254,250,241,0.8); margin-top: 0.5rem; }
.cta-band .actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Rentals cards */
.rental-hero {
  padding: 5rem 0 3rem; text-align: left;
}
.rentals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .rentals-grid { grid-template-columns: 1fr; } }
.rental-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 1.25rem;
  overflow: hidden; display: flex; flex-direction: column;
}
.rental-card .head { padding: 1.5rem; border-bottom: 1px solid var(--border); }
.rental-card h3 { font-size: 1.4rem; }
.rental-card .price { color: var(--accent); font-weight: 600; font-size: 0.9rem; margin-top: 0.25rem; }
.rental-card ul { list-style: none; padding: 1.5rem; }
.rental-card li { padding: 0.4rem 0; color: var(--muted); font-size: 0.9rem; border-bottom: 1px dashed var(--border); }
.rental-card li:last-child { border-bottom: 0; }
.rental-card .foot { padding: 1.25rem; margin-top: auto; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2.5rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { padding: 2rem; background: var(--card); border: 1px solid var(--border); border-radius: 1.25rem; }
.contact-info h4 { font-family: "Inter", sans-serif; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.7rem; color: var(--muted); margin-bottom: 0.5rem; }
.contact-info .row { padding: 1rem 0; border-bottom: 1px solid var(--border); }
.contact-info .row:last-child { border-bottom: 0; }
.contact-info a.big { font-family: "Playfair Display", serif; font-size: 1.5rem; color: var(--fg); }
.contact-info a.big:hover { color: var(--primary); }

/* Policies */
.policies { max-width: 780px; margin: 0 auto; }
.policies h2 { margin-top: 2.5rem; font-size: 1.75rem; }
.policies h2:first-child { margin-top: 0; }
.policies p { margin-top: 0.75rem; color: var(--muted); }
.policies ul { margin: 0.75rem 0 0 1.25rem; color: var(--muted); }
.policies li { margin-top: 0.35rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border); padding: 3rem 0 2rem;
  background: var(--card);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h5 { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.7rem; color: var(--muted); font-family: "Inter", sans-serif; font-weight: 600; }
.footer-grid ul { list-style: none; margin-top: 0.75rem; }
.footer-grid li { padding: 0.25rem 0; }
.footer-grid a { color: var(--muted); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--fg); }
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 1rem; max-width: 360px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; text-align: center; color: var(--muted); font-size: 0.8rem; }

/* Page hero (non-home) */
.page-hero {
  padding: 5rem 0 3rem; border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #fefaf1 0%, #f8f2e6 100%);
}
.page-hero .eyebrow { color: var(--accent); font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 600; }
.page-hero h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); margin-top: 0.75rem; }
.page-hero p { margin-top: 1rem; color: var(--muted); max-width: 640px; }
