:root {
  --cream: #f9f9f9;
  --surface: #ffffff;
  --surface-alt: #f2efe9;
  --ink: #111827;
  --muted: #4b5563;
  --navy: #0b192c;
  --navy-hover: #0f2645;
  --gold: #c5a059;
  --burgundy: #5c1717;
  --rule: #e5e1d8;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family:
    "Work Sans",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
/* ::selection{background:var(--navy);color:var(--cream);} */

.serif {
  font-family: "Cormorant Garamond", serif;
}
.plex {
  font-family: "IBM Plex Sans", sans-serif;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 48px;
  }
}

.overline {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 500;
  display: block;
}

.gold {
  color: var(--gold);
}
.muted {
  color: var(--muted);
}
.cream-text {
  color: var(--cream);
}
.text-center {
  text-align: center;
}
.text-balance {
  text-wrap: balance;
}

/* home gallery */

.gallery {
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  display: grid;
}

.gallery .span-6 {
  aspect-ratio: 1;
}
.gallery .tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
  filter: saturate(0.85);
}

/* ------------- buttons ------------- */
.button {
  display: inline-block;
  border: solid 2px #c5a059;
  cursor: pointer;
  text-decoration: none;
  color: #c5a059;
  background: transparent;
  transition: 1s;
  padding: 14px 32px;
  font-family: "IBM Plex Sans", sans-serif;
}

.button:hover {
  outline-offset: 0.2em;
  animation:
    ripple 1s linear infinite,
    colorize 1s infinite;
  transition: 0.5s;
}

.button span {
  margin-right: 0.3em;
  transition: 0.5s;
}

.button:hover span {
  text-shadow: 5px 5px 5px var(--color-shadow);
}

.button:active span {
  text-shadow: none;
}

.button svg {
  height: 0.8em;
  fill: #c5a059;
  margin-right: -0.16em;
  position: relative;
  transition: 0.5s;
}

.button:hover svg {
  margin-right: 0.66em;
  transition: 0.5s;
  filter: drop-shadow(5px 5px 2.5px var(--color-shadow));
}

.button:active svg {
  filter: none;
}

.button svg polygon:nth-child(1) {
  transition: 0.4s;
  transform: translateX(-60%);
}

.button svg polygon:nth-child(2) {
  transition: 0.5s;
  transform: translateX(-30%);
}

.button:hover svg polygon:nth-child(1) {
  transform: translateX(0%);
  animation: opacity 1s infinite 0.6s;
}

.button:hover svg polygon:nth-child(2) {
  transform: translateX(0%);
  animation: opacity 1s infinite 0.4s;
}

.button:hover svg polygon:nth-child(3) {
  animation: opacity 1s infinite 0.2s;
}

@keyframes opacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ------------- Headings ------------- */

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.display-1 {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
}
.display-2 {
  font-size: clamp(2.25rem, 5.5vw, 3rem);
}
.display-3 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
}
.display-4 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}
p {
  margin: 0 0 1rem;
}
.lead {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
}

.italic {
  font-style: italic;
}

.drop-cap::first-letter {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  float: left;
  font-size: 3rem;
  line-height: 0.85;
  padding-right: 0.5rem;
  padding-top: 0.35rem;
  color: var(--navy);
}

/* ------------- Buttons ------------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--navy);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--navy-hover);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--cream);
}
.btn-outline {
  border-color: rgba(253, 251, 247, 0.7);
  color: var(--cream);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--navy);
}

/* ------------- Header ------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.brand {
  color: rgba(253, 251, 247, 0.9);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}
.dark.scrolled .brand{
      color: var(--navy);
}
.nav {
  display: none;
  gap: 25px;
  align-items: center;
}
.nav a {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  transition: color 0.25s ease;
}
.header.light .brand{
  color: var(--navy);
}
.nav a.active {
  color: var(--gold);
}
@media (min-width: 991px) {
  .nav {
    display: flex;
  }
}
.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}
.menu-btn span {
  display: block;
  height: 1px;
  width: 28px;
  background: currentColor;
}
/* .header.dark{
  position: relative !important;
} */
.menu-btn span:nth-child(3) {
  width: 20px;
  margin-left: auto;
}

.header.dark.scrolled{
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--navy);
    border-bottom-color: var(--rule);
}
@media (min-width: 991px) {
  .menu-btn {
    display: none;
  }

}

/* @media screen and (max-width:768px) {
    .header.dark {
    background: #141b25 !important;

} */
.hero {
    height: auto !important;
    padding-top: 10px !important;
}



/* Header colour modes */
.header.dark {
  background: transparent;
  color: var(--cream);
}
.header.dark .nav a {
  color: rgba(253, 251, 247, 0.9);
}
.header.dark .nav a:hover {
  color: var(--gold);
}
.header.light,.header.dark
.header.scrolled {
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--navy);
  border-bottom-color: var(--rule);
}
.header.light .nav a,
.header.scrolled .nav a {
  color: var(--navy);
}
.header.light .nav a:hover,
.header.scrolled .nav a:hover {
  color: var(--gold);
}

.mobile-menu {
  display: none;
  background: var(--cream);
  border-top: 1px solid var(--rule);
}
.mobile-menu.open {
  display: block;
}
.mobile-menu .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 24px;
  padding-bottom: 24px;
}
.mobile-menu a {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--navy);
}
.mobile-menu a.active {
  color: var(--gold);
}

/* ------------- Hero (home) ------------- */
.hero {
  position: relative;
  height: 70vh;
  min-height: 630px;
  overflow: hidden;
  width: 100%;
}
.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgb(11 25 44 / 0%) 0%,
    rgb(11 25 44 / 59%) 60%,
    rgba(11, 25, 44, 0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 96px;
  color: var(--cream);
}

@media (min-width: 768px) {
  .hero-content {
    padding-top: 100px;
    padding-bottom: 128px;
  }
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 9vw, 3.5rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.hero ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 2px;
  max-width: 600px;
}
.hero ul li {
  font-family: "IBM Plex Sans", sans-serif;
  font-size:14px;
  color: rgba(253, 251, 247, 0.85);
}
.hero .rule {
  height: 1px;
  width: 64px;
  background: var(--gold);
  margin: 24px 0;
}
.hero .cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

/* ------------- Page Hero (subpages) ------------- */
.page-hero {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  padding: 70px 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-hero {
    padding: 70px 0;
  }
}
.page-hero .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 25, 44, 0.6) 0%,
    rgba(11, 25, 44, 0.85) 70%,
    var(--navy) 100%
  );
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  margin-top: 15px;
  font-size: 3rem;
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 60ch;
}
.subtitle {
  margin-top: 20px;
  max-width: 40ch;
font-family: "IBM Plex Sans", sans-serif;
  /*font-style: italic;*/
  font-size: 1rem;
line-height: 1.8;
  color: rgba(253, 251, 247, 0.8);
}
@media (min-width: 768px) {
.subtitle {
    font-size: 1rem;
  }
}

.header.light {
  position: static;
}
.header.light.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.page-hero .gold-rule {
  margin-top: 26px;
  height: 1px;
  width: 96px;
  background: var(--gold);
}

/* ------------- Section ------------- */
.section {
  padding: 96px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 50px 0;
  }
}
.section.alt {
  background: var(--surface-alt);
}
.section.dark {
  background: var(--navy);
  color: var(--cream);
}

.section-head {
  max-width: 768px;
  margin-bottom: 40px;
}
.section-head .overline {
  margin-bottom: 18px;
}
.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 2.6rem);
  letter-spacing: -0.01em;
}

/* ------------- Grid helpers ------------- */
.grid {
  display: grid;
  gap: 32px;
}
.grid-2 {
  grid-template-columns: 1fr;
}
.grid-3 {
  grid-template-columns: 1fr;
}
.grid-4 {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.about-split{
  text-align: justify;
}
.card{
  text-align: justify;
}

/* ------------- About teaser ------------- */
.about-split {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .about-split {
    grid-template-columns: 5fr 7fr;
    gap: 64px;
  }
}
.about-portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}


.stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-top: 29px;
  border-top: 1px solid var(--rule);
}
.stats .value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.875rem;
  color: var(--navy);
  line-height: 1.1;
}
.stats .label {
  display: block;
  margin-top: 8px;
}

/* ------------- Career timeline ------------- */
.timeline {
  position: relative;
  border-left: 1px solid var(--rule);
  margin-left: 8px;
}
@media (min-width: 768px) {
  .timeline {
    margin-left: 24px;
  }
}
.timeline li {
  position: relative;
  padding: 0 0 30px 32px;
  list-style: none;
}
@media (min-width: 768px) {
  .timeline li {
    padding-left: 48px;
  }
}
.timeline li:last-child {
  padding-bottom: 0;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--gold);
}
.timeline h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.875rem);
  color: var(--navy);
  margin-bottom: 8px;
}
.timeline p {
  color: var(--muted);
  max-width: 60ch;
}

/* ------------- Card grids ------------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 768px) {
  .card-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .card-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1100px) {
  .card-grid.cols-3-lg {
    grid-template-columns: repeat(3, 1fr);
  }
}
.card {
  background: var(--cream);
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}
.card.dark {
  background: var(--navy);
  padding: 30px;
  color: #e8e8e8;
      text-align: left;
  justify-content: space-between;
}
.card.dark:hover {
  background: var(--navy-hover);
}
.card:hover {
  background: var(--surface);
}
.card .meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
}
.card h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.5rem);
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--ink);
}
.card.dark h3 {
  color: var(--cream);
  margin-top: 10px !important;
}
.card .excerpt {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}
.card.dark .excerpt {
  color: rgba(253, 251, 247, 0.75);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.125rem;
}
.card .read {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--navy);
}
.card:hover .read {
  color: var(--gold);
}
.card .cover {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy);
  margin-bottom: 24px;
}
.card .cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.card:hover .cover img {
  transform: scale(1.05);
}
.card .gold-dash {
  display: inline-block;
  height: 1px;
  width: 30px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.card.dark:hover .gold-dash {
  width: 50px;
}

/* ------------- Featured press ------------- */
.featured {
  display: grid;
  gap: 32px;
  align-items: center;
  grid-template-columns: 1fr;
  margin-bottom: 80px;
}
@media (min-width: 900px) {
  .featured {
    grid-template-columns: 7fr 5fr;
    gap: 48px;
  }
}
.featured .cover {
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
  background: var(--navy);
}
.featured .cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.featured:hover .cover img {
  transform: scale(1.05);
}
.featured h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1.05;
}

/* ------------- Gallery ------------- */
.gallery-section {
  background: #03142d;
}

.gallery-grid {
    width: 100%;
    margin: auto;
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* Mobile */
.gallery-card.wide {
    grid-column: span 1;
}

/* Tablet */
@media (min-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-card.wide {
        grid-column: span 1;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-card.wide {
        grid-column: span 3;
    }
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  text-decoration: none;
  border: 1px solid rgba(201, 154, 74, 0.4);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.6s;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to top,
    rgba(0, 8, 25, 0.95) 15%,
    rgba(0, 8, 25, 0.55) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.overlay h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 20px;
}

.overlay p {
  color: #ddd;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  margin: 0;
}

.arrow {
  position: absolute;
  right: 30px;
  bottom: 26px;
  width: 36px;
  height: 36px;
  border: 1px solid #c99a4a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c99a4a;
  font-size: 18px;
}

.wide {
  /*grid-column: 1/-1;*/
      /* grid-column: 2 / -1; */
      grid-column: 1 / 4;
  min-height: 320px;
}

@media (max-width: 991px) {


  .wide {
          grid-column: 1 / 4;
  }

  .overlay h3 {
    font-size: 34px;
  }
}






@media (max-width: 767px) {



  .gallery-card,
  .wide {
    min-height: 380px;
  }

  .overlay {
    padding: 24px;
  }

  .overlay h3 {
    font-size: 30px;
  }

  .number {
    font-size: 24px;
  }
}
/* ------------- Video cards ------------- */
.video-card {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.video-card .thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-card .thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.25s ease;
}
.video-card:hover .thumb img {
  opacity: 0.8;
}
.video-card .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-card .play span {
  width: 60px;
  height: 60px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}
.video-card:hover .play span {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.video-card .body {
  padding: 20px 28px;
}
.video-card h3 {
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--cream);
}
.video-card .desc {
  margin: 0 !important;
  margin-top: 16px;
  color: rgba(253, 251, 247, 0.75);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}

/* ------------- Contact form ------------- */
.contact-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 5fr 7fr;
    gap: 64px;
  }
}
.form-grid {
  display: grid;
  gap: 28px 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.field {
  display: block;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  display: block;
  margin-bottom: 12px;
}
.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 8px 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--ink);
  font-size: 1rem;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--navy);
}
.field textarea {
  resize: none;
}

.contact-foot {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
@media (min-width: 768px) {
  .contact-foot {
    flex-direction: row;
    align-items: center;
  }
}
.note-tiny {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 12px;
  color: var(--muted);
  max-width: 32rem;
}

.contact-block {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--rule);
}
.contact-block:first-of-type {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

/* ------------- Press detail body ------------- */
.article-body {
  max-width: 720px;
  margin: 0 auto;
}
.article-body img.cover {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
  margin-bottom: 48px;
}
.article-body p {
  color: var(--ink);
  font-size: 1.125rem;
  line-height: 1.7;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .article-body p {
    font-size: 1.25rem;
  }
}

/* ------------- Footer ------------- */
.footer {
  background: var(--navy);
  color: var(--cream);
}
.footer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
    padding-top: 40px;
    padding-bottom: 20px;
  }
}
.footer .brand {
  margin-bottom: 5px;
  display: block;
  font-size: 1.5rem;
}
.footer .quote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: rgba(253, 251, 247, 0.75);
  max-width: 32rem;
  line-height: 1.6;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.footer ul a {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.875rem;
  color: rgba(253, 251, 247, 0.85);
}
.footer ul a:hover {
  color: var(--gold);
}
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(253, 251, 247, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
  }
}
.footer-bottom .tagline {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 0;
}

/* ------------- Modals (lightbox + video) ------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  background: rgba(11, 25, 44, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.open {
  display: flex;
}
.modal .close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--cream);
}
.modal .close:hover {
  color: var(--gold);
}
.modal img {
  max-height: 85vh;
  max-width: 90vw;
  object-fit: contain;
}
.modal .caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: rgba(253, 251, 247, 0.8);
  text-align: center;
  max-width: 36rem;
  padding: 0 24px;
}
.modal .video-wrap {
  width: 100%;
  max-width: 960px;
}
.modal .video-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}
.modal .video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.modal .video-title {
  margin-top: 24px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: rgba(253, 251, 247, 0.8);
  text-align: center;
}

/* ------------- Toast ------------- */
.toast {
  position: fixed;
  top: 88px;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  z-index: 200;
  padding: 14px 24px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  background: var(--navy);
  color: var(--cream);
  border: 1px solid var(--gold);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast.error {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

/* ------------- 404 ------------- */
.notfound {
  padding: 200px 0 160px;
  text-align: center;
}
.notfound h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 24px 0;
}

/* ------------- Utility ------------- */
.mb-0 {
  margin-bottom: 0;
}
.mb-2 {
  margin-bottom: 16px;
}
.mb-3 {
  margin-bottom: 28px;
}
.mb-4 {
  margin-bottom: 32px;
}
.mb-6 {
  margin-bottom: 48px;
}
.mb-8 {
  margin-bottom: 64px;
}
.mt-8 {
  margin-top: 64px;
}
.hidden {
  display: none;
}
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-3 {
  gap: 12px;
}

.social-icons {
  display: flex !important;
  margin-top: 20px !important;
}

.social-icons li {
  list-style: none;
  margin: 0 5px;
  height: 40px;
  width: 40px;
  color: rgb(253 251 247 / 85%);
  border: 1.5px solid rgb(253 251 247 / 85%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  transition: all ease 0.3s;
}

.social-icons li:hover {
  color: #0b192c;
  background: rgb(253 251 247 / 85%);
  cursor: pointer;
}
.scroll-btn {
  position: absolute;
  cursor: pointer;
  left: 50%;
  bottom: 54px;
  z-index: 10;
}

.scroll-btn span {
  width: 20px;
  height: 20px;
  display: block;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin: -10px;
  animation: animate 2s infinite;
}

.scroll-btn span:nth-child(2) {
  animation-delay: -0.2s;
}

.scroll-btn span:nth-child(3) {
  animation-delay: -0.4s;
}

@keyframes animate {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
    transform: rotate(45deg) translate(10px, 10px);
  }

  100% {
    opacity: 0;
  }
}

.book-intro {
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(253, 251, 247, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section.articles-wrap {
  padding: 40px 0;
}

.article-card {
  margin-bottom: 12px;
  background: #f2efe9;
  padding: 14px 32px;
  border-left: 2px solid #c8a96a;
  transition: 0.3s;
}

.article-card:hover {
  box-shadow: 0 10px 30px rgb(12 24 42 / 24%);
}
.article-card:last-child {
  margin-bottom: 0;
}
.meta {
  color: #7b8794;
  margin-bottom: 8px;
  font-size: 14px !important;
  font-style: italic;
}

.article-card a {
  color: #c8a96a;
  text-decoration: none;
  font-weight: 500;
}
.article-card p {
  font-size: 18px;
  margin-bottom: 10px;
}

@media screen and (max-width: 576px) {
  section.articles-wrap {
    padding: 22px 0;
  }
  .article-card p {
    font-size: 16px;
    margin-bottom: 7px;
  }
  .article-card {
    margin-bottom: 12px;
    padding: 11px 20px;
  }
  .contact .container{
    flex-direction: column;
    align-items: baseline !important;

  }
  .stats {
    margin-top: 10px;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 10px;
}
.stats .value {
    font-size: 23px;
}
}

.social-icons li:hover a {
  color: #c5a059;
}

img#snd {
    position: fixed;
    bottom: 50px;
    width: 46px;
    background-color: #c5a059;
    padding: 12px;
    right: 30px;
    border-radius: 50%;
}
  .container-fluid {
    padding: 0 170px;
    margin: 0 auto;
    width: 100%;
}

@media screen and (max-width:1024px) {
  .container-fluid {
    padding: 0 45px;
}
}

@media screen and (max-width: 991px) {
    .nav {
        gap: 6px !important;
    }
}

@media screen and (max-width:767px) {
  .container-fluid {
    padding: 0 24px;
}
.photographs {
    padding: 30px 0;
}
}

/* page scroll css */


::-webkit-scrollbar {
    width: 20px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb {
    background: #c5a059;
    border-radius: 20px;
    border: 2px solid #f5f5f5;
}

::-webkit-scrollbar-thumb:hover {
    background: #b08c47;
}

/* Firefox */
html {
    /* scrollbar-width: thin; */
    scrollbar-color: #c5a059 #f5f5f5;
}

.tab-main-content p{
  text-align: justify;
}


