:root {
  --navy: #0b2343;
  --slate: #6e7b8b;
  --cream: #f6f3ee;
  --stone: #d8d1c7;
  --gold: #b4935a;
  --ink: #13213a;
  --soft-white: #fffdf8;
  --line: rgba(180, 147, 90, 0.32);
  --shadow: 0 24px 70px rgba(11, 35, 67, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at 15% 10%, #fffaf0 0%, var(--cream) 34%, #f2ede5 100%);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 96px;
  padding: 18px 6vw;
  background: rgba(246, 243, 238, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: min(170px, 28vw);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
}

.nav-links a {
  color: var(--navy);
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 1px solid transparent;
}

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

/* Hamburger button — hidden by default, revealed on mobile */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
  margin: -10px;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 11;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 4.5px auto;
  background: var(--navy);
  transition: transform 220ms ease, opacity 220ms ease;
}

/* Compensate for sticky header so anchor jumps don't clip the section heading */
#approach,
#why,
#about,
#contact {
  scroll-margin-top: 140px;
}


.section-shell {
  width: min(1180px, 88vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 6vw 96px;
  text-align: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 35, 67, 0.55) 0%, rgba(11, 35, 67, 0.72) 100%);
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  color: var(--soft-white);
}

.hero .eyebrow {
  color: var(--gold);
}

.hero h1 {
  margin: 0 auto;
  max-width: 920px;
  color: var(--soft-white);
}

.hero .gold-rule {
  margin: 28px auto 24px;
}

.hero .hero-text {
  margin: 0 auto 32px;
  color: rgba(255, 253, 248, 0.88);
}

.hero .hero-actions {
  justify-content: center;
}

.hero .button.primary {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.hero .button.primary:hover {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.04;
}

h1 {
  max-width: 675px;
  font-size: clamp(48px, 7vw, 86px);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
  text-align: center;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 28px;
}

.gold-rule {
  width: 74px;
  height: 2px;
  margin: 28px 0 24px;
  background: var(--gold);
}

.hero-text {
  max-width: 540px;
  margin: 0 0 32px;
  color: #4f5e71;
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 190px;
  min-height: 54px;
  padding: 15px 24px;
  border: 1px solid var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(11, 35, 67, 0.14);
}

.button.primary {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.button.secondary {
  color: var(--navy);
  background: rgba(255, 253, 248, 0.55);
}


.section-panel {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services,
.process,
.why {
  padding: 78px 0;
}

.services .section-label,
.process .section-label,
.why .section-label {
  text-align: center;
}

.card-grid {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 250px;
  padding: 34px 28px;
  border: 1px solid rgba(180, 147, 90, 0.32);
  background: rgba(255, 253, 248, 0.48);
  box-shadow: 0 14px 34px rgba(11, 35, 67, 0.05);
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 25px;
}

.service-card p,
.value-item p,
.process p,
.site-footer p {
  color: #526174;
  font-size: 15px;
}

.value-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}

.value-item {
  padding: 10px 34px;
  border-left: 1px solid var(--line);
}

.value-item span,
.process article span {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  line-height: 1;
}

.value-item h3 {
  margin-top: 16px;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.process article {
  padding-right: 22px;
  border-right: 1px solid var(--line);
}

.process article:last-child {
  border-right: 0;
}

.process h3 {
  margin: 16px 0 10px;
  font-size: 26px;
}

.site-footer {
  padding: 48px 6vw;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.5);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.footer-brand img {
  width: min(180px, 52vw);
}

.footer-contact a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.copyright {
  text-align: right;
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
    flex-direction: column;
    min-height: auto;
    padding: 20px 6vw;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 28px;
    font-size: 17px;
  }

  .hero {
    min-height: 72vh;
    padding: 80px 5vw 80px;
  }

  .card-grid.four,
  .card-grid.three,
  .value-row,
  .process-grid,
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .process article:nth-child(2n) {
    border-right: 0;
  }

  .copyright {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 34px, 1180px);
  }

  .site-header {
    padding: 14px 5vw;
    gap: 14px;
  }

  .brand img {
    width: min(160px, 44vw);
  }

  /* Mobile: hamburger row + collapsible drop-down nav */
  .site-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 14px 5vw;
    min-height: auto;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 8px 5vw 18px;
    background: rgba(246, 243, 238, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    text-align: center;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  /* Hamburger animates to an X when menu is open */
  .nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  h1 {
    font-size: 46px;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .hero-text {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .card-grid.four,
  .card-grid.three,
  .value-row,
  .process-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .services,
  .process,
  .why {
    padding: 58px 0;
  }

  .process article,
  .process article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
  }

  .process article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding: 12px 5vw;
  }

  .brand img {
    width: min(150px, 44vw);
  }

  .hero {
    padding: 36px 0 52px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 42px);
  }

  .hero-text {
    font-size: 15px;
  }

  .footer-brand img {
    width: min(150px, 48vw);
  }

  .button {
    min-height: 48px;
    font-size: 16px;
  }
}

/* ---- New sections (copy overhaul) ---- */

.intro {
  padding: 56px 0 12px;
}

.intro .lead {
  max-width: 880px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.5;
  color: var(--navy);
}

.section-intro {
  max-width: 760px;
  margin: 18px auto 0;
  text-align: center;
  color: #526174;
  font-size: 17px;
  line-height: 1.6;
}

.why-copy {
  max-width: 820px;
  margin: 28px auto 8px;
  text-align: center;
}

.why-copy p {
  color: #526174;
  font-size: 17px;
  line-height: 1.65;
  margin: 14px 0;
}

.about {
  padding: 78px 0;
}

.about .section-label,
.contact .section-label {
  text-align: center;
}

.about-copy {
  max-width: 820px;
  margin: 28px auto 0;
  text-align: center;
}

.about-copy p {
  color: #526174;
  font-size: 17px;
  line-height: 1.65;
  margin: 16px 0;
}

.about-copy .miami-line {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
}

.contact {
  padding: 78px 0;
  text-align: center;
}

.contact-copy {
  max-width: 680px;
  margin: 24px auto 32px;
  color: #526174;
  font-size: 17px;
  line-height: 1.65;
}

.contact-actions {
  display: flex;
  justify-content: center;
}

.disclaimer {
  max-width: 880px;
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #8a96a8;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 640px) {
  .intro {
    padding: 40px 0 8px;
  }

  .about,
  .contact {
    padding: 58px 0;
  }

  .about-copy .miami-line {
    font-size: 18px;
  }

  .disclaimer {
    font-size: 11px;
    padding: 24px 6px 0;
  }
}

/* ---- About / interior page hero (no video, just navy block) ---- */

.page-hero {
  position: relative;
  background: var(--navy);
  color: var(--soft-white);
  padding: 110px 6vw 90px;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(180, 147, 90, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero .eyebrow {
  color: var(--gold);
  margin-bottom: 14px;
}

.page-hero h1 {
  color: var(--soft-white);
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -0.03em;
}

.page-hero .gold-rule {
  margin: 26px auto 24px;
}

.page-hero-text {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 253, 248, 0.85);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.6;
}

/* About page Miami closer */
.about-closer {
  padding: 64px 0 32px;
  text-align: center;
}

.about-closer .miami-line {
  margin: 0 auto;
  max-width: 720px;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .page-hero {
    padding: 80px 5vw 64px;
  }
  .about-closer {
    padding: 48px 0 24px;
  }
  .about-closer .miami-line {
    font-size: 17px;
  }
}
