/* ============================================================
   SERENDIB — Sri Lanka Travel (JP)
   Editorial / premium homepage styles
   ============================================================ */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&family=Noto+Sans+JP:wght@400;500;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,500&display=swap');

/* ============================================================
   THEME TOKENS
   ============================================================ */
:root {
  /* flag (default): maroon / saffron / green */
  --c-bg:         #F5EEE1;
  --c-paper:      #FFFCF6;
  --c-ink:        #2A1C19;
  --c-ink-soft:   #6E5A50;
  --c-primary:    #7E1834;
  --c-primary-deep:#4C0E1E;
  --c-accent:     #D29230;
  --c-accent-soft:#E6C77E;
  --c-secondary:  #1E6E5C;
  --c-line:       rgba(42, 28, 25, 0.13);
  --c-line-strong:rgba(42, 28, 25, 0.24);
  --c-hero-tint:  10, 8, 14;

  --font-jp-serif: 'Shippori Mincho', serif;
  --font-jp-sans:  'Noto Sans JP', sans-serif;
  --font-latin:    'Cormorant Garamond', serif;

  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 72px);
  --r: 4px;
}

:root[data-theme="tea"] {
  --c-bg:         #F1EFE3;
  --c-paper:      #FFFFFF;
  --c-ink:        #1F271E;
  --c-ink-soft:   #5A6354;
  --c-primary:    #1F5C44;
  --c-primary-deep:#103526;
  --c-accent:     #C2952C;
  --c-accent-soft:#E2C988;
  --c-secondary:  #8A6A39;
  --c-line:       rgba(31, 39, 30, 0.13);
  --c-line-strong:rgba(31, 39, 30, 0.24);
  --c-hero-tint:  8, 16, 12;
}

:root[data-theme="sunset"] {
  --c-bg:         #FAEDE1;
  --c-paper:      #FFF8F0;
  --c-ink:        #38201A;
  --c-ink-soft:   #835A4B;
  --c-primary:    #A8351B;
  --c-primary-deep:#5C1A2E;
  --c-accent:     #E0982A;
  --c-accent-soft:#F2CB87;
  --c-secondary:  #9C4A21;
  --c-line:       rgba(56, 32, 26, 0.13);
  --c-line-strong:rgba(56, 32, 26, 0.24);
  --c-hero-tint:  20, 8, 10;
}

:root[data-theme="monsoon"] {
  --c-bg:         #EAEEEB;
  --c-paper:      #FFFFFF;
  --c-ink:        #142420;
  --c-ink-soft:   #4E6058;
  --c-primary:    #0E4D45;
  --c-primary-deep:#05312B;
  --c-accent:     #C2A02C;
  --c-accent-soft:#E4D08A;
  --c-secondary:  #1B6E5E;
  --c-line:       rgba(20, 36, 32, 0.13);
  --c-line-strong:rgba(20, 36, 32, 0.24);
  --c-hero-tint:  4, 18, 16;
}

/* ============================================================
   BASE
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--font-jp-sans);
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
  transition: background-color .5s ease, color .5s ease;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

/* eyebrow / latin caps */
.eyebrow {
  font-family: var(--font-latin);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-primary);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--c-accent);
}
.eyebrow.center::after {
  content: "";
  width: 30px; height: 1px;
  background: var(--c-accent);
}

.kicker-num {
  font-family: var(--font-latin);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--c-accent);
  font-weight: 600;
}

h1, h2, h3, h4 { font-family: var(--font-jp-serif); font-weight: 600; line-height: 1.32; margin: 0; letter-spacing: 0.02em; }

.section { padding-block: clamp(64px, 9vw, 132px); }

/* generic button */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-jp-sans);
  font-size: 14px; font-weight: 700; letter-spacing: 0.08em;
  padding: 16px 30px;
  border: 1px solid transparent;
  border-radius: 2px;
  white-space: nowrap;
  transition: all .35s cubic-bezier(.2,.7,.3,1);
}
.btn .arr { font-family: var(--font-latin); font-size: 18px; transition: transform .35s; }
.btn:hover .arr { transform: translateX(5px); }
.btn-primary { background: var(--c-primary); color: #fff; }
.btn-primary:hover { background: var(--c-primary-deep); }
.btn-ghost { background: transparent; color: var(--c-ink); border-color: var(--c-line-strong); }
.btn-ghost:hover { border-color: var(--c-primary); color: var(--c-primary); }
.btn-light { background: rgba(255,255,255,.12); color:#fff; border-color: rgba(255,255,255,.5); backdrop-filter: blur(6px); }
.btn-light:hover { background:#fff; color: var(--c-ink); }

/* ============================================================
   HEADER
   ============================================================ */
.topbar {
  background: var(--c-primary-deep);
  color: rgba(255,255,255,.85);
  font-size: 12px; letter-spacing: .04em;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 20px; }
.topbar .tb-left { display: flex; gap: 22px; align-items: center; }
.topbar .tb-left span { display: inline-flex; align-items: center; gap: 7px; }
.topbar .tb-right { display: flex; gap: 18px; align-items: center; }
.topbar a:hover { color: #fff; }
.lang { display:flex; gap: 2px; align-items:center; font-family: var(--font-latin); letter-spacing:.12em; }
.lang b { color:#fff; }
.lang span { opacity:.5; }

.site-head {
  background: var(--c-paper);
  border-bottom: 1px solid var(--c-line);
  transition: background-color .5s ease;
}
.site-head .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 86px; gap: 28px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand-logo { width: 54px; height: 46px; object-fit: contain; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; gap: 2px; }
.brand .mark {
  font-family: var(--font-jp-serif);
  font-size: 25px; font-weight: 700; letter-spacing: .12em;
  color: var(--c-primary);
  line-height: 1;
}
.brand .sub { font-family: var(--font-latin); font-size: 10px; letter-spacing: .2em; color: var(--c-ink-soft); text-transform: uppercase; white-space: nowrap; }

.nav { display: flex; gap: 30px; align-items: center; }
.nav a {
  font-size: 14px; font-weight: 500; letter-spacing: .03em;
  position: relative; padding: 6px 0; color: var(--c-ink);
  white-space: nowrap;
}
.nav a::after {
  content:""; position:absolute; left:0; bottom:0; height:1.5px; width:0;
  background: var(--c-primary); transition: width .3s ease;
}
.nav a:hover { color: var(--c-primary); }
.nav a:hover::after { width: 100%; }
.head-cta { display:flex; align-items:center; gap: 24px; }
.head-tel { display:flex; flex-direction:column; align-items:flex-end; line-height:1.2; }
.head-tel .t-label { font-size: 10.5px; letter-spacing:.1em; color: var(--c-ink-soft); }
.head-tel .t-num { font-family: var(--font-latin); font-size: 25px; font-weight:600; color: var(--c-primary); letter-spacing:.01em; white-space: nowrap; }
.head-tel .t-hours { font-size: 10.5px; color: var(--c-ink-soft); letter-spacing:.04em; }

/* ---- icon nav bar (HIS style) ---- */
.mainnav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--c-paper) 92%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--c-line);
  box-shadow: 0 8px 24px -20px rgba(40,20,15,.5);
  transition: background-color .5s ease;
}
.mainnav-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; justify-content: center; align-items: stretch;
  flex-wrap: wrap;
}
.mainnav-list > li { display: flex; }
.mainnav-list a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  padding: 13px clamp(16px, 2.2vw, 34px) 12px;
  position: relative;
  color: var(--c-ink);
  transition: color .25s;
}
.mainnav-list a::after {
  content:""; position:absolute; left:50%; right:50%; bottom:0; height:2.5px;
  background: var(--c-primary); transition: left .3s ease, right .3s ease;
}
.mainnav-list a:hover { color: var(--c-primary); }
.mainnav-list a:hover::after,
.mainnav-list a.active::after { left: 16px; right: 16px; }
.mainnav-list a.active { color: var(--c-primary); }
.mn-ico { width: 26px; height: 26px; }
.mn-ico svg { width: 100%; height: 100%; display:block; }
.mn-label { font-size: 13.5px; font-weight: 500; letter-spacing: .04em; white-space: nowrap; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: min(94vh, 920px); display: flex; align-items: center; overflow: hidden; padding-block: clamp(40px, 6vw, 80px); }
.hero .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero image-slot { width: 100%; height: 100%; }
.hero .scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(var(--c-hero-tint),.82) 0%, rgba(var(--c-hero-tint),.5) 38%, rgba(var(--c-hero-tint),.2) 64%, rgba(var(--c-hero-tint),.45) 100%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1fr minmax(360px, 440px); gap: clamp(32px, 5vw, 76px); align-items: center; }
.hero-eyebrow {
  font-family: var(--font-latin); text-transform: uppercase; letter-spacing: .5em;
  font-size: 14px; color: var(--c-accent-soft); font-weight: 600;
  display:flex; align-items:center; gap:16px; margin-bottom: 24px;
}
.hero-eyebrow::before { content:""; width:46px; height:1px; background: var(--c-accent-soft); }
.hero h1 {
  color: #fff;
  font-family: var(--font-jp-sans);
  font-size: clamp(21px, 5vw, 61px);
  line-height: 1.7; font-weight: 400;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero h1 em { font-style: normal; color: var(--c-accent-soft); }
.hero .lead {
  color: rgba(255,255,255,.9); font-size: clamp(15px, 1.4vw, 18px); line-height: 1.95;
  max-width: 42ch; margin-top: 24px;
}
.hero-link {
  display:inline-flex; align-items:center; gap:12px; margin-top: 30px;
  color:#fff; font-size:15px; font-weight:700; letter-spacing:.06em;
  border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: 6px;
  transition: gap .3s, border-color .3s;
}
.hero-link:hover { gap: 18px; border-color: var(--c-accent-soft); color: var(--c-accent-soft); }
.hero-link .arr { font-family: var(--font-latin); font-size: 18px; }

/* ===== creative tabbed search card ===== */
.searchcard {
  background: var(--c-paper);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 5px;
  box-shadow: 0 50px 100px -40px rgba(0,0,0,.6);
  display: grid; grid-template-columns: 88px 1fr;
  overflow: hidden;
}
.sc-tabs { display: flex; flex-direction: column; background: var(--c-bg); border-right: 1px solid var(--c-line); }
.sc-tab {
  flex: 1; min-height: 64px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  padding: 8px 4px;
  border: none; border-bottom: 1px solid var(--c-line);
  background: transparent; color: var(--c-ink-soft);
  font-family: var(--font-jp-serif); font-size: 11.5px; font-weight: 600; line-height: 1.25; letter-spacing: .02em;
  cursor: pointer; transition: background .25s, color .25s;
}
.sc-tab:last-child { border-bottom: none; }
.sc-tab .ti { width: 22px; height: 22px; }
.sc-tab .ti svg { width: 100%; height: 100%; display:block; }
.sc-tab:not(.active):hover { background: var(--c-paper); color: var(--c-primary); }
.sc-tab.active { background: var(--c-primary); color: #fff; }
.sc-tab.active .ti { color: var(--c-accent-soft); }

.sc-body { padding: clamp(20px, 1.8vw, 28px); }
.sc-head { margin-bottom: 16px; }
.sc-title { font-family: var(--font-jp-serif); font-size: 21px; font-weight: 700; color: var(--c-primary); display: flex; align-items: center; gap: 9px; }
.sc-q { font-size: 22px; line-height: 1; color: var(--c-accent); }

.sc-panel { display: none; flex-direction: column; gap: 11px; }
.sc-panel.active { display: flex; }

.scf {
  border: 1px solid var(--c-line-strong); border-radius: 3px;
  padding: 9px 14px; display: flex; flex-direction: column; gap: 2px;
  cursor: pointer; transition: border-color .2s, box-shadow .2s; background: var(--c-paper);
}
.scf:hover { border-color: var(--c-primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--c-primary) 10%, transparent); }
.scf label { font-family: var(--font-latin); font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--c-accent); font-weight: 600; }
.scf .v { font-size: 14.5px; font-weight: 500; color: var(--c-ink); line-height: 1.4; }
.scf .v.muted { color: var(--c-ink-soft); font-weight: 400; }
.scf-input {
  font-size: 14.5px; font-weight: 500; color: var(--c-ink); line-height: 1.4;
  border: none; outline: none; background: transparent; width: 100%; padding: 0;
  font-family: inherit; cursor: pointer; -webkit-appearance: none; appearance: none;
}
.scf-input::placeholder { color: var(--c-ink-soft); font-weight: 400; }
.scf-form { display: flex; flex-direction: column; gap: 11px; }
.scf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }

.sc-seg { display: flex; gap: 6px; margin-bottom: 2px; }
.sc-seg button {
  flex: 1; padding: 8px 4px; border: 1px solid var(--c-line-strong); background: transparent;
  border-radius: 3px; font-size: 12.5px; font-weight: 600; color: var(--c-ink-soft);
  cursor: pointer; transition: all .2s; font-family: var(--font-jp-sans);
}
.sc-seg button.on { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

.sc-go {
  margin-top: 6px; width: 100%; padding: 15px;
  background: var(--c-primary); color: #fff; border: none; border-radius: 3px;
  font-family: var(--font-jp-sans); font-weight: 700; letter-spacing: .12em; font-size: 15px;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  cursor: pointer; transition: background .3s, transform .2s;
}
.sc-go .g-q { font-size: 18px; }
.sc-go:hover { background: var(--c-primary-deep); }
.sc-go:active { transform: scale(.99); }

/* ============================================================
   INTRO / STATEMENT
   ============================================================ */
.intro { background: var(--c-bg); }
.intro .grid { display:grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.intro h2 { font-size: clamp(30px, 3.6vw, 50px); line-height: 1.34; }
.intro h2 .hl { color: var(--c-primary); }
.intro .body p { color: var(--c-ink-soft); font-size: 17px; line-height: 2.1; margin: 0 0 22px; }
.intro .body p:first-child::first-letter {
  font-family: var(--font-jp-serif); font-size: 3.4em; float:left; line-height:.86;
  margin: 6px 14px 0 0; color: var(--c-primary); font-weight: 700;
}
.stats { display:flex; gap: clamp(28px,5vw,64px); margin-top: 44px; flex-wrap: wrap; }
.stat .n { font-family: var(--font-latin); font-size: 52px; font-weight: 600; color: var(--c-primary); line-height: 1; }
.stat .n small { font-size: 26px; }
.stat .l { font-size: 13px; color: var(--c-ink-soft); letter-spacing:.04em; margin-top: 6px; }

/* ============================================================
   SECTION HEADER (shared)
   ============================================================ */
.sec-head { display:flex; align-items:flex-end; justify-content:space-between; gap: 30px; margin-bottom: clamp(36px, 5vw, 64px); flex-wrap: wrap; }
.sec-head .left { max-width: 60ch; }
.sec-head h2 { font-size: clamp(28px, 3.8vw, 52px); margin-top: 18px; }
.sec-head h2 em { font-style: normal; color: var(--c-primary); }
.sec-head .desc { color: var(--c-ink-soft); margin-top: 16px; font-size: 16px; max-width: 52ch; }

/* ============================================================
   PACKAGES
   ============================================================ */
.packages { background: var(--c-paper); }
.pkg-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 3.4vw, 48px); }
.pkg {
  position: relative; display:flex; flex-direction:column;
  border: 1px solid var(--c-line); background: var(--c-bg);
  transition: transform .5s cubic-bezier(.2,.7,.3,1), box-shadow .5s, border-color .5s;
}
.pkg:hover { transform: translateY(-6px); box-shadow: 0 40px 80px -50px rgba(40,20,15,.55); border-color: var(--c-line-strong); }
.pkg .pkg-img { position: relative; aspect-ratio: 16/11; overflow:hidden; }
.pkg .pkg-img image-slot { width:100%; height:100%; }
.pkg .badge {
  position:absolute; top:16px; left:16px; z-index:2;
  background: var(--c-accent); color: var(--c-primary-deep);
  font-size: 11px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  font-family: var(--font-latin); padding: 7px 13px;
}
.pkg .pkg-body { padding: 28px 30px 30px; display:flex; flex-direction:column; flex:1; }
.pkg .route { display:flex; align-items:center; gap:9px; font-family: var(--font-latin); font-size:13px; letter-spacing:.16em; text-transform:uppercase; color: var(--c-secondary); font-weight:600; }
.pkg .route .dot { width:5px; height:5px; border-radius:50%; background: var(--c-accent); }
.pkg h3 { font-size: 25px; margin: 14px 0 0; line-height:1.4; }
.pkg .hl-list { list-style:none; padding:0; margin: 16px 0 0; display:flex; flex-wrap:wrap; gap: 8px; }
.pkg .hl-list li { font-size: 12.5px; color: var(--c-ink-soft); border:1px solid var(--c-line); border-radius: 100px; padding: 4px 13px; }
.pkg .pkg-foot { margin-top: auto; padding-top: 24px; display:flex; align-items:flex-end; justify-content:space-between; border-top: 1px solid var(--c-line); margin-top: 24px; }
.pkg .meta { font-size:12.5px; color: var(--c-ink-soft); letter-spacing:.03em; }
.pkg .meta b { color: var(--c-ink); font-weight:700; }
.pkg .price { text-align:right; }
.pkg .price .from { font-size:11px; color: var(--c-ink-soft); letter-spacing:.1em; }
.pkg .price .amt { font-family: var(--font-latin); font-size: 34px; font-weight:600; color: var(--c-primary); line-height:1; }
.pkg .price .amt small { font-size:18px; }
.pkg .price .tax { font-size:10.5px; color: var(--c-ink-soft); }
.pkg-arrow { position:absolute; inset:0; }

.packages .more { text-align:center; margin-top: clamp(40px,5vw,60px); }
.dest-more { text-align:center; margin-top: clamp(36px,4.5vw,56px); }
.dest-go { position: absolute; inset: 0; z-index: 3; }
.pkg-go { position: absolute; inset: 0; z-index: 3; }

/* ============================================================
   DESTINATIONS
   ============================================================ */
.destinations { background: var(--c-primary-deep); color: #fff; }
.destinations .eyebrow { color: var(--c-accent-soft); }
.destinations .eyebrow::before { background: var(--c-accent-soft); }
.destinations .sec-head h2 { color:#fff; }
.destinations .sec-head h2 em { color: var(--c-accent-soft); }
.destinations .sec-head .desc { color: rgba(255,255,255,.7); }
.dest-grid { display:grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; gap: 16px; }
.dest {
  position: relative; overflow: hidden; border-radius: 2px;
  display:flex; align-items:flex-end;
}
.dest image-slot { position:absolute; inset:0; width:100%; height:100%; z-index:0; }
.dest .d-scrim { position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(10,6,8,.85) 100%); z-index:1; transition: background .4s; }
.dest:hover .d-scrim { background: linear-gradient(180deg, rgba(76,14,30,.2) 0%, rgba(10,6,8,.9) 100%); }
.dest .d-label { position: relative; z-index:2; padding: 20px 22px; }
.dest .d-label .en { font-family: var(--font-latin); font-size: 12px; letter-spacing:.24em; text-transform:uppercase; color: var(--c-accent-soft); }
.dest .d-label .jp { font-family: var(--font-jp-serif); font-size: 21px; color:#fff; margin-top: 3px; }
.dest.big { grid-column: span 2; grid-row: span 2; }
.dest.wide { grid-column: span 2; }
.dest.tall { grid-row: span 2; }

/* ============================================================
   DAY TOURS — tilted trading-card collage
   ============================================================ */
.daytours { background: var(--c-bg); overflow: hidden; }
.dt-sechead { margin-bottom: clamp(40px, 5vw, 70px); }

.dt-rail {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(6px, 1vw, 14px);
  padding: 30px 0 18px;
}
.dt-card {
  --rot: 0deg;
  position: relative;
  flex: 0 0 auto;
  width: clamp(180px, 14vw, 218px);
  background: linear-gradient(165deg, var(--tint2, var(--tint)) 0%, var(--tint) 70%);
  border-radius: 16px;
  padding: 18px 16px 16px;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 18px 36px -20px rgba(40,20,15,.55), inset 0 0 0 1px rgba(255,255,255,.14);
  transform: rotate(var(--rot));
  transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s;
  cursor: pointer;
  margin-top: 8px; margin-bottom: 8px;
  color: inherit; text-decoration: none;
}
.dt-card::after {
  content: ""; position: absolute; inset: 6px; border-radius: 11px;
  border: 1px dashed rgba(255,255,255,.28); pointer-events: none;
}
.dt-card:hover {
  transform: rotate(0deg) translateY(-10px) scale(1.05);
  box-shadow: 0 40px 70px -26px rgba(40,20,15,.65), inset 0 0 0 1px rgba(255,255,255,.2);
  z-index: 4;
}
.dt-place {
  font-family: var(--font-jp-serif); font-weight: 700;
  font-size: 13px; letter-spacing: .12em; color: var(--tint);
  background: #fff; border-radius: 100px;
  padding: 4px 16px; margin-bottom: 12px;
  box-shadow: 0 4px 10px -4px rgba(0,0,0,.3);
}
.dt-title {
  font-family: var(--font-jp-serif); font-weight: 800;
  font-size: clamp(19px, 1.7vw, 23px); line-height: 1.35; color: #fff;
  text-align: center; margin: 0 0 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,.22);
}
.dt-photo {
  width: 100%; aspect-ratio: 1/1; border-radius: 10px; overflow: hidden;
  background: rgba(255,255,255,.16);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25), 0 8px 18px -10px rgba(0,0,0,.4);
}
.dt-photo image-slot { width: 100%; height: 100%; display: block; }
.dt-meta {
  margin-top: 12px; font-size: 11.5px; letter-spacing: .04em;
  color: rgba(255,255,255,.92); font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}
.dt-meta::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.7); }

@media (max-width: 900px) {
  .dt-rail { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; scrollbar-width: none; padding-inline: 2px; }
  .dt-rail::-webkit-scrollbar { display: none; }
  .dt-card { width: 200px; transform: rotate(0deg); scroll-snap-align: center; }
}

/* ============================================================
   WHY US
   ============================================================ */
.why { background: var(--c-paper); }
.why .grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,90px); align-items:center; }
.why .visual { position: relative; aspect-ratio: 4/5; }
.why .visual image-slot { width:100%; height:100%; }
.why .visual .float {
  position:absolute; bottom: -28px; left: -28px;
  background: var(--c-primary); color:#fff; padding: 26px 30px; max-width: 240px;
  box-shadow: 0 30px 60px -36px rgba(40,20,15,.6);
}
.why .visual .float .q { font-family: var(--font-latin); font-size: 40px; color: var(--c-accent-soft); line-height:.6; }
.why .visual .float p { font-size: 13.5px; line-height:1.7; margin: 10px 0 0; }
.why-list { list-style:none; padding:0; margin: 32px 0 0; }
.why-list li { display:flex; gap: 20px; padding: 24px 0; border-top:1px solid var(--c-line); }
.why-list li:last-child { border-bottom:1px solid var(--c-line); }
.why-list .n { font-family: var(--font-latin); font-size: 15px; color: var(--c-accent); font-weight:600; flex-shrink:0; padding-top:3px; letter-spacing:.1em; }
.why-list h4 { font-size: 19px; }
.why-list p { font-size: 14px; color: var(--c-ink-soft); margin: 7px 0 0; line-height:1.85; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta { position: relative; overflow:hidden; color:#fff; }
.cta image-slot { position:absolute; inset:0; width:100%; height:100%; z-index:0; }
.cta .c-scrim { position:absolute; inset:0; z-index:1; background: linear-gradient(110deg, rgba(var(--c-hero-tint),.92) 0%, rgba(var(--c-hero-tint),.6) 60%, rgba(var(--c-hero-tint),.35) 100%); }
.cta .wrap { position:relative; z-index:2; text-align:center; padding-block: clamp(72px,10vw,140px); }
.cta .eyebrow { color: var(--c-accent-soft); justify-content:center; }
.cta .eyebrow::before { background: var(--c-accent-soft); }
.cta h2 { color:#fff; font-size: clamp(32px, 5vw, 64px); margin: 22px auto 0; max-width: 20ch; }
.cta p { color: rgba(255,255,255,.85); max-width: 50ch; margin: 22px auto 0; font-size: 17px; }
.cta .c-actions { display:flex; gap:16px; justify-content:center; margin-top: 40px; flex-wrap:wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-foot { background: var(--c-primary-deep); color: rgba(255,255,255,.7); padding-top: clamp(64px,8vw,96px); }
.foot-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.14); }
.foot-mark { display:flex; align-items:center; gap: 12px; }
.foot-mark img { width: 56px; height: 48px; object-fit: contain; }
.foot-brand .mark { font-family: var(--font-jp-serif); font-size: 26px; font-weight:700; letter-spacing:.12em; color:#fff; }
.foot-brand .mark b { color: var(--c-accent); }
.foot-brand p { font-size: 13.5px; line-height:1.9; margin: 18px 0 0; max-width: 34ch; }
.foot-col h5 { font-family: var(--font-latin); font-size: 12px; letter-spacing:.2em; text-transform:uppercase; color: var(--c-accent-soft); margin:0 0 18px; font-weight:600; }
.foot-col ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap: 12px; }
.foot-col a { font-size: 14px; color: rgba(255,255,255,.72); }
.foot-col a:hover { color:#fff; }
.foot-bottom { display:flex; justify-content:space-between; align-items:center; padding: 26px 0 40px; font-size: 12px; letter-spacing:.04em; gap: 20px; flex-wrap:wrap; }
.foot-bottom .legal { display:flex; gap: 22px; }
.foot-dev { margin-left: 8px; padding-left: 8px; border-left: 1px solid rgba(255,255,255,.2); opacity:.7; }
.foot-dev a { color:inherit; text-decoration:none; }
.foot-dev a:hover { opacity:1; text-decoration:underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .head-tel { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { max-width: 640px; }
  .searchcard { max-width: 540px; }
  .intro .grid, .why .grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(4, 1fr); }
  .dest.big { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 760px) {
  .topbar .tb-left span:not(:first-child) { display:none; }
  .mainnav .wrap { padding-inline: 0; }
  .mainnav-list { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .mainnav-list a { padding-inline: 18px; }
  .searchcard { grid-template-columns: 72px 1fr; }
  .sc-tab { font-size: 10.5px; }
  .scf-row { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .dest.big, .dest.wide, .dest.tall { grid-column: span 2; grid-row: span 1; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .why .visual .float { left: 0; }
}

/* tweaks helper – hide native scrollbars inside panel handled by component */
[data-theme] { }

/* ============================================================
   HOTELS — おすすめ宿・ホテル
   ============================================================ */
.hotels { background: var(--c-paper); }
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: clamp(20px, 2.2vw, 30px);
}
.hotel {
  display: flex; flex-direction: column;
  background: var(--c-bg);
  text-decoration: none; color: inherit;
  border: 1px solid var(--c-line);
  border-radius: 4px; overflow: hidden;
  transition: transform .5s cubic-bezier(.2,.7,.3,1), box-shadow .5s, border-color .5s;
}
.hotel:hover { transform: translateY(-6px); box-shadow: 0 40px 80px -50px rgba(40,20,15,.55); border-color: var(--c-line-strong); }

/* featured hotel spans 2x2 with side-by-side layout */
.hotel.feat {
  grid-column: span 2; grid-row: span 2;
  flex-direction: row;
}
.hotel.feat .hotel-media { width: 48%; aspect-ratio: auto; }
.hotel.feat .hotel-body { flex: 1; padding: clamp(24px, 2.4vw, 38px); justify-content: center; }
.hotel.feat h3 { font-size: clamp(24px, 2.2vw, 32px); }
.hotel.feat .hotel-desc { display: block; }

.hotel-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.hotel-media image-slot { width: 100%; height: 100%; }
.hotel-pin {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(20,12,10,.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: 11.5px; font-weight: 600; letter-spacing: .06em;
  padding: 5px 12px; border-radius: 100px;
}
.hotel-pin::before { content: "◓"; color: var(--c-accent-soft); font-size: 11px; }

.hotel-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.hotel-stars { font-size: 14px; color: var(--c-accent); letter-spacing: .12em; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.hotel-cat { font-family: var(--font-jp-serif); font-size: 11px; font-weight: 600; letter-spacing: .08em; color: var(--c-ink-soft); }
.hotel h3 { font-size: 19px; line-height: 1.4; margin: 11px 0 0; font-weight: 600; }
.hotel-desc { display: none; color: var(--c-ink-soft); font-size: 14.5px; line-height: 1.95; margin: 14px 0 0; }
.hotel-amen { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-wrap: wrap; gap: 7px; }
.hotel-amen li { font-size: 11.5px; color: var(--c-ink-soft); border: 1px solid var(--c-line); border-radius: 100px; padding: 4px 12px; }
.hotel-foot { margin-top: auto; padding-top: 18px; display: flex; align-items: baseline; justify-content: space-between; gap: 10px; border-top: 1px solid var(--c-line); margin-top: 18px; }
.hotel-price { font-family: var(--font-latin); font-size: 26px; font-weight: 600; color: var(--c-primary); white-space: nowrap; line-height: 1; }
.hotel-price small { font-size: 13px; color: var(--c-ink-soft); font-family: var(--font-jp-sans); font-weight: 400; }
.hotel-go { font-size: 12.5px; font-weight: 700; color: var(--c-ink-soft); letter-spacing: .04em; white-space: nowrap; transition: color .25s; }
.hotel:hover .hotel-go { color: var(--c-primary); }

@media (max-width: 1080px) {
  .hotel-grid { grid-template-columns: repeat(2, 1fr); }
  .hotel.feat { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 760px) {
  .hotel-grid { grid-template-columns: 1fr; }
  .hotel.feat { grid-column: span 1; flex-direction: column; }
  .hotel.feat .hotel-media { width: 100%; aspect-ratio: 4/3; }
}

/* ============================================================
   STAFF PICKS — 担当者おすすめ旅行 carousel
   ============================================================ */
.staffpicks { background: var(--c-bg); overflow: hidden; }
.sp-head { text-align: center; margin-bottom: clamp(40px, 5vw, 60px); }
.sp-head .eyebrow { justify-content: center; }
.sp-head h2 { font-size: clamp(28px, 3.8vw, 50px); margin-top: 18px; }
.sp-head h2 em { font-style: normal; color: var(--c-primary); }
.sp-sub { color: var(--c-ink-soft); margin: 16px auto 0; max-width: 50ch; font-size: 16px; }

.sp-rail-wrap { position: relative; }
.sp-rail {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: clamp(280px, 30vw, 340px);
  gap: clamp(20px, 2.2vw, 30px);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 2px 18px; margin: 0 -2px;
  scrollbar-width: none;
}
.sp-rail::-webkit-scrollbar { display: none; }

.sp-card {
  position: relative;
  scroll-snap-align: start;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .5s cubic-bezier(.2,.7,.3,1), box-shadow .5s, border-color .5s;
}
.sp-card:hover { transform: translateY(-6px); box-shadow: 0 40px 80px -50px rgba(40,20,15,.55); border-color: var(--c-line-strong); }
.sp-go-link { position: absolute; inset: 0; z-index: 1; }

.sp-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.sp-media image-slot { width: 100%; height: 100%; }
.sp-tag {
  position: absolute; top: 0; left: 16px; z-index: 3;
  font-family: var(--font-jp-serif); font-size: 12px; font-weight: 700; letter-spacing: .08em;
  color: #fff; padding: 7px 14px 8px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 7px), 0 100%);
}
.sp-tag.culture  { background: var(--c-primary); }
.sp-tag.highland { background: var(--c-secondary); }
.sp-tag.wild     { background: #8A5A1E; }
.sp-tag.coast    { background: #1C6E8C; }
.sp-tag.pilgrim  { background: var(--c-primary-deep); }
.sp-staff {
  position: absolute; bottom: 12px; left: 12px; z-index: 3;
  display: flex; align-items: center; gap: 8px;
  background: rgba(20,12,10,.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  padding: 5px 12px 5px 5px; border-radius: 100px;
  color: #fff; font-size: 11.5px; letter-spacing: .03em;
}
.sp-av {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--c-accent); color: var(--c-primary-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-latin); font-weight: 600; font-size: 13px;
}

.sp-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.sp-from { font-family: var(--font-latin); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--c-accent); font-weight: 600; }
.sp-card h3 { font-size: 17.5px; line-height: 1.62; margin: 9px 0 0; font-weight: 600;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.sp-note {
  font-size: 13px; line-height: 1.85; color: var(--c-ink-soft);
  margin: 13px 0 0; padding-left: 13px; border-left: 2px solid var(--c-accent-soft);
}
.sp-foot { margin-top: auto; padding-top: 18px; display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.sp-price { font-family: var(--font-latin); font-size: 22px; font-weight: 600; color: var(--c-primary); white-space: nowrap; }
.sp-price small { font-size: 14px; }
.sp-go { font-size: 12px; font-weight: 700; color: var(--c-ink-soft); letter-spacing: .04em; white-space: nowrap; transition: color .25s; }
.sp-card:hover .sp-go { color: var(--c-primary); }

.sp-nav {
  position: absolute; top: calc(50% - 30px); transform: translateY(-50%); z-index: 5;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--c-paper); border: 1px solid var(--c-line-strong);
  color: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 40px -18px rgba(40,20,15,.5);
  cursor: pointer; transition: all .25s;
}
.sp-nav svg { width: 22px; height: 22px; }
.sp-nav.prev { left: -14px; }
.sp-nav.next { right: -14px; }
.sp-nav:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.sp-nav.disabled { opacity: 0; pointer-events: none; }

.sp-dots { display: flex; justify-content: center; gap: 9px; margin-top: 22px; }
.sp-dots button {
  width: 8px; height: 8px; border-radius: 50%; padding: 0;
  border: none; background: var(--c-line-strong); cursor: pointer; transition: all .25s;
}
.sp-dots button.on { background: var(--c-primary); width: 26px; border-radius: 100px; }

@media (max-width: 760px) {
  .sp-nav.prev { left: 4px; }
  .sp-nav.next { right: 4px; }
  .sp-rail { grid-auto-columns: 78%; }
}

/* ============================================================
   SERVICES — 旅のサービス grid
   ============================================================ */
.services-sec { background: var(--c-paper); padding-block: clamp(56px, 7vw, 96px); }
.svc-panel {
  position: relative;
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-primary);
  background: var(--c-bg);
  padding: clamp(28px, 3.4vw, 48px);
}
.svc-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(26px, 3vw, 38px); }
.svc-title h2 { font-size: clamp(24px, 3vw, 38px); margin-top: 14px; }
.svc-title h2 em { font-style: normal; color: var(--c-primary); }
.svc-all { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; letter-spacing: .04em; color: var(--c-primary); border-bottom: 1px solid transparent; padding-bottom: 4px; transition: gap .3s, border-color .3s; }
.svc-all .arr { font-family: var(--font-latin); font-size: 17px; }
.svc-all:hover { gap: 16px; border-color: var(--c-primary); }

.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.4vw, 18px); }
.svc-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: 3px;
  padding: clamp(20px, 2.4vw, 32px) 14px;
  text-align: center;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s, border-color .35s, background .35s;
}
.svc-tile:hover {
  transform: translateY(-4px);
  border-color: var(--c-primary);
  box-shadow: 0 26px 50px -34px rgba(40,20,15,.55);
}
.svc-ico { width: 46px; height: 46px; color: var(--c-primary); transition: color .35s, transform .35s; }
.svc-ico svg { width: 100%; height: 100%; display: block; }
.svc-tile:hover .svc-ico { color: var(--c-accent); transform: scale(1.06); }
.svc-label { font-family: var(--font-jp-serif); font-size: 15.5px; font-weight: 600; color: var(--c-ink); letter-spacing: .02em; line-height: 1.4; }
.svc-en { font-family: var(--font-latin); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--c-ink-soft); }

.svc-links {
  display: flex; flex-wrap: wrap; gap: 8px 26px;
  margin-top: clamp(24px, 2.6vw, 34px);
  padding-top: clamp(20px, 2.4vw, 28px);
  border-top: 1px dashed var(--c-line-strong);
}
.svc-links a {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; color: var(--c-ink); letter-spacing: .02em;
  transition: color .25s;
}
.svc-links a span { color: var(--c-accent); font-size: 15px; transition: transform .25s; }
.svc-links a:hover { color: var(--c-primary); }
.svc-links a:hover span { transform: translateX(3px); }

@media (max-width: 920px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .svc-links { flex-direction: column; gap: 12px; }
}

/* ============================================================
   NEWS — お知らせ
   ============================================================ */
.news { background: var(--c-paper); }
.news-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(36px, 6vw, 90px); align-items: start; }
.news-aside { position: sticky; top: 110px; }
.news-aside h2 { font-size: clamp(30px, 3.6vw, 48px); margin-top: 16px; }
.news-sub { color: var(--c-ink-soft); font-size: 15.5px; line-height: 1.95; margin: 18px 0 28px; max-width: 34ch; }

.news-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--c-line); }
.news-item { border-bottom: 1px solid var(--c-line); }
.news-item a {
  display: grid; grid-template-columns: 1fr auto; align-items: center;
  gap: 8px 24px; padding: 24px 6px 24px 0;
  transition: padding .35s cubic-bezier(.2,.7,.3,1);
}
.news-item a:hover { padding-left: 14px; }
.news-meta { grid-column: 1 / -1; display: flex; align-items: center; gap: 14px; }
.news-meta time { font-family: var(--font-latin); font-size: 14px; letter-spacing: .08em; color: var(--c-ink-soft); font-weight: 600; }
.news-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  padding: 3px 11px; border-radius: 100px; color: #fff; white-space: nowrap;
}
.news-tag.campaign { background: var(--c-accent); color: var(--c-primary-deep); }
.news-tag.new      { background: var(--c-secondary); }
.news-tag.local    { background: var(--c-primary); }
.news-tag.notice   { background: var(--c-primary-deep); }
.news-item h3 {
  grid-column: 1; font-size: 17.5px; font-weight: 600; line-height: 1.6; color: var(--c-ink);
  transition: color .25s;
}
.news-item a:hover h3 { color: var(--c-primary); }
.news-arrow {
  grid-column: 2; grid-row: 2; align-self: center;
  font-family: var(--font-latin); font-size: 20px; color: var(--c-line-strong);
  transition: color .25s, transform .25s;
}
.news-item a:hover .news-arrow { color: var(--c-primary); transform: translateX(5px); }

@media (max-width: 880px) {
  .news-grid { grid-template-columns: 1fr; gap: 32px; }
  .news-aside { position: static; }
}

/* ============================================================
   MOBILE & TABLET — SUPPLEMENTARY RESPONSIVE
   ============================================================ */

/* ---- site header: hide desktop text-nav; mainnav handles navigation ---- */
@media (max-width: 860px) {
  .nav { display: none; }
  .site-head .wrap { min-height: 68px; }
}
@media (max-width: 560px) {
  .brand .mark { font-size: 21px; }
  .brand-logo { width: 44px; height: 36px; }
  .head-cta .btn { padding: 11px 16px; font-size: 13px; letter-spacing: .04em; }
}
@media (max-width: 400px) {
  .head-cta .btn { display: none; }
  .topbar .tb-left { display: none; }
  .topbar .wrap { justify-content: flex-end; }
}

/* ---- hero: auto height on mobile so search card is reachable ---- */
@media (max-width: 760px) {
  .hero { min-height: auto; padding-block: clamp(40px, 6vw, 60px); }
}

/* ---- search card: compact on small phones ---- */
@media (max-width: 460px) {
  .searchcard { grid-template-columns: 52px 1fr; }
  .sc-tab { font-size: 9px; padding: 5px 2px; min-height: 48px; gap: 3px; }
  .sc-tab .ti { width: 16px; height: 16px; }
  .sc-body { padding: 13px; }
  .sc-title { font-size: 17px; }
}

/* ---- why section: un-float the testimonial box on mobile ---- */
@media (max-width: 760px) {
  .why .visual .float { position: static; max-width: 100%; bottom: auto; margin-top: 14px; }
}

/* ---- footer: single column on phones ---- */
@media (max-width: 560px) {
  .foot-top { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .foot-bottom .legal { justify-content: center; flex-wrap: wrap; }
}

/* ---- intro stats: smaller numbers on small phones ---- */
@media (max-width: 480px) {
  .stats { gap: 20px; }
  .stat .n { font-size: 38px; }
  .stat .n small { font-size: 20px; }
}

/* ---- section header: stack label + "see all" link on phones ---- */
@media (max-width: 560px) {
  .sec-head { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ---- mainnav: tighter icon + label on phones ---- */
@media (max-width: 480px) {
  .mainnav-list a { padding-inline: 12px; gap: 4px; padding-block: 10px; }
  .mn-label { font-size: 12px; }
  .mn-ico { width: 22px; height: 22px; }
}

/* ---- CTA band: stack buttons on phones ---- */
@media (max-width: 560px) {
  .cta .c-actions { flex-direction: column; align-items: center; }
  .cta h2 { font-size: clamp(26px, 7vw, 38px); }
}
