/* ============================================
   LUANA — Hawaiian Luxury Resort
   Inspired by Halekulani × Four Seasons Hualalai
   ============================================ */

:root {
  --lagoon:     #0a7a7a;
  --lagoon-lt:  #12a3a3;
  --deep:       #083a3a;
  --sunset:     #d9714e;
  --sunset-lt:  #f0a882;
  --sand:       #f4e8d4;
  --sand-dk:    #e8d4b8;
  --palm:       #2a5c3e;
  --gold:       #c9a058;
  --gold-lt:    #e8d0a0;
  --cream:      #fdf7ee;
  --white:      #ffffff;
  --ink:        #0d2828;
  --text:       #2e1e14;
  --text-lt:    #6b5040;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  color: var(--text);
  overflow-x: hidden;
  background: var(--cream);
  cursor: none;
}

.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--lagoon-lt); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .25s, height .25s, opacity .25s;
  mix-blend-mode: multiply;
}
.cursor.grow { width: 32px; height: 32px; opacity: .4; }
@media (hover:none){ .cursor{ display:none; } }

.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .85s cubic-bezier(.22,1,.36,1),
              transform .85s cubic-bezier(.22,1,.36,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Tokens */
.tag-line    { font-size: 11px; letter-spacing: .38em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.title-serif { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px,6.5vw,70px); font-weight: 300; line-height: 1.08; letter-spacing: .04em; }
.title-serif em { font-style: italic; }
.gold-bar    { width: 44px; height: 1px; background: var(--gold); margin-bottom: 28px; }
.center      { text-align: center; }
.center .gold-bar { margin-left: auto; margin-right: auto; }
.body-prose  { font-size: 15px; font-weight: 300; line-height: 2.2; }

/* ============================================  HERO  */
.hero {
  position: relative; height: 100svh; min-height: 620px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(165deg, rgba(8,58,58,.72) 0%, rgba(10,122,122,.36) 45%, rgba(8,58,58,.82) 100%);
}
.hero-leaves {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden;
}
.hero-leaves svg { position: absolute; }

.hero-content {
  position: relative; z-index: 3; text-align: center; padding: 0 24px;
  animation: fadeUp 1.3s cubic-bezier(.22,1,.36,1) both;
}
@keyframes fadeUp {
  from { opacity:0; transform: translateY(26px); }
  to   { opacity:1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: .42em; font-weight: 200;
  color: rgba(232,208,160,.85); margin-bottom: 18px;
  animation: fadeUp 1.3s .15s cubic-bezier(.22,1,.36,1) both;
}
.hero-plumeria { width: 54px; margin: 0 auto 16px; animation: fadeUp 1.3s .25s cubic-bezier(.22,1,.36,1) both; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(88px,17vw,152px);
  font-weight: 300; font-style: italic; color: var(--white);
  letter-spacing: .06em; line-height: .92; margin-bottom: 22px;
  text-shadow: 0 6px 60px rgba(0,0,0,.22);
  animation: fadeUp 1.3s .32s cubic-bezier(.22,1,.36,1) both;
}
.hero-tagline {
  font-family: 'Noto Serif JP', serif; font-weight: 200;
  font-size: clamp(13px,2vw,17px); letter-spacing: .22em;
  color: rgba(255,255,255,.72); margin-bottom: 44px; line-height: 2;
  animation: fadeUp 1.3s .45s cubic-bezier(.22,1,.36,1) both;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 15px 40px;
  border: 1px solid rgba(201,160,88,.55);
  background: rgba(10,122,122,.2); backdrop-filter: blur(12px);
  color: var(--gold-lt); text-decoration: none;
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  transition: background .35s, border-color .35s, color .35s;
  animation: fadeUp 1.3s .58s cubic-bezier(.22,1,.36,1) both;
}
.hero-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
/* ============================================  HERO BADGE (FIXED)  */
/* ============================================  HERO BADGE (FIXED)  */
.hero-badge {
  position: absolute;
  bottom: 56px;
  right: 48px;
  width: 96px;
  height: 96px;
  z-index: 3;
  color: rgba(255,255,255,0.42);
  background: transparent;
  /* 文字だけを回転させる */
  animation: spinBadge 20s linear infinite, fadeUp 1.3s 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.badge-center {
  /* 親の回転の影響を受けないように配置 */
  position: absolute;
  top: 50%;
  left: 50%;
  /* translate(-50%, -50%) で正確な中心に固定 */
  /* ここに逆回転(spinRev)をかけることで、親の回転を打ち消して正面を向かせます */
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background-color: white; 
  border: 1px solid var(--gold-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  /* 逆回転のアニメーション */
  animation: spinRev 20s linear infinite;
}

.badge-center img {
  width: 80%; /* 余白を持たせてロゴを綺麗に見せる */
  height: 80%;
  object-fit: contain;
  display: block;
}

/* アニメーション定義：ここがポイント */
@keyframes spinBadge {
  /* 親は真ん中(translate)を維持したまま回る */
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes spinRev {
  /* 子は真ん中(translate)に固定したまま、親と逆方向に回って打ち消す */
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(-360deg); }
}
.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.32); font-size: 9px; letter-spacing: .38em;
}
.scroll-bar {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%  { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100%{ transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================  WAVE DIVIDER  */
.wave-divider { display: block; width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* ============================================  NAV  */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 52px; transition: background .4s, padding .4s;
}
#nav.solid {
  background: rgba(8,58,58,.94); backdrop-filter: blur(20px);
  padding: 15px 52px; border-bottom: 1px solid rgba(201,160,88,.15);
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-style: italic; font-weight: 300;
  color: var(--white); text-decoration: none; letter-spacing: .1em; transition: color .3s;
}
.nav-brand:hover { color: var(--gold-lt); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  text-decoration: none; padding: 8px 16px;
  color: rgba(255,255,255,.6); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; transition: color .25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.nav-btn { border: 1px solid rgba(201,160,88,.5); color: var(--gold-lt); margin-left: 8px; }
.nav-links a.nav-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.nav-hamburger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 26px; height: 1px; background: var(--white); transition: transform .3s, opacity .3s; }
.nav-hamburger.open span:first-child { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:last-child  { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  position: fixed; inset: 0; background: var(--deep); z-index: 190;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px; opacity: 0; pointer-events: none; transition: opacity .4s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mm-link { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-style: italic; color: var(--white); text-decoration: none; letter-spacing: .12em; transition: color .25s; }
.mm-link:hover { color: var(--gold-lt); }
.mm-reserve { font-family: 'Noto Sans JP', sans-serif; font-style: normal; font-size: 13px; border: 1px solid var(--gold); color: var(--gold) !important; padding: 13px 38px; letter-spacing: .22em; }

/* ============================================  MARQUEE  */
.marquee-wrap { background: linear-gradient(90deg, var(--lagoon), var(--lagoon-lt), var(--lagoon)); padding: 13px 0; overflow: hidden; }
.marquee-track { display: flex; white-space: nowrap; width: max-content; animation: marquee 24s linear infinite; }
.marquee-track span { font-size: 11px; letter-spacing: .32em; text-transform: uppercase; color: rgba(255,255,255,.85); padding: 0 22px; font-weight: 300; }
.marquee-dot { color: rgba(232,208,160,.8) !important; padding: 0 6px !important; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================  SECTIONS  */
.sec-sand {
  background: var(--sand); padding: 92px 52px;
  position: relative; overflow: hidden;
}
.sec-sand .tag-line   { color: var(--lagoon); }
.sec-sand .title-serif { color: var(--deep); }
.sec-sand .title-serif em { color: var(--lagoon); }
.sec-sand .gold-bar   { background: var(--lagoon-lt); }
.sec-sand .body-prose { color: var(--text-lt); }

.sec-deep {
  background: var(--deep); padding: 92px 52px;
  position: relative; overflow: hidden;
}
.sec-deep::before {
  content: ''; position: absolute; top: -80px; left: -80px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(10,122,122,.16) 0%, transparent 70%);
  pointer-events: none;
}
.sec-deep .tag-line    { color: var(--gold-lt); }
.sec-deep .title-serif { color: var(--white); }
.sec-deep .title-serif em { color: var(--gold-lt); }
.sec-deep .body-prose  { color: rgba(255,255,255,.6); }

.sec-lagoon {
  background: linear-gradient(140deg, var(--lagoon) 0%, #0d6060 100%);
  padding: 92px 52px; position: relative; overflow: hidden;
}
.sec-lagoon .tag-line    { color: var(--gold-lt); }
.sec-lagoon .title-serif { color: var(--white); }
.sec-lagoon .title-serif em { color: var(--gold-lt); }
.sec-lagoon .body-prose  { color: rgba(255,255,255,.65); }

.sec-sunset {
  background: linear-gradient(135deg, #b8543a 0%, var(--sunset) 50%, #e8a062 100%);
  padding: 114px 52px; text-align: center; position: relative; overflow: hidden;
}
.sec-sunset::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,.05) 0%, transparent 65%);
  pointer-events: none;
}
.sec-sunset .tag-line    { color: rgba(255,255,255,.6); }
.sec-sunset .title-serif { color: var(--white); }
.sec-sunset .title-serif em { color: rgba(255,255,255,.88); }

/* tropical leaf accent for sand sections */
.leaf-accent {
  position: absolute; pointer-events: none; opacity: .09;
}
.leaf-accent.br { bottom: -50px; right: -50px; width: 300px; transform: rotate(145deg); }
.leaf-accent.tl { top: -40px; left: -50px; width: 280px; transform: rotate(-30deg); }
.leaf-accent.tr { top: -30px; right: -40px; width: 240px; transform: rotate(40deg); }

/* ============================================  SERVICE split  */
.split-layout { display: flex; gap: 72px; align-items: center; }
.split-text   { flex: 1; }
.split-image  { flex: 0 0 420px; position: relative; }
.split-image img { width: 100%; height: 520px; object-fit: cover; display: block; border-radius: 4px; }
.img-corner-tl {
  position: absolute; top: -12px; right: -12px; width: 72px; height: 72px;
  border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); opacity: .5; pointer-events: none;
}
.img-corner-br {
  position: absolute; bottom: -12px; left: -12px; width: 72px; height: 72px;
  border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); opacity: .5; pointer-events: none;
}
.feature-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.feature-list li { display: flex; align-items: center; gap: 14px; font-size: 14px; letter-spacing: .08em; color: rgba(255,255,255,.52); }
.feature-list li .fi { color: var(--gold-lt); font-size: 10px; }

/* ============================================  ABOUT staggered  */
.stag-grid { display: grid; grid-template-columns: 1fr 180px 1fr; gap: 28px; align-items: center; margin: 52px 0; }
.stag-img { overflow: hidden; border-radius: 4px; }
.stag-img img { width: 100%; height: 370px; object-fit: cover; display: block; transition: transform .7s ease; }
.stag-img:hover img { transform: scale(1.05); }
.stag-top { transform: translateY(-22px); }
.stag-btm { transform: translateY(22px); }
.stag-mid  { text-align: center; }
.stag-quote { font-family: 'Noto Serif JP', serif; font-size: 14px; font-weight: 200; line-height: 2.6; letter-spacing: .07em; color: var(--lagoon); }
.stag-plumeria { width: 36px; margin: 0 auto 14px; opacity: .5; }

/* ============================================  GALLERY  */
.masonry { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 220px; gap: 10px; margin: 44px 0; }
.m-item { position: relative; overflow: hidden; border-radius: 4px; }
.m-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s ease, filter .5s ease; }
.m-item:hover img { transform: scale(1.06); filter: saturate(1.15) brightness(.88); }
.m-hover { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,58,58,.45), transparent); opacity: 0; transition: opacity .4s; }
.m-item:hover .m-hover { opacity: 1; }
.m-tall { grid-row: span 2; }
.m-wide { grid-column: span 2; }

/* ============================================  INSTAGRAM  */
.insta-btn {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 18px; padding: 16px 44px; border-radius: 4px;
  border: 1px solid var(--lagoon); color: var(--lagoon);
  text-decoration: none; font-size: 14px; letter-spacing: .15em;
  transition: background .35s, color .35s, border-color .35s;
}
.insta-btn i { font-size: 20px; }
.insta-btn:hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: var(--white); border-color: transparent; }

/* ============================================  SCHEDULE  */
.schedule-img img { width: 100%; max-width: 480px; height: auto; border-radius: 4px; box-shadow: 0 12px 40px rgba(8,58,58,.18); display: block; margin: 0 auto; }

/* ============================================  STAFF  */
.staff-layout { display: flex; gap: 72px; align-items: center; max-width: 1000px; margin: 0 auto; }
.staff-img-side { flex: 0 0 300px; text-align: center; position: relative; }
.staff-photo img { width: 270px; height: 270px; object-fit: cover; border-radius: 50%; border: 1px solid rgba(201,160,88,.3); box-shadow: 0 20px 60px rgba(0,0,0,.28); display: block; margin: 0 auto; }
.staff-plumeria { position: absolute; top: -20px; right: -10px; width: 58px; opacity: .5; }
.staff-cert { margin-top: 18px; font-size: 11px; letter-spacing: .16em; color: var(--gold-lt); line-height: 2; }
.staff-cert small { color: rgba(255,255,255,.3); font-size: 10px; }
.staff-text-side { flex: 1; }
.staff-name { font-family: 'Cormorant Garamond', serif; font-size: 62px; font-style: italic; font-weight: 300; color: var(--white); letter-spacing: .06em; line-height: 1; margin-bottom: 20px; }

/* ============================================  CTA  */
.cta-inner { max-width: 560px; margin: 0 auto; }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px,5.5vw,58px); font-weight: 300; line-height: 1.25; color: var(--white); margin-bottom: 38px; }
.cta-title em { font-style: italic; }
.cta-btn { display: inline-flex; align-items: center; gap: 16px; padding: 16px 48px; background: var(--ink); color: var(--gold-lt); text-decoration: none; font-size: 13px; letter-spacing: .26em; text-transform: uppercase; border-radius: 2px; transition: background .3s, transform .3s; }
.cta-btn:hover { background: var(--deep); transform: translateY(-3px); }
.cta-note { margin-top: 18px; font-size: 12px; letter-spacing: .12em; color: rgba(255,255,255,.55); }

/* ============================================  ACCESS  */
.access-grid { display: flex; gap: 40px; align-items: flex-start; max-width: 900px; margin: 36px auto 0; text-align: left; }
.access-info { flex: 0 0 260px; }
.access-row { padding: 18px 0; border-bottom: 1px solid rgba(8,58,58,.1); display: flex; flex-direction: column; gap: 4px; }
.access-label { font-size: 10px; letter-spacing: .3em; color: var(--lagoon); text-transform: uppercase; }
.access-val { font-size: 14px; color: var(--text); line-height: 1.9; font-weight: 300; }
.access-link { margin-top: 22px; display: inline-block; font-size: 12px; letter-spacing: .2em; color: var(--lagoon); text-decoration: none; transition: opacity .2s; }
.access-link:hover { opacity: .7; }
.access-map { flex: 1; }
.access-map iframe { width: 100%; height: 320px; border: 0; border-radius: 4px; filter: saturate(.85) hue-rotate(10deg); }

/* ============================================  FOOTER  */
footer { background: var(--deep); border-top: 1px solid rgba(201,160,88,.12); }
.footer-top { padding: 80px 40px 50px; text-align: center; }
.footer-plumeria { width: 48px; margin: 0 auto 18px; opacity: .45; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-style: italic; font-weight: 300; color: var(--white); letter-spacing: .1em; margin-bottom: 8px; }
.footer-sub { font-size: 11px; letter-spacing: .32em; color: var(--gold); margin-bottom: 36px; }
.footer-links { display: flex; justify-content: center; gap: 4px; flex-wrap: wrap; margin-bottom: 28px; }
.footer-links a { color: rgba(255,255,255,.3); text-decoration: none; font-size: 12px; letter-spacing: .16em; padding: 6px 14px; transition: color .25s; }
.footer-links a:hover { color: var(--white); }
.footer-insta { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; color: rgba(255,255,255,.4); font-size: 16px; text-decoration: none; transition: border-color .3s, color .3s; }
.footer-insta:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding: 20px; text-align: center; font-size: 11px; letter-spacing: .15em; color: rgba(255,255,255,.18); }

/* ============================================  RESPONSIVE  */
@media (max-width:920px){
  .sec-sand,.sec-deep,.sec-lagoon,.sec-sunset{ padding:76px 36px; }
  .split-layout{ flex-direction:column-reverse; gap:44px; }
  .split-image{ flex:none; width:100%; }
  .split-image img{ height:340px; }
  .staff-layout{ flex-direction:column; gap:36px; }
  .staff-img-side{ flex:none; }
  .staff-text-side{ text-align:center; }
  .staff-text-side .gold-bar{ margin:0 auto 28px; }
  .stag-grid{ grid-template-columns:1fr; gap:0; }
  .stag-top,.stag-btm{ transform:none; }
  .stag-img img{ height:260px; }
  .stag-mid{ padding:28px 0; }
  .access-grid{ flex-direction:column; }
  .access-info{ flex:none; width:100%; }
  .masonry{ grid-template-columns:repeat(2,1fr); }
  .m-wide{ grid-column:span 2; }
}
@media (max-width:640px){
  #nav{ padding:18px 22px; } #nav.solid{ padding:13px 22px; }
  .nav-links{ display:none; }
  .nav-hamburger{ display:flex; }
  .masonry{ grid-auto-rows:155px; }
  .hide-sp{ display:none; }
  .m-wide{ grid-column:span 1; }
  .hero-badge{ width:72px; height:72px; right:16px; bottom:48px; }
  .staff-name{ font-size:46px; }
  .footer-logo{ font-size:38px; }
  .img-corner-tl,.img-corner-br{ display:none; }
}
/* ============================================  GALLERY CAROUSEL  */
.carousel-wrap {
  position: relative; margin: 44px 0 0;
}
.carousel-track {
  display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 6px;
  cursor: grab; user-select: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }

.c-item {
  flex: 0 0 300px; height: 260px; position: relative;
  overflow: hidden; border-radius: 4px; scroll-snap-align: start;
  transition: flex-basis .35s ease;
}
.c-item.c-tall { flex: 0 0 300px; height: 260px; }
.c-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s ease, filter .5s ease; pointer-events: none; }
.c-item:hover img { transform: scale(1.06); filter: saturate(1.15) brightness(.88); }
.c-hover {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,58,58,.45), transparent);
  opacity: 0; transition: opacity .4s;
}
.c-item:hover .c-hover { opacity: 1; }

/* 矢印 */
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(201,160,88,.45);
  background: rgba(8,58,58,.72); backdrop-filter: blur(12px);
  color: var(--gold-lt); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, border-color .3s, opacity .3s; opacity: .8;
}
.carousel-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); opacity: 1; }
.carousel-arrow.prev { left: -22px; }
.carousel-arrow.next { right: -22px; }
.carousel-arrow:disabled { opacity: .2; pointer-events: none; }

/* ドット */
.carousel-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 22px;
}
.carousel-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.18); transition: background .3s, transform .3s;
  cursor: pointer;
}
.carousel-dots span.active { background: var(--gold); transform: scale(1.3); }

@media (max-width:640px){
  .carousel-arrow.prev { left: 4px; }
  .carousel-arrow.next { right: 4px; }
  .c-item { flex: 0 0 240px; height: 210px; }
  .c-item.c-tall { flex: 0 0 240px; height: 210px; }
}

