/* =========================================================
   BLAC Restaurant & Lounge — home page
   Bootstrap 5 build, matched to the reference layout
   Reference metrics taken at a 1440px viewport:
     content container 1100px · header 110px · hero video 801px
     section padding 160px · body copy 19px/29px
   ========================================================= */

:root{
  --bg:          #0a0a0a;
  --panel:       #0f1d22;
  --panel-2:     rgba(17,29,34,.63);
  --deep:        #0b1315;
  --gold:        #c9ab81;
  --gold-dark:   #9c7c57;
  --gold-rule:   #715b3e;
  --quote:       #afb8b8;
  --text:        #ffffff;

  --f-body:  'Josefin Sans', sans-serif;
  --f-head:  'Josefin Sans', sans-serif;      /* stand-in for Caviar Dreams Bold */
  --f-label: 'Barlow Condensed', sans-serif;  /* stand-in for Open Sans Condensed */
  --f-script:'Miniver', cursive;

  --header-h: 110px;
  --header-h-sticky: 76px;
  --container: 1100px;
}

/* ---------- base ---------- */
html{ scroll-behavior: smooth; }

body{
  position: relative;          /* containing block for the column grid */
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 19px;
  line-height: 29px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a{ color: var(--text); text-decoration: none; transition: color .3s ease; }
a:hover{ color: var(--gold); }
img{ max-width: 100%; height: auto; }
p{ margin: 19px 0 0; }
::selection{ background: var(--gold); color: #0a0a0a; }

.container{ max-width: calc(var(--container) + 30px); }

/* ---------- decorative column grid ----------
   Two systems, matching the reference:
   1. five equal columns inset 110px from each edge, divided by dark
      #21221e rules that sit BEHIND the content (panels cover them)
   2. two gold #715b3e rules, fixed 110px in from each viewport edge,
      drawn ABOVE everything except the header
*/
.grid-lines{
  position: absolute;
  top: 0; left: 110px;
  width: calc(100% - 220px);
  height: 100%;
  display: flex;
  pointer-events: none;
  z-index: 0;
}
.grid-lines i{ flex: 1 1 20%; height: 100%; }
.grid-lines i + i{ border-left: 1px solid #21221e; }

.edge-line{
  position: fixed;
  top: 0;
  width: 0;
  height: 100vh;
  border-left: 1px solid var(--gold-rule);
  pointer-events: none;
  z-index: 200;
}
.edge-line-l{ left: 110px; }
.edge-line-r{ right: 110px; }

/* =========================================================
   TYPOGRAPHY BLOCKS
   ========================================================= */
.tagline{
  display: block;
  font-family: var(--f-script);
  font-size: 19px;
  line-height: 28px;
  letter-spacing: .04em;
  color: var(--gold);
  margin-bottom: 13px;
}

.sec-title{ text-align: center; }

.title-holder{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.decor svg{ overflow: visible; display: block; }
.decor path{
  fill: none;
  stroke: var(--gold-dark);
  stroke-width: 1;
  stroke-miterlimit: 10;
  stroke-dasharray: 46;
  stroke-dashoffset: 46;
  transition: stroke-dashoffset 1s ease .35s;
}
.is-visible .decor path{ stroke-dashoffset: 0; }
.decor + .st-title{ margin-top: 0; }

.st-title{
  font-family: var(--f-head);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.st-sm{ font-size: 19px; letter-spacing: .23em; line-height: 29px; max-width: 420px; }
.st-md{ font-size: 28px; letter-spacing: .23em; line-height: 38px; }
.st-lg{ font-size: 41px; letter-spacing: .23em; line-height: 51px; }
.st-xl{ font-size: 48px; letter-spacing: .22em; line-height: 58px; }
.st-lg, .st-xl, .st-md{ text-indent: .23em; }

/* ---------- outline button ---------- */
.btn-line{
  display: inline-block;
  font-family: var(--f-label);
  font-weight: 300;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: .36em;
  text-indent: .36em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  padding: 9px 39px;
  border: .8px solid var(--gold);
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color .4s ease;
}
.btn-line::before{
  content:'';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform .45s cubic-bezier(.19,1,.22,1);
  z-index: -1;
}
.btn-line:hover{ color: #0a0a0a; }
.btn-line:hover::before{ transform: translateY(0); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  background: transparent;
  border-bottom: .8px solid var(--gold-rule);
  transition: background .45s ease, backdrop-filter .45s ease, border-color .45s ease;
}
.header-inner{
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding: 0 38px;
  transition: height .45s cubic-bezier(.19,1,.22,1);
}
.site-header.is-stuck{
  background: rgba(10,10,10,.94);
  backdrop-filter: blur(8px);
}
.site-header.is-stuck .header-inner{ height: var(--header-h-sticky); }

.brand img{ height: 32px; width: auto; transition: height .45s ease; }
.site-header.is-stuck .brand img{ height: 26px; }

.main-nav{ margin-left: 15px; }
.main-nav ul{ list-style: none; margin: 0; padding: 0; display: flex; }
.main-nav > ul > li{ position: relative; }
.main-nav > ul > li > a{
  display: block;
  font-family: var(--f-label);
  font-weight: 300;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: .36em;
  text-transform: uppercase;
  padding: 40px 27px 40px 69px;
  position: relative;
  transition: color .3s ease, padding .45s ease;
}
.site-header.is-stuck .main-nav > ul > li > a{ padding-top: 24px; padding-bottom: 24px; }
.main-nav > ul > li > a::after{
  content:'';
  position: absolute;
  left: 69px; bottom: 34px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s cubic-bezier(.19,1,.22,1);
}
.main-nav > ul > li > a:hover::after{ width: calc(100% - 96px); }

.main-nav .sub{
  position: absolute;
  top: 100%; left: 60px;
  min-width: 200px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.07);
  padding: 12px 0;
  display: block;
  opacity: 0; visibility: hidden;
  transform: translateY(14px);
  transition: all .35s cubic-bezier(.19,1,.22,1);
}
.main-nav .has-sub:hover .sub{ opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav .sub a{
  display: block;
  padding: 7px 26px;
  font-family: var(--f-label);
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.burger{
  margin-left: auto;
  background: none;
  border: 0;
  padding: 0;
  width: 37px; height: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}
.burger span{
  display: block;
  height: 1px;
  width: 37px;
  background: var(--gold);
  transition: width .35s ease;
}
.burger:hover span:nth-child(2){ width: 24px; }
.burger:hover span:nth-child(3){ width: 30px; }

/* ---------- side menu ---------- */
.side-menu{ background: var(--panel); width: 380px; border: 0; }
.side-menu .side-close{
  background: none; border: 0; color: var(--gold); font-size: 17px;
  transition: transform .35s ease;
}
.side-menu .side-close:hover{ transform: rotate(90deg); }
.side-logo{ height: 40px; width: auto; margin-bottom: 38px; }
.side-nav{ list-style: none; padding: 0; margin: 0 0 44px; }
.side-nav li{ margin-bottom: 8px; }
.side-nav a{
  font-family: var(--f-label);
  font-size: 15px;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.side-text{ margin: 0 0 4px; }

/* social icons */
.socials{ list-style: none; padding: 0; margin: 22px 0 0; display: flex; gap: 6px; }
.socials a{
  width: 71px; height: 71px;
  border-radius: 3px;
  background: var(--deep);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  transition: background .35s ease, color .35s ease, transform .35s ease;
}
.socials a:hover{ background: var(--gold); color: var(--deep); transform: translateY(-3px); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  margin-top: var(--header-h);
  height: 801px;
  max-height: calc(100vh - var(--header-h));
  overflow: hidden;
}
.hero-video{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-cover{
  position: absolute; inset: 0;
  background: rgba(0,0,0,.14);
  pointer-events: none;
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section{ position: relative; z-index: 2; padding: 160px 0 0; }

/* ---------- our story ---------- */
.story-text{ max-width: 1011px; margin: 0 auto; text-align: center; }
.story-images{ margin-top: 73px; }

/* art-deco lattice between the two photographs */
/* the SVG carries its own fill/stroke attributes — do not override them */
.deco-lattice{
  display: block;
  width: 66%;
  height: auto;
  aspect-ratio: 289 / 543;
  margin: 0 auto;
}

.img-hover{ margin: 0; overflow: hidden; }
.img-hover img{
  width: 100%;
  display: block;
  transition: transform 1.2s cubic-bezier(.19,1,.22,1);
}
.img-hover:hover img{ transform: scale(1.06); }

/* ---------- testimonials ---------- */
.section-quotes{ padding-top: 160px; }
.quotes-panel{ background: var(--panel); }
.quotes-grid{
  display: grid;
  grid-template-columns: 1fr minmax(0, 715px);
  align-items: center;
  gap: 0;
  max-width: 1427px;
  margin-left: auto;
}
.quotes-col{ padding: 80px 60px; display: flex; justify-content: center; }
.quote-carousel{ width: 100%; max-width: 490px; text-align: center; }
.quote-carousel blockquote{ margin: 0; }
.quote-mark{ display: inline-block; margin-bottom: 26px; }
.quote-mark path{ fill: none; stroke: var(--gold-dark); stroke-width: 1; }
.quote-carousel p{
  font-family: var(--f-script);
  font-size: 22px;
  line-height: 34px;
  letter-spacing: .04em;
  color: var(--quote);
  margin: 0;
}
.quote-carousel cite{
  display: block;
  margin-top: 31px;
  font-family: var(--f-head);
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .23em;
  text-indent: .23em;
  font-size: 19px;
  line-height: 29px;
  color: var(--gold);
}

.quote-arrow{
  width: 26px;
  opacity: 1;
  color: var(--gold);
}
.quote-arrow svg{ fill: none; stroke: currentColor; stroke-width: 1.4; }
.quote-arrow:hover{ color: #fff; }
.carousel-control-prev.quote-arrow{ left: -46px; }
.carousel-control-next.quote-arrow{ right: -46px; }

.quote-dots{
  position: static;
  margin: 34px 0 0;
  justify-content: center;
  gap: 22px;
}
.quote-dots [data-bs-target]{
  width: 12px; height: 35px;
  flex: 0 0 auto;
  background: transparent;
  border: 0;
  opacity: 1;
  margin: 0;
  text-indent: 0;
  font-family: var(--f-label);
  font-size: 14px;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  position: relative;
  transition: color .3s ease;
}
.quote-dots [data-bs-target]::after{
  content:'';
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .35s cubic-bezier(.19,1,.22,1);
}
.quote-dots [data-bs-target].active{ color: var(--gold); }
.quote-dots [data-bs-target].active::after{ transform: scaleX(1); }

.quotes-media{ align-self: stretch; overflow: hidden; }
.quotes-media img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s cubic-bezier(.19,1,.22,1);
}
.quotes-media:hover img{ transform: scale(1.05); }

/* ---------- split rows (bar / lounge) ---------- */
.split{
  max-width: calc(var(--container) + 30px);
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 507px 1fr;
  gap: 106px;
  align-items: center;
}
.split-media{ overflow: hidden; }
.split-media img{
  width: 100%;
  display: block;
  transition: transform 1.2s cubic-bezier(.19,1,.22,1);
}
.split-media:hover img{ transform: scale(1.05); }
.split-media-sm{ max-width: 418px; }

.split-body{
  text-align: center;
  max-width: 466px;
  margin: 0 auto;
}
.split-body-wide{ max-width: 541px; }
.split-body .btn-line{ margin-top: 38px; }
.section-bar{ padding-bottom: 50px; }
.section-lounge{ padding-bottom: 160px; }

/* ---------- menus ---------- */
.section-menus{
  background: var(--panel-2);
  padding: 150px 0;
  margin-top: 160px;
}
.section-menus .row{ --bs-gutter-x: 126px; }
.menu-block{ max-width: 424px; margin: 0 auto; }
.menu-block .btn-line{ margin-top: 38px; }
.menu-block-second{ margin-top: 84px; }
.menu-decor{
  width: 295px;
  margin-top: 78px;
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty{
  0%,100%{ transform: translateY(0); }
  50%    { transform: translateY(-12px); }
}

/* ---------- reservations ---------- */
.section-reserve{ padding: 150px 0 110px; }
.reserve-form{ max-width: 900px; margin: 66px auto 0; }
.reserve-form .form-control,
.reserve-form .form-select{
  background: transparent;
  border: 0;
  border-bottom: .8px solid rgba(201,171,129,.35);
  border-radius: 0;
  color: #fff;
  font-family: var(--f-label);
  font-size: 15px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 14px 2px;
  box-shadow: none;
  transition: border-color .4s ease;
}
.reserve-form .form-control::placeholder{ color: rgba(255,255,255,.45); }
.reserve-form .form-control:focus,
.reserve-form .form-select:focus{
  background: transparent;
  color: #fff;
  border-bottom-color: var(--gold);
  box-shadow: none;
}
.reserve-form .form-select option{ background: var(--panel); color: #fff; }
.reserve-form input[type="date"],
.reserve-form input[type="time"]{ color-scheme: dark; }
.reserve-form .btn-line{ margin-top: 26px; }
.form-note{
  font-family: var(--f-label);
  font-size: 14px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-top: 22px;
}

/* ---------- video band ---------- */
.section-video{
  position: relative;
  z-index: 2;
  background: var(--panel);
  padding: 40px 0;
  overflow: hidden;
}
.video-bg{
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.video-cover{
  position: absolute;
  inset: 40px 0;
  background: rgba(10,10,10,.5);
  pointer-events: none;
}
.video-play{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 98px; height: 98px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--gold);
  transition: color .4s ease, transform .5s cubic-bezier(.19,1,.22,1);
}
.video-play svg{ display: block; overflow: visible; }
.video-play .ring{ fill: none; stroke: currentColor; stroke-width: 1; }
.video-play path{ fill: none; stroke: currentColor; stroke-width: 1; }
.video-play:hover{ color: #fff; transform: translate(-50%, -50%) scale(1.06); }
.ring-pulse{
  transform-origin: 50% 50%;
  animation: ringPulse 2.8s cubic-bezier(.19,1,.22,1) infinite;
}
@keyframes ringPulse{
  0%   { transform: scale(1);    opacity: .6; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}
/* the reveal transform must not fight the centring transform */
.video-play.reveal{ transform: translate(-50%, calc(-50% + 30px)); }
.video-play.reveal.is-visible{ transform: translate(-50%, -50%); }

.video-modal .modal-content{
  background: #000;
  border: 0;
  border-radius: 0;
}
.video-modal video{ width: 100%; display: block; }
.video-modal .modal-backdrop, .modal-backdrop.show{ opacity: .92; }
.video-modal-close{
  position: absolute;
  top: -44px; right: 0;
  width: 34px; height: 34px;
  background: none;
  border: 0;
  color: var(--gold);
  font-size: 17px;
  transition: transform .35s ease;
}
.video-modal-close:hover{ transform: rotate(90deg); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ position: relative; z-index: 2; }
.footer-top{ padding: 130px 0 144px; }
.footer-logo{ height: 64px; width: auto; }
.footer-top .sep{
  display: block;
  width: 41px; height: 1px;
  background: var(--gold-dark);
  margin: 46px auto 0;
}
.footer-top p{ margin: 25px 0 0; }
.footer-top .hours strong{ font-weight: 400; color: #fff; }
.footer-top a{ color: var(--muted, rgba(255,255,255,.68)); }
.footer-top a:hover{ color: var(--gold); }
.follow{
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 46px 0 0;
}
.site-footer .socials{ margin-top: 26px; }

.footer-bottom{
  background: var(--deep);
  padding: 46px 0;
}
.footer-bottom p{ margin: 0; font-size: 17px; }
.footer-bottom .credit{
  margin-top: 10px;
  font-family: var(--f-label);
  font-size: 14px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* ---------- back to top ---------- */
.back-to-top{
  position: fixed;
  right: 28px; bottom: 28px;
  width: 46px; height: 46px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border: .8px solid rgba(201,171,129,.5);
  background: rgba(10,10,10,.75);
  color: var(--gold);
  opacity: 0; visibility: hidden;
  transform: translateY(14px);
  transition: all .4s cubic-bezier(.19,1,.22,1);
  z-index: 110;
}
.back-to-top.is-on{ opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover{ background: var(--gold); color: #0a0a0a; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal{
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 1s cubic-bezier(.19,1,.22,1), transform 1s cubic-bezier(.19,1,.22,1);
  will-change: opacity, transform;
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ opacity: 1; transform: none; transition: none; }
  .decor path{ stroke-dashoffset: 0; }
  .menu-decor{ animation: none; }
}

/* =========================================================
   RESPONSIVE
   -----------------------------------------------------------
   >=1400  full desktop, as measured off the reference
   1200    laptop      — tighter columns, nav still inline
   992     small laptop / landscape tablet — burger menu
   768     tablet      — split rows and the quote panel stack
   576     mobile      — everything single column
   -----------------------------------------------------------
   The menus row widens its gutter only where the container has
   slack for it. Below 1200 the container is narrower than its
   max-width, so a gutter over 24px pushes the row past the
   viewport and creates a horizontal scrollbar.
   ========================================================= */

/* ---------- laptop ---------- */
@media (max-width: 1399.98px){
  .quotes-grid{ grid-template-columns: 1fr minmax(0, 52%); }
  .split{ grid-template-columns: 44% 1fr; gap: 60px; }
  .section-menus .row{ --bs-gutter-x: 60px; }
  .quotes-col{ padding: 80px 48px; }
}

/* the reference drops both line systems below 1024px */
@media (max-width: 1024px){
  .grid-lines, .edge-line{ display: none; }
}

/* ---------- small laptop / landscape tablet ---------- */
@media (max-width: 1199.98px){
  :root{ --header-h: 88px; --header-h-sticky: 70px; }
  .header-inner{ padding: 0 24px; }

  .section{ padding-top: 110px; }
  .section-menus{ margin-top: 110px; padding: 110px 0; }
  .section-lounge{ padding-bottom: 110px; }
  .section-reserve{ padding: 110px 0 90px; }
  .section-menus .row{ --bs-gutter-x: 24px; }   /* prevents x-overflow */

  .st-lg{ font-size: 34px; line-height: 44px; }
  .st-xl{ font-size: 38px; line-height: 48px; }

  .hero{ height: 60vw; min-height: 380px; }
  .split{ gap: 44px; }
  .video-bg{ height: 440px; }
}

/* ---------- tablet ---------- */
@media (max-width: 991.98px){
  body{ font-size: 17px; line-height: 27px; }

  .section{ padding-top: 90px; }
  .section-menus{ margin-top: 90px; padding: 90px 0; }
  .section-lounge{ padding-bottom: 90px; }
  .section-reserve{ padding: 90px 0 70px; }
  .footer-top{ padding: 80px 0 70px; }

  .quotes-grid{ grid-template-columns: 1fr; }
  .quotes-col{ padding: 70px 40px; order: 2; }
  .quotes-media{ order: 1; max-height: 420px; }
  .quote-carousel{ padding: 0 34px; }           /* room for the arrows */
  .carousel-control-prev.quote-arrow{ left: 0; }
  .carousel-control-next.quote-arrow{ right: 0; }

  .split{ grid-template-columns: 1fr; gap: 44px; }
  .split-media, .split-media-sm{ max-width: 520px; margin: 0 auto; }
  .split-body, .split-body-wide{ max-width: 560px; }
  .section-bar{ padding-bottom: 0; }

  .story-images{ margin-top: 54px; }
  .menu-block-second{ margin-top: 64px; }
  .menu-decor{ width: 220px; margin-top: 54px; }

  .video-bg{ height: 340px; }
  .video-play, .video-play svg{ width: 74px; height: 74px; }
  .reserve-form{ margin-top: 48px; }
}

/* ---------- mobile ---------- */
@media (max-width: 767.98px){
  .section{ padding-top: 76px; }
  .section-menus{ margin-top: 76px; padding: 76px 0; }
  .section-lounge{ padding-bottom: 76px; }
  .section-reserve{ padding: 76px 0 60px; }

  .st-sm{ font-size: 17px; letter-spacing: .18em; }
  .st-md{ font-size: 22px; letter-spacing: .18em; line-height: 32px; }
  .st-lg{ font-size: 26px; letter-spacing: .18em; line-height: 36px; }
  .st-xl{ font-size: 28px; letter-spacing: .18em; line-height: 38px; }
  .tagline{ font-size: 18px; }
  .btn-line{ padding: 9px 26px; letter-spacing: .28em; text-indent: .28em; }

  /* the three story columns stack — Bootstrap sets width, so
     overriding flex-basis alone is not enough */
  .story-images > .col-4{ width: 100%; flex: 0 0 100%; max-width: 100%; }
  .story-images > .col-4 + .col-4{ margin-top: 26px; }
  .deco-lattice{ width: 46%; max-width: 220px; }

  .quotes-col{ padding: 56px 20px; }
  .quotes-media{ max-height: 300px; }
  .quote-carousel p{ font-size: 19px; line-height: 30px; }
  .quote-carousel cite{ font-size: 16px; letter-spacing: .18em; }

  .split-media, .split-media-sm{ max-width: 100%; }
  .menu-decor{ width: 180px; }
  .socials a{ width: 50px; height: 50px; font-size: 17px; }
  .side-menu{ width: 86vw; }

  .hero{ height: 66vw; min-height: 320px; }
  .video-bg{ height: 280px; }
  .video-play, .video-play svg{ width: 62px; height: 62px; }

  /* the lightbox close sits inside the frame once the dialog is full width */
  .video-modal-close{
    top: 8px; right: 8px;
    background: rgba(10,10,10,.6);
    border-radius: 50%;
    font-size: 15px;
  }
  .footer-bottom{ padding: 34px 0; }
  .footer-bottom p{ font-size: 15px; }
}

/* ---------- small phones ---------- */
@media (max-width: 400px){
  .st-lg{ font-size: 23px; letter-spacing: .14em; }
  .st-xl{ font-size: 25px; letter-spacing: .14em; }
  .btn-line{ padding: 9px 20px; letter-spacing: .22em; text-indent: .22em; font-size: 13px; }
  .quotes-col{ padding: 48px 14px; }
  .quote-carousel{ padding: 0 26px; }
  .socials{ gap: 4px; }
  .socials a{ width: 46px; height: 46px; }
  .header-inner{ padding: 0 16px; }
}
