:root{
  /* Palette inspired by the client's blue + warm contrast */
  --midnight:#1F2831;      /* deep blue */
  --deep-ink:#0a1a24;      /* near-black for text */
  --teal:#1f5c73;          /* desaturated blue/teal accent */
  --sand:#ece5db;          /* warm light background */
  --copper:#b46e45;        /* contrast accent */
  --cream:#f7f5f1;         /* soft paper white */
  --white:#ffffff;
}
html,
body {
  margin: 0;
  padding: 0;
  background: var(--sand);
  color: var(--deep-ink);
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5
}

h1, h2 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: .02em;
}

a {
  color: inherit;
  text-decoration: none
}

/* Header */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  padding: 25px clamp(25px, 3%, 100px);
}

.brand {
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--cream);
  opacity: 0;
  cursor: pointer;
  margin-right: 14px;
}

.brand span {
  color: var(--copper)
}

.book-now {
  margin-left: auto;
  margin-right: 16px;
  display: inline-block;
  text-align: center;

  padding: 7px 10px 6px;
  border-radius: 8px;

  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;

  color: var(--cream);
  background: var(--copper);
}

.book-now:hover   { filter: brightness(1.05); }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
}

.nav-menu {
  display: none;                 /* hidden by default */
  gap: 24px;
  padding: 12px clamp(25px, 3%, 100px) 16px;
  background: var(--midnight);
  border-top: 1px solid rgba(255,255,255,.08);

  /* lay items horizontally and keep them centered vertically */
  align-items: center;
  justify-content: center;
}

.nav-menu a {
  color: white;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 13px;
  opacity: .9;
  padding: 6px 2px;
  text-align: center;
}

.nav-menu a:hover {
  opacity: 1;
}

/* When open: show as a horizontal row */
.nav-menu.open {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* When menu is open, we also force the header to full opacity */
.nav.is-open {
  background-color: rgba(31, 40, 49, 1); /* var(--midnight) at 1 */
}
.nav.is-open .brand { opacity: 1; } /* brand fully visible */

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: url("res/cover.jpg") center/cover no-repeat;
}
.hero-card {
  max-width: 980px;
  width: 100%;
  margin: 2% 2%;
  color: var(--cream);
}
.hero-kicker {
  letter-spacing: .4em;
  text-transform: uppercase;
  font-size: 14px;
  opacity: .8
}
.hero h1 {
  font-size: clamp(42px, 10vw, 96px);
  line-height: 1;
  margin: .25em 0 .2em
}
.hero h1 em {
  font-weight: 600;
  font-style: normal;
  color: var(--copper)
}
.hero-sub {
  max-width: 720px;
  opacity: .92
}

/* Section common stuff */
.about, .bio-extras, .videos, .media {
  padding: 4rem clamp(24px, 3%, 100px);
  margin: 0 0;
}

.contact-cta h2, .about h2, .bio-section h2, .videos h2, .media h2 {
  margin: 0 0;
  font-size: clamp(2.3rem, 5vw, 3.0rem);
  text-transform: uppercase;
}

/* About */
.about {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-left,
.about-right {
  flex: 1 1 500px;
}

.about-left {
  display: flex;
  flex-direction: column;
  justify-content: center;

  .text {
    text-align: justify;
    max-width: 550px;
    margin: 0 auto;
    margin-bottom: 1rem;
  }
}

.about-right {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: max(60vw, 1000px);

  img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

.cv-btn {
  font-size: 0.9em;
  color: var(--copper);
  text-decoration: underline;
}

/* ---- Videos horizontal scroller ---- */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 1rem;
}

.video-controls {
  display: flex;
  gap: .5rem;

  button {
    appearance: none;
    border: 1px solid rgba(0,0,0,.15);
    background: var(--white);
    color: var(--deep-ink);

    width: 42px;
    height: 42px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
    transition: background .2s, transform .15s;
  }

  button:hover {
    background: var(--cream);
    transform: scale(1.05);
  }
}

.video-strip {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;

  -webkit-overflow-scrolling: touch;
  overflow-x: scroll;
}

.video-strip::-webkit-scrollbar {
  height: 8px;
}

.video-strip::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .2);
  border-radius: 4px;
}

.video-strip {
  scrollbar-color: rgba(0, 0, 0, .2) transparent;
}

.video-card {
  flex: 0 0 80%;
  max-width: 900px;
  scroll-snap-align: start;
  background: var(--midnight);
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);

  position: relative;
  aspect-ratio: 16 / 9;

  overflow: hidden;
}
.video-card iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 900px) {
  .video-card { flex-basis: 60%; }
}
@media (min-width: 1200px) {
  .video-card { flex-basis: 45%; }
}


/* ---- Media gallery ---- */
.media h1 {
  margin-bottom: 1rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: .75rem;
}

.gallery-item {
  display: block;
  grid-column: span 12;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Simple responsive layout for gallery */
@media (min-width: 640px) {
  .gallery-item { grid-column: span 6; }
}
@media (min-width: 1024px) {
  .gallery-item { grid-column: span 4; }
}

/* Footer */
footer {
  background: var(--midnight);
  color: var(--cream);
  font-size: 14px;
}

.footer-inner {
  padding: 36px clamp(24px, 3%, 100px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

.footer-left,
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact {
  span {
    opacity: 0.7;
    margin-right: 8px;
  }

  a {
    color: var(--cream);
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }

  .yt {
    filter: invert(1);
    width: 25px;
    height: 25px;
    vertical-align: middle;
    translate: 0 -2px;
  }
  .insta {
    filter: invert(1);
    width: 17px;
    height: 17px;
    vertical-align: middle;
    translate: 0 -2px;
  }
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;

  span {
    opacity: 0.7;
    margin-right: 8px;
  }

  a {
    color: var(--copper);
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }
}

.muted {
  opacity: 0.7;
}

.copper {
  color: var(--copper);
}

/* ---- Reviews directly under hero ---- */
.reviews-inline {
  padding: 6rem clamp(24px, 3%, 100px);
  display: grid;
  gap: 4rem;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.03)),
    linear-gradient(180deg, rgba(0,0,0,0.03), rgba(0,0,0,0.0));
  justify-content: center;
}
.review blockquote {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  margin: 0 0 .5rem 0;
  letter-spacing: .01em;
}
.review figcaption {
  font-size: 14px;
  opacity: .75;
}

/* ---- Bio extras ---- */
.bio-extras {
  display: grid;
  gap: 3rem;
}

.bio-section h2 {
  margin: 0 0 3rem;
  text-align: center;
}

/* Make the card lists into a tidy grid of little boxes */
.bio-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 550px));
  max-width: calc(550px * 3 + 2rem);
  margin: 0 auto;
  gap: 1rem;
  justify-content: center;
}

/* Compact card look & gentle hover (optional) */
.bio-card {
  background: #f6f7f8;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 1.5rem 1.2rem;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
  transition: transform .15s ease, box-shadow .15s ease;

  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
}

.bio-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(0,0,0,.10);
}

/* Header grid */
.card-icon {
  width: 60px; height: 60px; border-radius: 10px;
}

.card-content h3 {
  margin: 0 0 0.4rem;
}

/* Slightly tighter on small screens */
/* @media (max-width: 767px) { */
/*   .card-icon   { width: 38px; height: 38px;  } */
/* } */

/* ---- Contact section (CTA + socials) ---- */
.contact-cta {
  padding: 3rem clamp(24px, 3%, 100px);
  text-align: center;
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,.06);
}
.contact-lede {
  max-width: 720px;
  margin: 0.5rem auto;
  opacity: .9;
}
.contact-btn {
  display: inline-block;
  margin: 1rem 0;
  padding: 12px 20px;
  background: var(--copper);
  color: white;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.contact-btn:hover { filter: brightness(1.05); }

.contact-socials {
  margin: 0.5rem 0;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--white);
  color: var(--deep-ink);
  border: 1px solid rgba(0,0,0,.08);
  font-weight: 600;
}
.contact-socials .yt {
  width: 25px;
  height: 25px;
}
.contact-socials .insta {
  width: 18px;
  height: 18px;
}

/* keep these from earlier additions (in case they weren't added yet) */
.read-more {
  margin-left: 8px;
  font-size: 0.9em;
  color: var(--copper);
  text-decoration: underline;
}
