/* =============================================
   ISLAND DREAM COLLECTIVE — islanddreamco.com
   Owner-facing brand site
   ============================================= */

:root {
  --navy:        #1C2B3A;
  --navy-deep:   #111D27;
  --navy-mid:    #243447;
  --gold:        #C9A96E;
  --gold-light:  #E8D5B0;
  --sand:        #F8F4EE;
  --white:       #FFFFFF;
  --charcoal:    #2D2D2D;
  --mid:         #6B7280;
  --border:      #E4DDD3;
  --font:        'Helvetica Neue', 'Arial', sans-serif;
  --ease:        0.28s ease;
  --radius:      3px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── NAV ─────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  background: rgba(17, 29, 39, 0.96);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 34px;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  transition: color var(--ease);
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--ease) !important;
}

.nav-cta:hover { background: #D4B480 !important; }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--ease);
}

/* ── MOBILE NAV ──────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--navy-deep);
  z-index: 999;
  padding: 1.5rem 2rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.04em;
}

.mobile-nav a:last-child { border-bottom: none; }

.mobile-nav-cta {
  display: block;
  margin-top: 1.25rem;
  background: var(--gold) !important;
  color: var(--navy) !important;
  text-align: center;
  padding: 0.85rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── HERO ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(17,29,39,0.65) 0%, rgba(28,43,58,0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding: 8rem 2rem 4rem;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ─────────────────────────────── */
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 0.9rem 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--ease);
  display: inline-block;
}

.btn-gold:hover { background: #D4B480; }

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white);
  padding: 0.9rem 2rem;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--ease);
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 0.9rem 2rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--ease);
  display: inline-block;
}

.btn-navy:hover { background: var(--navy-mid); }

/* ── STATS STRIP (signature element) ─────── */
.stats-strip {
  background: var(--navy);
  padding: 3.5rem 2rem;
}

.stats-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 1rem 2rem;
  border-right: 1px solid rgba(201,169,110,0.2);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  color: var(--white);
  font-size: 2.75rem;
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.stat-label {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ── SECTIONS ────────────────────────────── */
.section { padding: 6rem 2rem; }
.section-sand { background: var(--sand); }
.section-navy { background: var(--navy); }
.section-deep { background: var(--navy-deep); }

.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 760px; margin: 0 auto; }

.section-header { margin-bottom: 3.5rem; }

.section-eyebrow {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-title.light { color: var(--white); }

.section-body {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.75;
  font-weight: 300;
  max-width: 560px;
}

.section-body.light { color: rgba(255,255,255,0.68); }

/* ── SERVICES GRID ───────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.service-card {
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.service-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201,169,110,0.1);
}

.service-icon {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.service-card p {
  font-size: 0.855rem;
  color: var(--mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ── PORTFOLIO GRID ──────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.portfolio-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--ease);
}

.portfolio-card:hover {
  box-shadow: 0 8px 30px rgba(28,43,58,0.12);
}

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

.portfolio-body { padding: 2rem; }

.portfolio-location {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.portfolio-body h3 {
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.portfolio-body p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.portfolio-metrics {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.metric-value {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.metric-label {
  font-size: 0.67rem;
  color: var(--mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── ABOUT STRIP ─────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-body p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

/* ── HOW IT WORKS ────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.step-card { position: relative; }

.step-number {
  font-size: 3.5rem;
  font-weight: 200;
  color: rgba(201,169,110,0.25);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ── INCLUDES GRID ───────────────────────── */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.include-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.include-item:nth-child(even) { border-right: none; }

.include-check {
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.6rem;
  color: var(--navy);
  font-weight: 700;
}

.include-text h4 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.include-text p {
  font-size: 0.8rem;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.55;
}

/* ── WHY IDC ─────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.why-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius);
}

.why-card .why-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.why-card h3 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.why-card p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  font-weight: 300;
}

/* ── FAQ ─────────────────────────────────── */
.faq-list { margin-top: 3rem; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}

.faq-item h3 {
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.faq-item p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ── ENQUIRY FORM ────────────────────────── */
.form-section {
  background: var(--sand);
  padding: 6rem 2rem;
}

.form-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--ease);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit {
  margin-top: 2rem;
  text-align: center;
}

.form-submit .btn-gold {
  padding: 1rem 3rem;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  width: 100%;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--mid);
  margin-top: 1rem;
  font-weight: 300;
}

/* ── CTA BAND ────────────────────────────── */
.cta-band {
  background: var(--navy);
  padding: 6rem 2rem;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FOOTER ──────────────────────────────── */
.footer {
  background: var(--navy-deep);
  padding: 5rem 2rem 2.5rem;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand img {
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.855rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  font-weight: 300;
  max-width: 260px;
}

.footer-brand .footer-contact {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--gold);
  opacity: 0.85;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.855rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
  transition: color var(--ease);
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a { color: var(--gold); opacity: 0.8; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img { height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(201,169,110,0.15); padding: 1.5rem 1rem; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(201,169,110,0.15); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .include-item { border-right: none !important; }
  .why-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .section { padding: 4rem 1.5rem; }
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding: 8rem 2rem 4rem;
  color: #fff;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 1rem;
}

.page-hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
}
