/*
  TSUNAGU CITY in NAGO 2027
  Cleaned stylesheet

  Visual values are preserved from the supplied stylesheet.
  Proven duplicate and overridden declarations were consolidated.
*/

/* =========================================================
   RESET / VARIABLES / BASE
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-main: #FFFDF8;
  --bg-soft: #FFF6EA;
  --bg-warm: #FFE8C2;
  --navy: #1E2A44;
  --navy-soft: #304A73;
  --text-main: #1E2A44;
  --text-sub: #5E6673;
  --text-muted: #8A8F98;
  --orange: #F6A623;
  --orange-deep: #F59E0B;
  --teal: #49C5C1;
  --white: #FFFFFF;
  --border: rgba(30, 42, 68, 0.12);
  --shadow: rgba(30, 42, 68, 0.12);
  --container-max: 1120px;
}

html {
  background: var(--bg-main);
  scroll-behavior: smooth;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

section {
  position: relative;
}

.section-label {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--orange-deep);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::after {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--orange-deep);
  opacity: 0.45;
}

/* =========================================================
   HEADER / NAVIGATION
========================================================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(30, 42, 68, 0.08);
}

.logo-wrap {
  display: flex;
  align-items: center;
  line-height: 0;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy);
  transition: color 0.25s ease;
  cursor: default;
}

nav a:hover {
  color: var(--orange-deep);
}

.nav-cta {
  color: var(--navy) !important;
  border: 1px solid var(--navy);
  padding: 8px 18px;
  border-radius: 4px;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-cta:hover {
  background: var(--navy);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: default;
  padding: 4px;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--navy);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* =========================================================
   FIRST VIEW
========================================================= */

#fv {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: var(--bg-soft);
}

.fv-bg-img {
  width: 100%;
  height: auto;
  display: block;
}

.fv-main-logo {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(52vw, 760px);
  max-width: 86%;
  height: auto;
  transform: translate(-50%, -50%);
  display: block;
}

#fv picture {
  display: block;
  width: 100%;
}

#fv .fv-bg-img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================================
   ABOUT MESSAGE
========================================================= */

#about {
  position: relative;
  padding: 120px 60px;
  background: var(--bg-warm);
  overflow: hidden;
}

#about .about-message {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}


.about-message-title {
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: 100%;
  margin: 0 0 22px;
  color: #efff24;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(56px, 7vw, 104px);
  font-weight: 900;
  font-style: italic;
  line-height: 0.94;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-text-stroke: 5px #050505;
  paint-order: stroke fill;
  text-shadow:
    2px 2px 0 #050505,
    4px 4px 0 #050505,
    6px 6px 0 #050505,
    8px 8px 0 rgba(0, 0, 0, 0.9);
  transform: skewX(-8deg) rotate(-2deg);
  transform-origin: left center;
  overflow-wrap: normal;
  word-break: keep-all;
}

.about-message-title::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -1.5%;
  bottom: -18px;
  width: 106%;
  height: 16px;
  background: #050505;
  clip-path:
    polygon(
    0% 66%,
    4% 58%,
    14% 51%,
    30% 44%,
    49% 37%,
    68% 29%,
    84% 20%,
    95% 10%,
    100% 0%,
    97% 35%,
    86% 48%,
    68% 58%,
    48% 67%,
    28% 75%,
    12% 82%,
    3% 88%
    );
  transform: rotate(-1.2deg);
  transform-origin: left center;
  pointer-events: none;
}

.about-message-subtitle {
  margin: 18px 0 0;
  color: var(--text-main);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.055em;
}

.about-message-body {
  width: 100%;
  max-width: 720px;
  margin-top: 40px;
  color: var(--text-main);
}

.about-message-body p {
  margin: 0 0 20px;
  color: var(--text-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 2.15;
  letter-spacing: 0.045em;
}

.about-message-body p:last-child {
  margin-bottom: 0;
}

.about-message-emphasis {
  color: var(--text-main);
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 2 !important;
}

.about-message-closing {
  margin-top: 46px !important;
  padding-top: 28px;
  border-top: 1px solid rgba(30, 42, 68, 0.18);
  color: var(--text-main);
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1.9 !important;
}

/* =========================================================
   EVENT OVERVIEW
========================================================= */

#overview {
  padding: 120px 60px;
  background: var(--bg-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  margin-top: 40px;
}

.about-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--teal);
  margin-bottom: 14px;
}

.about-heading {
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.35;
  letter-spacing: 0.03em;
  color: var(--text-main);
  margin-bottom: 22px;
}

.about-lead {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-main);
  margin-bottom: 18px;
}

.about-body {
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: var(--text-sub);
  margin-bottom: 14px;
}

.about-visual {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: 0 18px 50px var(--shadow);
}

/* =========================================================
   PICKUP / RECOMMEND
========================================================= */

#recommend {
  padding: 120px 60px;
  background: var(--bg-main);
}

.rec-heading {
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.35;
  letter-spacing: 0.03em;
  color: var(--text-main);
  margin-top: 8px;
}


.rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.rec-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 32px rgba(30, 42, 68, 0.08);
}

.rec-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF3E2, #E5FAF8);
}

.rec-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rec-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rec-card-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-main);
  margin: 0 0 10px;
  white-space: normal;
}

.rec-card-text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-sub);
  margin: 0;
}

.rec-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 0 12px;
  padding: 4px 12px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border-radius: 0;
}

.rec-tag--expo {
  background: #83a6a0;
}

.rec-tag--session {
  background: #159ac4;
}

.rec-tag--kids {
  background: #f2b422;
}

.rec-tag--business {
  background: #667fae;
}

.rec-tag--local-tour {
  background: #9276b6;
}

.rec-tag--festival {
  background: #db9870;
}

/* =========================================================
   ARCHIVE
========================================================= */

#archive {
  padding: 120px 60px;
  background: var(--bg-soft);
}


.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.archive-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 32px rgba(30, 42, 68, 0.08);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.archive-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(30, 42, 68, 0.14);
  border-color: rgba(246, 166, 35, 0.45);
}

.archive-card:active {
  transform: scale(0.98);
}

.archive-thumb {
  width: 100%;
  aspect-ratio: 2 / 1;
  background: var(--bg-soft);
  overflow: hidden;
}

.archive-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.45s ease;
}

.archive-card:hover .archive-img {
  transform: scale(1.035);
}

.archive-info {
  padding: 16px 18px 20px;
}

.archive-year {
  font-size: 10px;
  color: var(--teal);
  letter-spacing: 0.18em;
  margin-bottom: 6px;
  font-weight: 700;
}

.archive-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 6px;
  transition: color 0.28s ease;
}

.archive-card:hover .archive-title {
  color: var(--orange-deep);
}

.archive-meta {
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.6;
}

/* =========================================================
   COMING SOON
========================================================= */

#coming-soon {
  padding: 120px 60px;
  text-align: center;
  background: var(--bg-main);
  overflow: hidden;
}

.coming-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--orange-deep);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.coming-label::before,
.coming-label::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--orange-deep);
  opacity: 0.45;
}

.coming-title {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 36px;
}

.notify-form {
  display: inline-flex;
  max-width: 620px;
  width: 100%;
  box-shadow: 0 12px 32px rgba(30, 42, 68, 0.10);
  border-radius: 999px;
  overflow: hidden;
  background: var(--white);
}

.notify-input {
  flex: 1;
  background: var(--white);
  border: none;
  color: var(--text-main);
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 16px 24px;
  outline: none;
}

.notify-input::placeholder {
  color: var(--text-muted);
}

.notify-btn {
  background: var(--orange);
  border: none;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 16px 28px;
  cursor: default;
  white-space: nowrap;
  transition: background 0.25s ease;
}

.notify-btn:hover {
  background: var(--orange-deep);
}

/* =========================================================
   CONTACT
========================================================= */

#contact {
  position: relative;
  padding: 120px 60px 128px;
  background: var(--bg-warm);
  overflow: hidden;
}

#contact .container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.contact-header {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

#contact .section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 22px;
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.22em;
  text-align: center;
}

#contact .section-label::before,
#contact .section-label::after {
  content: "";
  display: block;
  flex: 0 0 58px;
  width: 58px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.contact-eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-align: center;
}

.contact-title {
  margin: 0;
  color: var(--text-main);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.05em;
  text-align: center;
}

.contact-lead {
  width: 100%;
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--text-sub);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.035em;
  text-align: center;
}

.contact-card {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 42px 48px 46px;
  background: var(--white);
  border: 1px solid rgba(30, 42, 68, 0.12);
  border-radius: 14px;
  box-shadow:
    0 14px 36px rgba(30, 42, 68, 0.08),
    0 2px 8px rgba(30, 42, 68, 0.03);
  text-align: center;
}

.contact-office {
  margin: 0 0 30px;
  padding: 0 0 24px;
  border-bottom: 1px solid rgba(30, 42, 68, 0.1);
  color: var(--text-main);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.025em;
  text-align: center;
}

.contact-list {
  width: 100%;
  margin: 0;
  text-align: center;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 24px 0;
  border-bottom: 1px solid rgba(30, 42, 68, 0.08);
  text-align: center;
}

.contact-item:first-child {
  padding-top: 0;
}

.contact-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-item-label {
  display: block;
  width: 100%;
  margin: 0;
  color: var(--orange-deep);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.16em;
  text-align: center;
}

.contact-item-value {
  display: block;
  width: 100%;
  min-width: 0;
  margin: 0;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.025em;
  text-align: center;
}

.contact-mail {
  position: relative;
  display: inline-block;
  max-width: 100%;
  color: var(--navy-soft);
  font-weight: 600;
  line-height: inherit;
  text-align: center;
  overflow-wrap: anywhere;
  transition: color 0.25s ease;
}

.contact-mail::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
  transform: scaleX(1);
  transform-origin: center;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.contact-mail:focus-visible {
  color: var(--orange-deep);
  outline: 2px solid rgba(245, 158, 11, 0.5);
  outline-offset: 4px;
  border-radius: 2px;
}

/* =========================================================
   FOOTER
========================================================= */

footer {
  background: var(--navy);
  color: var(--white);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-logo {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.08em;
  margin-top: 6px;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.1em;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo-img {
  width: 56px;
  height: auto;
  flex-shrink: 0;
}

/* =========================================================
   HOVER-CAPABLE DEVICES
========================================================= */

@media (hover: hover) {
  .contact-mail:hover {
    color: var(--orange-deep);
  }

  .contact-mail:hover::after {
    opacity: 0.75;
    transform: scaleX(0.96);
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1023px) {
  header {
    padding: 18px 24px;
  }

  #about {
    padding: 80px 40px;
  }

  #about .about-message {
    max-width: 760px;
  }

  #about .section-label {
    margin-bottom: 24px;
  }

  .about-message-eyebrow {
    margin-bottom: 14px;
  }

  .about-message-title {
    margin-bottom: 20px;
    font-size: clamp(48px, 7.5vw, 72px);
    line-height: 0.96;
    letter-spacing: 0;
    -webkit-text-stroke: 4px #050505;
    text-shadow:
      2px 2px 0 #050505,
      4px 4px 0 #050505,
      6px 6px 0 rgba(0, 0, 0, 0.92);
    transform: skewX(-7deg) rotate(-1.8deg);
  }

  .about-message-title::after {
    bottom: -15px;
    height: 13px;
    width: 105%;
  }

  .about-message-subtitle {
    margin-top: 16px;
    font-size: 18px;
  }

  .about-message-body {
    max-width: 680px;
    margin-top: 44px;
  }

  .about-message-body p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 2.1;
  }

  .about-message-emphasis {
    font-size: 16px !important;
  }

  .about-message-closing {
    margin-top: 40px !important;
    padding-top: 26px;
    font-size: 18px !important;
  }

  #overview,
  #recommend,
  #archive {
    padding: 80px 40px;
  }

  .about-grid {
    gap: 40px;
  }

  .rec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #coming-soon {
    padding: 100px 40px;
  }

  #contact {
    padding: 88px 40px 96px;
  }

  .contact-header {
    max-width: 680px;
    margin-bottom: 40px;
  }

  #contact .section-label {
    gap: 12px;
    margin-bottom: 20px;
  }

  #contact .section-label::before,
  #contact .section-label::after {
    flex-basis: 50px;
    width: 50px;
  }

  .contact-title {
    font-size: clamp(30px, 4.5vw, 38px);
  }

  .contact-lead {
    max-width: 580px;
    margin-top: 20px;
  }

  .contact-card {
    max-width: 760px;
    padding: 38px 40px 42px;
  }

  .contact-office {
    margin-bottom: 26px;
    padding-bottom: 22px;
    font-size: 18px;
  }

  .contact-item {
    gap: 7px;
    padding: 22px 0;
  }

  footer {
    padding: 40px;
  }
}

/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 767px) {
  header {
    padding: 14px 16px;
  }

  .logo-img {
    height: 30px;
  }

  .nav-toggle {
    display: flex;
  }

  #global-nav a {
    font-size: 16px;
    letter-spacing: 0.16em;
  }

  #global-nav {
    position: fixed;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    padding: 72px 24px 24px;
    background: rgba(15, 20, 30, 0.52);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    z-index: 99;
  }

  #global-nav.is-open {
    display: flex;
  }

  body:has(#global-nav.is-open) > *:not(header) {
    filter: blur(6px);
  }

  body:has(#global-nav.is-open) {
    overflow: hidden;
  }

  #global-nav > a {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: min(100%, 320px);
    min-height: 54px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    -webkit-tap-highlight-color: transparent;
    transition:
      color 0.15s ease,
      opacity 0.15s ease,
      transform 0.1s ease;
  }

  #global-nav > a:hover {
    color: #ffffff;
  }

  #global-nav > a:active {
    background: transparent;
    color: var(--orange);
    opacity: 0.82;
    transform: scale(0.98);
  }

  #global-nav > a:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
  }

  #global-nav .nav-cta {
    width: min(100%, 320px);
    margin-top: 12px;
    padding: 14px 20px;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.9);
  }

  #global-nav .nav-cta:hover {
    background: transparent;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.9);
  }

  #global-nav .nav-cta:active {
    background: transparent;
    color: var(--orange) !important;
    border-color: var(--orange);
  }

  .nav-toggle[aria-expanded="true"] span {
    background: #ffffff;
  }

  #global-nav .nav-social {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: min(100%, 320px);
    margin-top: auto;
    padding-top: 28px;
  }

  #global-nav .nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-height: 0;
    padding: 0;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    text-shadow: none;
    transition:
      background-color 0.15s ease,
      color 0.15s ease,
      border-color 0.15s ease,
      transform 0.1s ease;
  }

  #global-nav .nav-social-link:active {
    color: var(--orange);
    border-color: var(--orange);
    transform: scale(0.94);
  }

  #global-nav .nav-social-link svg {
    display: block;
    width: 21px;
    height: 21px;
    fill: currentColor;
  }

  .fv-main-logo {
    width: min(76vw, 420px);
  }

  #fv {
    min-height: 0;
    margin-top: 58px;
    overflow: hidden;
  }

  #fv picture {
    width: 100%;
  }

  #fv .fv-bg-img {
    display: block;
    width: 100%;
    height: auto;
    margin-top: -10%;
  }

  #about {
    padding: 64px 20px;
  }

  #about .about-message {
    max-width: none;
  }

  #about .section-label {
    margin-bottom: 22px;
  }

  .about-message-eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .about-message-title {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 18px;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    font-size: clamp(40px, 12.5vw, 58px);
    line-height: 0.98;
    letter-spacing: 0.005em;
    -webkit-text-stroke: 3px #050505;
    text-shadow:
      1.5px 1.5px 0 #050505,
      3px 3px 0 #050505,
      5px 5px 0 rgba(0, 0, 0, 0.92);
    transform: skewX(-6deg) rotate(-1.5deg);
  }

  .about-message-title::after {
    left: -1%;
    bottom: -11px;
    width: 103%;
    height: 10px;
    clip-path:
      polygon(
      0% 68%,
      8% 58%,
      24% 49%,
      46% 39%,
      68% 28%,
      86% 16%,
      100% 0%,
      96% 38%,
      78% 52%,
      55% 64%,
      30% 75%,
      10% 84%
      );
  }

  .about-message-subtitle {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.035em;
  }

  .about-message-body {
    max-width: none;
    margin-top: 38px;
  }

  .about-message-body p {
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.025em;
  }

  .about-message-body br {
    display: none;
  }

  .about-message-emphasis {
    font-size: 16px !important;
    line-height: 1.95 !important;
  }

  .about-message-closing {
    margin-top: 36px !important;
    padding-top: 24px;
    font-size: 16px !important;
    line-height: 1.85 !important;
  }

  #overview,
  #recommend,
  #archive {
    padding: 64px 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  #overview .about-body {
    font-size: 14px;
  }

  .rec-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  #coming-soon {
    padding: 80px 20px;
  }

  .notify-form {
    flex-direction: column;
    border-radius: 16px;
  }

  .notify-input {
    text-align: center;
  }

  .notify-btn {
    width: 100%;
  }

  #contact {
    padding: 64px 20px 72px;
  }

  .contact-header {
    max-width: none;
    margin-bottom: 32px;
  }

  #contact .section-label {
    gap: 10px;
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  #contact .section-label::before,
  #contact .section-label::after {
    flex-basis: 34px;
    width: 34px;
  }

  .contact-eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0.15em;
  }

  .contact-title {
    font-size: 28px;
    line-height: 1.4;
  }

  .contact-lead {
    max-width: 360px;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.85;
    letter-spacing: 0.025em;
  }

  .contact-lead br {
    display: none;
  }

  .contact-card {
    max-width: none;
    padding: 30px 24px 32px;
    border-radius: 12px;
    box-shadow:
      0 10px 28px rgba(30, 42, 68, 0.07),
      0 2px 6px rgba(30, 42, 68, 0.03);
  }

  .contact-office {
    margin-bottom: 22px;
    padding-bottom: 20px;
    font-size: 16px;
    line-height: 1.75;
  }

  .contact-item {
    gap: 6px;
    padding: 20px 0;
  }

  .contact-item-label {
    font-size: 10px;
    line-height: 1.7;
  }

  .contact-item-value {
    font-size: 14px;
    line-height: 1.85;
  }

  .contact-mail {
    display: inline;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    text-decoration-color: rgba(30, 42, 68, 0.35);
  }

  .contact-mail::after {
    display: none;
  }

  footer {
    padding: 32px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   SMARTPHONE / HOVER-CAPABLE POINTER
========================================================= */

@media (max-width: 767px) and (hover: hover) {
  #global-nav > a:hover {
    color: var(--orange);
  }

  #global-nav .nav-cta:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy) !important;
    border-color: rgba(255, 255, 255, 0.95);
  }

  #global-nav .nav-social-link:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy);
    border-color: rgba(255, 255, 255, 0.95);
  }
}

/* =========================================================
   SMARTPHONE / LOW HEIGHT
========================================================= */

@media (max-width: 767px) and (max-height: 620px) {
  #global-nav {
    padding-top: 64px;
    padding-bottom: 20px;
  }

  #global-nav > a {
    min-height: 46px;
    padding-top: 9px;
    padding-bottom: 9px;
    font-size: 18px;
  }

  #global-nav .nav-cta {
    margin-top: 8px;
    padding-top: 11px;
    padding-bottom: 11px;
  }

  #global-nav .nav-social {
    margin-top: 20px;
    padding-top: 16px;
  }

  #global-nav .nav-social-link {
    width: 44px;
    height: 44px;
  }
}

/* =========================================================
   SMALL SMARTPHONE
========================================================= */

@media (max-width: 374px) {
  #global-nav {
    padding-right: 20px;
    padding-left: 20px;
  }

  #global-nav > a {
    font-size: 18px;
  }

  #about {
    padding-right: 16px;
    padding-left: 16px;
  }

  .about-message-title {
    font-size: 37px;
    line-height: 1;
    letter-spacing: 0;
    -webkit-text-stroke: 2.5px #050505;
    text-shadow:
      1px 1px 0 #050505,
      2.5px 2.5px 0 #050505,
      4px 4px 0 rgba(0, 0, 0, 0.92);
  }

  .about-message-title::after {
    bottom: -9px;
    height: 8px;
  }

  .about-message-subtitle {
    font-size: 16px;
  }

  .about-message-body p {
    font-size: 14px;
  }

  .about-message-closing {
    font-size: 16px !important;
  }

  #contact {
    padding-right: 16px;
    padding-left: 16px;
  }

  #contact .section-label::before,
  #contact .section-label::after {
    flex-basis: 28px;
    width: 28px;
  }

  .contact-card {
    padding: 26px 20px 28px;
  }

  .contact-title {
    font-size: 26px;
  }

  .contact-lead {
    max-width: 320px;
    font-size: 14px;
  }

  .contact-office {
    font-size: 16px;
  }

  .contact-item-value {
    font-size: 14px;
  }
}
