
/* =====================================================
   ROOT / VARIABLES
===================================================== */

:root {
  --navy: #061a2d;
  --navy2: #0a2744;
  --gold: #c49146;
  --ink: #14202c;
  --muted: #66717b;
  --cream: #fbfaf7;
  --soft: #f7f4ef;
  --line: #e7e0d6;
  --white: #fff;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;

  --max: 1180px;
}


/* =====================================================
   GENERAL
===================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
}

.section {
  padding: 54px 0;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}


/* =====================================================
   TYPOGRAPHY
===================================================== */

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.06;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(48px, 6vw, 76px);
}

h2 {
  font-size: clamp(34px, 4vw, 48px);
}

h3 {
  font-size: 26px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
  background: var(--navy);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-title {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.04em;
}

.brand-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.76);
  margin-top: 2px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: white;
  font-size: 24px;
}

.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
  padding: 32px 0 29px;
  position: relative;
}


.main-nav a:hover:after {
  content: "";
  height: 2px;
  background: var(--gold);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
}


/* =====================================================
   HERO
===================================================== */

.hero {
  background: linear-gradient(
    90deg,
    #fff 0 56%,
    #f1e8dd 56%
  );
}

.hero-grid {
  display: grid;
  grid-template-columns: 56% 44%;
  min-height: 540px;
}

.hero-left {
  padding: 22px 46px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.breadcrumbs {
  font-size: 11px;
  color: #7a838b;
  margin-bottom: 34px;
}

.hero-kicker {
  font-size: 13px;
  letter-spacing: 0.09em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}

.gold-rule {
  height: 2px;
  width: 55px;
  background: var(--gold);
  margin: 18px 0;
}

.hero-copy {
  max-width: 560px;
  font-size: 16px;
}

.hero-image-wrap {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.hero-caption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  background: rgba(11, 16, 20, 0.38);
  color: white;
  font-size: 12px;
  padding: 8px 10px;
  max-width: 210px;
}


/* =====================================================
   FACT ROW
===================================================== */

.fact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 36px;
  max-width: 590px;
}

.fact {
  padding: 0 18px;
  border-right: 1px solid #dedede;
  text-align: center;
}

.fact:first-child {
  padding-left: 0;
}

.fact:last-child {
  border-right: 0;
}

.fact-icon {
  height: 38px;
  margin: auto auto 8px;
  color: var(--gold);
}

.fact strong {
  display: block;
  font-size: 12px;
}

.fact span {
  font-size: 10px;
  color: #727b83;
}


/* =====================================================
   PROFILE
===================================================== */

.profile-section {
  padding: 48px 0;
}

.profile-grid {
  display: grid;
  grid-template-columns: 36% 64%;
  gap: 42px;
  align-items: center;
}

.profile-copy p {
  font-size: 14px;
}

.profile-photo {
  height: 405px;
  overflow: hidden;
}

.profile-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.outline-btn {
  display: inline-block;
  border: 1px solid var(--gold);
  padding: 12px 22px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9c6b28;
  margin-top: 8px;
}


/* =====================================================
   FOCUS
===================================================== */

.focus {
  background: var(--soft);
  padding: 32px 0 38px;
  text-align: center;
}

.focus-title {
  font-family: var(--serif);
  font-size: 27px;
  letter-spacing: 0.02em;
  margin-bottom: 26px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1120px;
  margin: auto;
}

.focus-item {
  padding: 0 22px;
  border-right: 1px solid #ddd3c7;
}

.focus-item:last-child {
  border-right: 0;
}

.focus-icon {
  height: 40px;
  color: var(--gold);
  margin: 0 auto 10px;
}

.focus-item h3 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.focus-item p {
  font-size: 12px;
  line-height: 1.5;
}


/* =====================================================
   IN THE MEDIA
===================================================== */

.media {
  padding: 38px 0 24px;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 28px;
}

.section-title:after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: var(--gold);
  margin: 10px auto 0;
}


/* =====================================================
   MEDIA CAROUSEL
===================================================== */

.media-carousel {
  position: relative;
  width: 100%;
}

.media-carousel-viewport {
  width: 100%;
  overflow: hidden;
}


/*
   IMPORTANT:
   This replaces the old CSS Grid.
   The cards now sit horizontally.
*/

.media-grid {
  display: flex;
  gap: 14px;
  transition: transform 0.5s ease;
  will-change: transform;
}


/*
   Three cards visible on desktop
*/

.media-card {
  flex: 0 0 calc((100% - 28px) / 3);
  min-width: 0;

  border: 1px solid #dedbd6;

  display: grid;
  grid-template-columns: 42% 58%;

  min-height: 190px;

  background: #fff;
}

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

.media-body {
  padding: 18px;
}

.media-brand {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 9px;
}

.media-brand.script {
  font-family: Georgia, serif;
  font-style: italic;
  color: #0a4d87;
}

.media-body h3 {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
  margin-bottom: 8px;
}

.media-body .date {
  font-size: 10px;
  color: #7d858c;
}

.read-link {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  margin-top: 9px;
}

.center-action {
  text-align: center;
  margin-top: 14px;
}


/* =====================================================
   MEDIA CAROUSEL ARROWS
===================================================== */

.media-arrow {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 10;

  width: 46px;
  height: 46px;

  border: 1px solid rgba(6, 26, 45, 0.14);

  border-radius: 50%;

  background: #fff;

  color: var(--navy);

  font-size: 20px;

  line-height: 1;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease,
    background 0.25s ease;
}

.media-arrow:hover {
  transform: translateY(-50%) scale(1.08);

  box-shadow: 0 7px 24px rgba(0, 0, 0, 0.16);

  background: var(--cream);
}

.media-arrow--prev {
  left: -23px;
}

.media-arrow--next {
  right: -23px;
}

.media-arrow:disabled {
  opacity: 0.25;
  cursor: default;
  box-shadow: none;
}

.media-arrow:disabled:hover {
  transform: translateY(-50%);
}

/* =====================================================
   MEDIA CAROUSEL RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

  .media-card {
    flex: 0 0 calc((100% - 14px) / 2);
  }

}


@media (max-width: 700px) {

  .media {
    padding: 32px 0 20px;
  }

  .media-card {
    flex: 0 0 100%;
    grid-template-columns: 42% 58%;
  }

  .media-arrow {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }

  .media-arrow--prev {
    left: -12px;
  }

  .media-arrow--next {
    right: -12px;
  }

}


@media (max-width: 480px) {

  .media-card {
    grid-template-columns: 40% 60%;
  }

  .media-body {
    padding: 14px;
  }

  .media-brand {
    font-size: 23px;
  }

  .media-body h3 {
    font-size: 12px;
    line-height: 1.4;
  }

  .read-link {
    font-size: 11px;
  }

}


/* =====================================================
   PHOTOS
===================================================== */

.photos {
  padding: 24px 0 36px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.photo-card img {
  aspect-ratio: 1.38 / 1;
  object-fit: cover;
  width: 100%;
}

.photo-card figcaption {
  font-family: var(--serif);
  font-size: 13px;
  text-align: center;
  margin-top: 7px;
  color: #4a5056;
}

.dots {
  text-align: center;
  color: #c8c8c8;
  font-size: 20px;
  letter-spacing: 7px;
  margin-top: 4px;
}

.dots .active {
  color: #0c1b2d;
}


/* =====================================================
   ARTICLE TEASER
===================================================== */

.article-teaser {
  background: #fff;
  padding: 28px 0 54px;
}

.article-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
}

.article-box {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.article-box h3 {
  font-family: var(--sans);
  font-size: 17px;
  margin-bottom: 8px;
}

.article-box p {
  font-size: 13px;
}

.seo-list {
  margin: 0;
  padding-left: 20px;
  color: #4b5660;
  font-size: 13px;
}

.seo-list li {
  margin: 6px 0;
}


/* =====================================================
   FOOTER
===================================================== */

.footer-main {
  border-top: 1px solid #e8e1d8;
  background: #fff;
  padding: 34px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
}

.footer-main h4 {
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin-bottom: 12px;
}

.footer-main p,
.footer-main a,
.footer-main li {
  font-size: 12px;
  color: #59636d;
}

.footer-main ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-main li + li {
  margin-top: 6px;
}

.footer-icons {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.social-dot {
  width: 28px;
  height: 28px;
  border: 1px solid #bbb;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
}


/* =====================================================
   BOTTOM FOOTER
===================================================== */

.site-bottom {
  background: var(--navy);
  color: #fff;
  padding: 15px 0;
}

.bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.85);
}


/* =====================================================
   ARTICLE PAGE
===================================================== */

.article-page {
  background: var(--cream);
}

.article-hero {
  padding: 54px 0 26px;
}

.article-hero h1 {
  max-width: 900px;
}

.article-lead {
  font-size: 18px;
  max-width: 850px;
}

.article-cover {
  margin: 26px 0 36px;
  height: 520px;
  overflow: hidden;
}

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

.article-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 54px;
}

.article-content main p {
  font-size: 16px;
}

.aside-card {
  border: 1px solid var(--line);
  background: white;
  padding: 22px;
  position: sticky;
  top: 30px;
}

.aside-card h3 {
  font-size: 24px;
}

.source-link {
  color: #8b6127;
  text-decoration: underline;
}


/* =====================================================
   TABLET
   980px AND BELOW
===================================================== */

@media (max-width: 980px) {

  .main-nav ul {
    gap: 15px;
  }


  /* HERO */

  .hero-grid,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    background: #fff;
  }

  .hero-left {
    padding: 32px 0;
  }

  .hero-image-wrap {
    min-height: 520px;
  }


  /* FACTS */

  .fact-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .fact {
    border-right: 0;
    border-bottom: 1px solid #eee;
    padding: 12px;
  }


  /* FOCUS */

  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .focus-item {
    border: 0;
  }


  /* =================================================
     MEDIA CAROUSEL - TABLET
     2 cards visible
  ================================================= */

  .media-card {
    flex: 0 0 calc((100% - 14px) / 2);
  }

  .media-arrow--prev {
    left: -12px;
  }

  .media-arrow--next {
    right: -12px;
  }


  /* PHOTOS */

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


  /* FOOTER */

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* =====================================================
   MOBILE
   760px AND BELOW
===================================================== */

@media (max-width: 760px) {

  .container {
    width: min(var(--max), calc(100% - 28px));
  }


  /* HEADER */

  .header-inner {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy);
    z-index: 30;
    padding: 15px 28px;
  }

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

  .main-nav ul {
    flex-direction: column;
  }

  .main-nav a {
    padding: 8px 0;
    display: block;
  }
  
  /* Remove gold underline in hamburger menu */
.main-nav a.active:after,
.main-nav a:hover:after {
  display: none;
}


  /* =================================================
     HERO
  ================================================= */

  .hero-grid {
    display: block;
  }

  .hero-image-wrap {
    min-height: 420px;
  }


  /* =================================================
     FACTS
  ================================================= */

  .fact-row {
    grid-template-columns: 1fr 1fr;
  }


  /* =================================================
     FOCUS
  ================================================= */

  .focus-grid {
    grid-template-columns: 1fr;
  }


  /* =================================================
     MEDIA CAROUSEL - MOBILE
     1 card visible
  ================================================= */

  .media {
    padding: 34px 0 24px;
  }

  .media-carousel {
    width: 100%;
  }

  .media-grid {
    gap: 14px;
  }

  .media-card {
    flex: 0 0 100%;

    grid-template-columns: 38% 62%;

    min-height: 190px;
  }

  .media-body {
    padding: 16px;
  }

  .media-brand {
    font-size: 24px;
  }

  .media-body h3 {
    font-size: 12px;
    line-height: 1.45;
  }

  .media-arrow {
    width: 40px;
    height: 40px;

    font-size: 17px;

    background: rgba(255, 255, 255, 0.94);
  }

  .media-arrow--prev {
    left: 7px;
  }

  .media-arrow--next {
    right: 7px;
  }


  /* =================================================
     PHOTOS
  ================================================= */

  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }


  /* =================================================
     ARTICLES
  ================================================= */

  .article-grid,
  .article-content {
    grid-template-columns: 1fr;
  }


  /* =================================================
     FOOTER
  ================================================= */

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .bottom-inner {
    flex-direction: column;
  }


  /* =================================================
     PROFILE
  ================================================= */

  .profile-photo {
    height: 300px;
  }

}


/* =====================================================
   SMALL MOBILE
   520px AND BELOW
===================================================== */

@media (max-width: 520px) {

  /*
     On very small phones make the media card vertical.
     This gives the article image and headline more room.
  */

  .media-card {
    grid-template-columns: 1fr;
  }

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

  .media-body {
    padding: 18px;
  }

  .media-brand {
    font-size: 25px;
  }

  .media-body h3 {
    font-size: 13px;
  }

}