/* ============================================================
   International Guest Page (/en/)
   ============================================================ */
:root{
  --paper:#f6f2e6;
  --surface:#ffffff;
  --surface-tint:#eef0e2;
  --warm-tint:#f2e7d3;
  --ink:#1c2318;
  --ink-soft:#57604c;
  --ink-faint:#8b9280;
  --moss:#4f6b3f;
  --moss-deep:#33452a;
  --moss-tint:#e7ecdc;
  --hinoki:#a9713a;
  --hinoki-soft:#c99a63;
  --line:#ddd4b9;
  --line-strong:#c9bd9a;
  --shadow: 0 1px 2px rgba(28,35,24,0.05), 0 10px 30px rgba(28,35,24,0.08);
}

.en-page{
  background:var(--paper);
  color:var(--ink);
  font-family:-apple-system,"Segoe UI",Helvetica,Arial,sans-serif;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
.en-page h1,.en-page h2,.en-page h3,.en-page .display{
  font-family:Georgia,"Iowan Old Style","Times New Roman",serif;
  font-weight:400;
  margin:0;
}
.en-page a{color:inherit;}
.en-page img{max-width:100%;display:block;}
.en-page .eyebrow{
  font-size:12px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--hinoki);
  margin:0 0 14px;
  display:flex;
  align-items:center;
  gap:10px;
}
.en-page .eyebrow::before{content:"";width:22px;height:1px;background:var(--hinoki-soft);}
.en-page .eyebrow--moss{color:var(--moss-deep);}
.en-page .eyebrow--moss::before{background:var(--moss);}

/* ---------------- top nav ---------------- */
.en-topnav{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 40px;
  background:rgba(246,242,230,0.92);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid var(--line);
}
.en-topnav__mark{
  font-family:Georgia,serif;
  font-size:15px;
  letter-spacing:0.08em;
  font-weight:600;
  color:var(--ink);
  text-decoration:none;
}
.en-topnav__mark span{color:var(--hinoki);}
.en-topnav__links{
  display:flex;
  align-items:center;
  gap:26px;
  font-size:13px;
  font-weight:600;
  color:var(--ink-soft);
}
.en-topnav__links a{text-decoration:none;}
.en-topnav__links a:hover{color:var(--ink);}
.en-topnav__jp{
  font-size:12.5px;
  font-weight:700;
  color:var(--ink-soft);
  text-decoration:none;
  padding:6px 12px;
  border:1px solid var(--line-strong);
  border-radius:999px;
}
.en-topnav__jp:hover{color:var(--ink);border-color:var(--ink-faint);}
.en-topnav__cta{
  font-size:13px;
  font-weight:700;
  background:var(--moss);
  color:var(--paper) !important;
  padding:9px 18px;
  border-radius:999px;
  text-decoration:none;
  white-space:nowrap;
}
@media (max-width:800px){
  .en-topnav__links{display:none;}
  .en-topnav{padding:14px 20px;}
}
@media (max-width:640px){
  .en-topnav__cta{display:none;}
  .en-topnav__mark{font-size:14px;}
}

/* ---------------- hero ---------------- */
.en-hero{
  position:relative;
  min-height:88vh;
  display:flex;
  align-items:flex-end;
  background-size:cover;
  background-position:center 62%;
  color:#f5f1e4;
}
.en-hero__scrim{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(17,21,12,0.15) 0%, rgba(17,21,12,0.15) 40%, rgba(17,21,12,0.82) 100%);
}
.en-hero__body{
  position:relative;
  padding:0 40px 72px;
  max-width:760px;
  margin:0 auto;
  text-align:center;
}
.en-hero__eyebrow{
  font-size:12px;
  letter-spacing:0.2em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--hinoki-soft);
  margin:0 0 18px;
}
.en-hero__h1{
  font-size:clamp(34px,5.4vw,60px);
  line-height:1.06;
  margin:0 0 20px;
}
.en-hero__sub{
  font-size:16.5px;
  max-width:52ch;
  color:#e9e4d2;
  margin:0 auto 30px;
}
.en-hero__ctas{display:flex;gap:14px;flex-wrap:wrap;justify-content:center;margin-bottom:34px;}
.en-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13.5px;
  font-weight:700;
  padding:13px 24px;
  border-radius:999px;
  text-decoration:none;
  border:1px solid transparent;
}
.en-btn--solid{background:var(--hinoki-soft);color:#241b0d !important;}
.en-btn--ghost{border-color:rgba(245,241,228,0.55);color:#f5f1e4 !important;}
.en-hero__facts{
  display:flex;
  justify-content:center;
  gap:0;
  border-top:1px solid rgba(245,241,228,0.28);
  padding-top:20px;
  max-width:560px;
  margin:0 auto;
}
.en-hero__fact{
  flex:1;
  padding:0 22px;
  border-right:1px solid rgba(245,241,228,0.28);
  font-size:12.5px;
  color:#d9d3bd;
  text-align:center;
}
.en-hero__fact:last-child{border-right:none;}
.en-hero__fact strong{
  display:block;
  font-family:Georgia,serif;
  font-size:19px;
  color:#f5f1e4;
  font-weight:400;
  margin-bottom:2px;
}

/* ---------------- sections shell ---------------- */
.en-page section.en-block{
  padding:96px 40px;
  scroll-margin-top:70px;
}
.en-block--tint{background:var(--surface-tint);}
.en-block--warm{background:var(--warm-tint);}
.en-block__inner{max-width:1080px;margin:0 auto;}
.en-block__head{max-width:640px;margin-bottom:52px;}
.en-block__h2{font-size:clamp(26px,3.4vw,38px);line-height:1.15;margin:0 0 16px;}
.en-block__lede{font-size:15.5px;color:var(--ink-soft);max-width:60ch;}

/* ---------------- villa / two-col copy+photos ---------------- */
.en-split-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:56px;
  align-items:start;
}
.en-copy p{font-size:15px;color:var(--ink-soft);max-width:52ch;margin:0 0 16px;}
.en-feat-list{list-style:none;margin:26px 0 0;padding:0;display:grid;gap:12px;}
.en-feat-list li{
  display:flex;align-items:center;gap:10px;
  font-size:14px;color:var(--ink);
}
.en-feat-list li::before{
  content:"";width:6px;height:6px;border-radius:50%;background:var(--hinoki);flex:none;
}
.en-specs-strip{
  display:flex;flex-wrap:wrap;gap:0;
  margin:28px 0 0;
  border-top:1px solid var(--line-strong);
  padding-top:18px;
}
.en-specs-strip__item{
  padding-right:22px;margin-right:22px;
  border-right:1px solid var(--line);
  font-size:12.5px;color:var(--ink-faint);
}
.en-specs-strip__item:last-child{border-right:none;}
.en-specs-strip__item strong{
  display:block;font-size:14.5px;color:var(--ink);font-weight:600;
}
.en-booking-note{
  margin-top:22px;
  font-size:12.5px;
  color:var(--ink-faint);
  max-width:44ch;
}
.en-photos{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.en-photos img{
  border-radius:10px;
  box-shadow:var(--shadow);
  object-fit:cover;
  height:100%;
  width:100%;
}
.en-photos figure{margin:0;position:relative;}
.en-photos figure:first-child{grid-column:1 / -1;}
.en-photos figure:first-child img{height:260px;}
.en-photos figure:not(:first-child) img{height:148px;}
.en-photos figcaption{
  position:absolute;left:10px;bottom:8px;
  font-size:11px;font-weight:600;color:#fff;
  text-shadow:0 1px 4px rgba(0,0,0,0.6);
}
.en-photos--pair{grid-template-columns:1fr 1fr;}
.en-photos--pair figure{grid-column:auto;}
.en-photos--pair img{height:240px;}
.en-photos--trio{grid-template-columns:1fr 1fr 1fr;}
.en-photos--trio figure{grid-column:auto;}
.en-photos--trio img{height:220px;}
@media (max-width:640px){
  .en-photos--trio{grid-template-columns:1fr 1fr;}
  .en-photos--trio figure:first-child{grid-column:1 / -1;}
}

/* ---------------- dining ---------------- */
.en-dining-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:56px;
  align-items:center;
}
.en-dining-photo{position:relative;border-radius:14px;overflow:hidden;box-shadow:var(--shadow);margin:0;}
.en-dining-photo img{height:420px;object-fit:cover;}
.en-dining-hours{
  display:flex;gap:22px;flex-wrap:wrap;
  margin:22px 0 28px;
}
.en-dining-hours__item{font-size:13px;color:var(--ink-soft);}
.en-dining-hours__item strong{display:block;color:var(--ink);font-size:14.5px;font-weight:600;}
.en-menu-table{width:100%;border-collapse:collapse;font-size:14px;}
.en-menu-table td{padding:9px 0;border-top:1px solid var(--line);}
.en-menu-table tr:first-child td{border-top:none;}
.en-menu-table td:last-child{
  text-align:right;
  font-variant-numeric:tabular-nums;
  color:var(--hinoki);
  font-weight:600;
  white-space:nowrap;
}
.en-dining-foodstrip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:36px;
}
.en-dining-foodstrip img{
  border-radius:10px;
  box-shadow:var(--shadow);
  height:230px;
  width:100%;
  object-fit:cover;
}

/* ---------------- explore (lake / history) ---------------- */
.en-explore-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
}
.en-explore-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.en-explore-card__photo img{
  width:100%;
  height:260px;
  object-fit:cover;
}
.en-explore-card__body{padding:26px 26px 28px;}
.en-explore-card__label{
  font-size:11px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--hinoki);
  margin:0 0 8px;
}
.en-explore-card__title{
  font-size:19px;
  font-weight:600;
  margin:0 0 12px;
}
.en-explore-card__text{
  font-size:14px;
  color:var(--ink-soft);
  margin:0 0 16px;
}
.en-explore-card__link{
  font-size:13px;
  font-weight:700;
  color:var(--moss-deep);
  text-decoration:none;
  border-bottom:1px solid var(--moss);
  padding-bottom:1px;
}
.en-explore-card__link:hover{color:var(--moss);}

/* ---------------- activities ---------------- */
.en-act-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.en-act-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:12px;
  padding:22px 22px 24px;
  box-shadow:var(--shadow);
}
.en-act-card__photo{
  margin:-22px -22px 16px;
  height:230px;
  overflow:hidden;
  border-radius:12px 12px 0 0;
}
.en-act-card__photo img{width:100%;height:100%;object-fit:cover;display:block;}
.en-act-card__title{font-size:16px;font-weight:600;margin:0 0 8px;font-family:Georgia,serif;}
.en-act-card__meta{
  display:flex;gap:10px;flex-wrap:wrap;
  font-size:11.5px;color:var(--ink-faint);
  margin-bottom:2px;
}
.en-act-card__meta span{
  background:var(--moss-tint);
  color:var(--moss-deep);
  padding:3px 9px;
  border-radius:999px;
  font-weight:600;
}
.en-act-note{
  margin-top:26px;
  font-size:13px;
  color:var(--ink-faint);
  max-width:64ch;
}
.en-act-note a{color:var(--moss-deep);font-weight:600;text-decoration:underline;}

/* ---------------- access ---------------- */
.en-access-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
}
.en-info-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.en-info-card img{height:280px;width:100%;object-fit:cover;}
.en-info-card__body{padding:22px 24px;}
.en-info-row{
  display:flex;justify-content:space-between;gap:16px;
  font-size:13.5px;
  padding:9px 0;
  border-top:1px solid var(--line);
}
.en-info-row:first-child{border-top:none;}
.en-info-row dt{color:var(--ink-faint);}
.en-info-row dd{margin:0;text-align:right;color:var(--ink);}

.en-transit{margin-bottom:28px;}
.en-transit:last-child{margin-bottom:0;}
.en-transit__h3{
  font-size:12px;letter-spacing:0.1em;text-transform:uppercase;
  font-weight:700;color:var(--moss-deep);margin:0 0 14px;
  font-family:-apple-system,sans-serif;
}
.en-transit-table{width:100%;border-collapse:collapse;font-size:13.5px;}
.en-transit-table td{padding:7px 0;border-top:1px solid var(--line);}
.en-transit-table tr:first-child td{border-top:none;}
.en-transit-table td:first-child{color:var(--ink-soft);}
.en-transit-table td:last-child{text-align:right;font-variant-numeric:tabular-nums;color:var(--ink);white-space:nowrap;}
.en-transit-note{font-size:12.5px;color:var(--ink-faint);margin:10px 0 0;}

/* ---------------- guest voices carousel ---------------- */
.en-voices{
  overflow:hidden;
  margin-top:8px;
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.en-voices__track{
  display:flex;
  gap:20px;
  width:max-content;
  padding:0 40px;
  animation:en-voices-scroll 46s linear infinite;
  will-change:transform;
}
.en-voices__track:hover{animation-play-state:paused;}
@keyframes en-voices-scroll{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}
.en-voice-card{
  flex:0 0 320px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:12px;
  padding:24px;
  box-shadow:var(--shadow);
}
.en-voice-card__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:14px;
}
.en-voice-card__cat{
  font-size:11px;
  font-weight:700;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:var(--hinoki);
  background:rgba(169,113,58,0.12);
  padding:3px 9px;
  border-radius:999px;
}
.en-voice-card__stars{
  position:relative;
  display:inline-block;
  font-size:13px;
  letter-spacing:2px;
  line-height:1;
  color:var(--line-strong);
  white-space:nowrap;
}
.en-voice-card__stars::before{content:'★★★★★';}
.en-voice-card__stars-fill{
  position:absolute;
  top:0;left:0;
  overflow:hidden;
  white-space:nowrap;
  color:var(--hinoki);
  display:inline-block;
}
.en-voice-card__stars-fill::before{content:'★★★★★';}
.en-voice-card__title{
  font-size:15.5px;
  font-weight:600;
  font-family:Georgia,serif;
  margin:0 0 8px;
}
.en-voice-card__body{
  font-size:13.5px;
  color:var(--ink-soft);
  margin:0 0 16px;
}
.en-voice-card__meta{
  display:flex;
  justify-content:space-between;
  gap:10px;
  font-size:11.5px;
  color:var(--ink-faint);
  border-top:1px solid var(--line);
  padding-top:12px;
}

/* ---------------- final cta ---------------- */
.en-final-cta{
  background:var(--moss-deep);
  color:var(--paper);
  padding:88px 40px;
  text-align:center;
}
.en-final-cta__h2{font-size:clamp(26px,3.6vw,36px);margin:0 0 16px;color:var(--paper);}
.en-final-cta__sub{font-size:15px;color:#d9e2cb;max-width:56ch;margin:0 auto 30px;}
.en-final-cta__ctas{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-bottom:26px;}
.en-final-cta .en-btn--solid{background:var(--hinoki-soft);color:#241b0d !important;}
.en-final-cta .en-btn--ghost{border-color:rgba(246,242,230,0.4);color:var(--paper) !important;}
.en-final-cta__note{font-size:12.5px;color:#b9c4a8;max-width:52ch;margin:0 auto;}

@media (max-width:860px){
  .en-split-grid,.en-dining-grid,.en-access-grid,.en-explore-grid{grid-template-columns:1fr;}
  .en-act-grid{grid-template-columns:1fr 1fr;}
  .en-page section.en-block{padding:64px 22px;}
  .en-dining-photo img{height:260px;}
}
@media (max-width:560px){
  .en-act-grid{grid-template-columns:1fr;}
  .en-final-cta{padding-left:22px;padding-right:22px;}
  .en-act-card__photo{height:180px;}
  .en-dining-foodstrip img{height:170px;}
}

@media (max-width:640px){
  .en-hero{min-height:92vh;align-items:center;}
  .en-hero__body{padding:0 20px;}
  .en-hero__eyebrow{margin-bottom:8px;font-size:10.5px;}
  .en-hero__h1{font-size:25px;line-height:1.14;margin-bottom:10px;}
  .en-hero__sub{font-size:13px;margin-bottom:16px;}
  .en-hero__ctas{gap:8px;margin-bottom:18px;}
  .en-hero__ctas .en-btn{padding:10px 16px;font-size:12px;}
  .en-hero__facts{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px 14px;
    max-width:280px;
    margin:0 auto;
    padding-top:14px;
  }
  .en-hero__fact{
    flex:none;
    padding:0;
    border-right:none;
    text-align:center;
  }
  .en-hero__fact:first-child{grid-column:1 / -1;}
  .en-hero__fact strong{font-size:15px;margin-bottom:1px;}

  .en-specs-strip{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px 16px;
  }
  .en-specs-strip__item{
    border-right:none;
    padding-right:0;
    margin-right:0;
  }
}
@media (max-width:360px){
  .en-hero{min-height:96vh;}
}

@media (prefers-reduced-motion: reduce){
  .en-voices__track{animation:none;}
}
