:root {
  --brown: #713d0c;
  --brown-deep: #33261c;
  --coral: #ee3d2b;
  --coral-light: #f25846;
  --ocean: #16a9c7;
  --ocean-deep: #0d91ac;
  --sky: #eaf8fb;
  --sand: #fff4e6;
  --cream: #fffaf2;
  --yellow: #f7c84b;
  --white: #ffffff;
  --muted: #72665d;
  --line: rgba(113, 61, 12, 0.16);
  --shadow: 0 24px 70px rgba(71, 45, 25, 0.14);
  --page: min(1180px, calc(100% - 80px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--brown-deep);
  background: var(--cream);
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

body,
main {
  overflow-x: clip;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
dl,
dd,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.container,
.headerInner {
  width: var(--page);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 132px 0;
}

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 86px;
  border-bottom: 1px solid rgba(113, 61, 12, 0.1);
  background: rgba(255, 250, 242, 0.94);
  backdrop-filter: blur(18px);
}

.headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--brown);
  font-weight: 800;
  line-height: 0;
}

.brandLogo {
  width: 205px;
  height: auto;
}

.desktopNav {
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 13px;
  font-weight: 700;
}

.desktopNav a:not(.navCta) {
  position: relative;
}

.desktopNav a:not(.navCta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktopNav a:hover::after,
.desktopNav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navCta {
  padding: 12px 22px;
  border-radius: 999px;
  color: var(--white);
  background: var(--brown);
  transition: background 0.2s ease, transform 0.2s ease;
}

.navCta:hover,
.navCta:focus-visible {
  background: var(--coral);
  transform: translateY(-2px);
}

.mobileNav {
  display: none;
  position: relative;
}

.mobileNav summary {
  display: grid;
  gap: 6px;
  width: 45px;
  height: 45px;
  padding: 14px 11px;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  list-style: none;
}

.mobileNav summary::-webkit-details-marker {
  display: none;
}

.mobileNav summary span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--brown);
  transition: transform 0.2s ease;
}

.mobileNav[open] summary span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.mobileNav[open] summary span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobileNav nav {
  position: absolute;
  top: 55px;
  right: 0;
  display: grid;
  width: 255px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobileNav nav a {
  padding: 13px 12px;
  border-bottom: 1px solid rgba(113, 61, 12, 0.1);
  font-size: 14px;
  font-weight: 700;
}

.mobileNav nav a:last-child {
  margin-top: 8px;
  border: 0;
  border-radius: 10px;
  color: var(--white);
  background: var(--coral);
  text-align: center;
}

.hero {
  position: relative;
  min-height: 960px;
  padding: 94px 0 0;
  background: radial-gradient(circle at 78% 20%, rgba(247, 200, 75, 0.25) 0 135px, transparent 136px), linear-gradient(180deg, var(--cream), #fff5e5);
  overflow: hidden;
}

.heroGrid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: center;
  min-height: 680px;
}

.heroCopy {
  padding: 0 40px 60px 0;
}

.editionPill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 9px 16px;
  border: 1px solid rgba(113, 61, 12, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brown);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.editionPill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.hero h1 {
  margin-bottom: 29px;
  color: var(--brown);
  font-size: clamp(64px, 6vw, 84px);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 1.15;
}

.heroLead {
  max-width: 570px;
  margin-bottom: 13px;
  font-size: 18px;
  line-height: 2;
}

.heroAudience {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--brown);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 62px;
  padding: 0 28px;
  border: 2px solid var(--brown);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.buttonPrimary {
  border-color: var(--coral);
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 13px 26px rgba(238, 61, 43, 0.2);
}

.buttonOutline {
  color: var(--brown);
  background: rgba(255, 255, 255, 0.35);
}

.heroVisual {
  position: relative;
  height: 690px;
}

.heroSun {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(247, 200, 75, 0.42);
}

.heroProductFrame {
  position: absolute;
  top: 0;
  right: 8px;
  width: 510px;
  height: 670px;
  padding: 4px;
  border: 12px solid rgba(255, 255, 255, 0.92);
  border-radius: 245px 245px 46px 46px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(2deg);
}

.heroProductFrame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.moveBadge {
  position: absolute;
  top: 60px;
  left: -12px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 15px 35px rgba(105, 40, 27, 0.22);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  transform: rotate(-8deg);
}

.heroWave {
  position: absolute;
  right: -10%;
  bottom: 0;
  width: 62%;
  border-radius: 60% 0 0 0 / 100% 0 0 0;
  transform-origin: right bottom;
}

.heroWaveBack {
  z-index: 1;
  height: 285px;
  background: var(--ocean);
  transform: rotate(-5deg);
}

.heroWaveFront {
  z-index: 2;
  height: 205px;
  background: #6bcddd;
  transform: rotate(2deg);
}

.proofBar {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(113, 61, 12, 0.14);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(75, 45, 20, 0.09);
}

.proofItem {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 98px;
  font-size: 14px;
  font-weight: 800;
}

.proofItem + .proofItem {
  border-left: 1px solid rgba(113, 61, 12, 0.13);
}

.proofItem b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ocean);
  font-size: 11px;
}

.sectionLabel {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 25px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.3;
}

.sectionLabel::before {
  content: "";
  flex: 0 0 42px;
  height: 3px;
  border-radius: 3px;
  background: currentColor;
}

.sectionLabelLight {
  color: var(--yellow);
}

.splitHeading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: end;
  gap: 40px;
}

.splitHeading h2,
.lineupHeading h2,
.modelSection > .container > h2,
.storyCopy h2,
.exclusiveCopy h2,
.futureGrid h2,
.faqHeading h2,
.contactIntro h2,
.companyHeading h2 {
  margin-bottom: 0;
  color: var(--brown);
  font-size: clamp(40px, 4.2vw, 52px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.35;
}

.splitHeading > p {
  margin-bottom: 5px;
  font-size: 17px;
  line-height: 2;
}

.experienceSection {
  background: var(--white);
  overflow: hidden;
}

.watermark {
  position: absolute;
  top: 65px;
  right: -30px;
  color: rgba(22, 169, 199, 0.06);
  font-family: Georgia, serif;
  font-size: 195px;
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1;
  pointer-events: none;
}

.experienceGrid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 72px;
}

.experienceCard {
  position: relative;
  min-height: 300px;
  padding: 39px 34px;
  border-radius: 27px;
  background: var(--sand);
  overflow: hidden;
}

.experienceCard:nth-child(2) {
  background: var(--sky);
}

.experienceCard:nth-child(3) {
  background: #f5efd7;
}

.cardMeta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 45px;
}

.cardMeta span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.cardMeta b {
  color: rgba(113, 61, 12, 0.13);
  font-family: Georgia, serif;
  font-size: 55px;
  line-height: 0.8;
}

.experienceCard h3,
.benefitCard h3,
.modelCard h3,
.contactGuide h3,
.formSuccess h3 {
  margin-bottom: 15px;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.45;
}

.experienceCard p,
.benefitCard p,
.modelCard p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.95;
}

.experienceCard > i {
  position: absolute;
  right: -26px;
  bottom: -32px;
  width: 120px;
  height: 120px;
  border: 18px solid rgba(238, 61, 43, 0.09);
  border-radius: 50%;
}

.lineupSection {
  background: var(--sand);
}

.lineupHeading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 65px;
}

.lineupHeading p {
  margin-bottom: 9px;
  color: var(--brown);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.productGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.productCard {
  border-radius: 34px;
  background: var(--white);
  box-shadow: 0 22px 55px rgba(82, 53, 29, 0.09);
  overflow: hidden;
}

.productImage {
  position: relative;
  height: 615px;
  overflow: hidden;
}

.productImage::before {
  content: "";
  position: absolute;
  top: 62px;
  left: 50%;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  transform: translateX(-50%);
}

.productImageBlue {
  background: linear-gradient(180deg, #f7fdfe, var(--white));
}

.productImageBlue::before {
  background: #dff6fb;
}

.productImageSand {
  background: linear-gradient(180deg, #fff7ed, var(--white));
}

.productImageSand::before {
  background: #fff0d4;
}

.productImage img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 20px 50px 4px;
  object-fit: contain;
  filter: drop-shadow(0 15px 16px rgba(78, 56, 37, 0.12));
  transition: transform 0.5s ease;
}

.productCard:hover .productImage img {
  transform: scale(1.025);
}

.productImage > span {
  position: absolute;
  top: 22px;
  right: 23px;
  z-index: 4;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ocean);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.productInfo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 34px 34px;
  border-top: 1px solid rgba(113, 61, 12, 0.08);
}

.productInfo small {
  color: var(--coral);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.productInfo h3 {
  margin: 6px 0 0;
  color: var(--brown);
  font-size: 25px;
  font-weight: 800;
}

.productInfo i {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: 2px solid var(--brown);
  border-radius: 50%;
  color: var(--brown);
  font-size: 20px;
  font-style: normal;
}

.prototypeNote,
.exclusiveNote {
  margin: 28px 0 0;
  color: rgba(51, 38, 28, 0.62);
  font-size: 12px;
  text-align: right;
}

.hotelSection {
  color: var(--white);
  background: var(--brown);
  overflow: hidden;
}

.hotelCircle {
  position: absolute;
  top: -270px;
  right: -170px;
  width: 640px;
  height: 640px;
  border: 85px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
}

.splitHeadingLight h2 {
  color: var(--white);
}

.splitHeadingLight > p {
  color: rgba(255, 255, 255, 0.76);
}

.benefitGrid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 68px;
}

.benefitCard {
  min-height: 350px;
  padding: 32px 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
}

.benefitCard > b {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 58px;
  border-radius: 18px;
  color: var(--brown);
  background: var(--yellow);
  font-size: 20px;
}

.benefitCard h3 {
  color: var(--white);
  font-size: 21px;
}

.benefitCard p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.modelSection {
  background: var(--white);
}

.modelSection > .container > h2 {
  max-width: 770px;
}

.modelGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 65px;
}

.modelCard {
  position: relative;
  min-height: 405px;
  padding: 38px 33px;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
}

.modelCard small {
  display: block;
  margin-bottom: 110px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.modelCard p {
  position: relative;
  z-index: 2;
  min-height: 82px;
}

.modelCard span {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-top: 18px;
  padding: 7px 12px;
  border-radius: 8px;
  color: var(--brown);
  background: var(--sand);
  font-size: 11px;
  font-weight: 800;
}

.modelCard > b {
  position: absolute;
  right: 18px;
  bottom: -42px;
  color: rgba(113, 61, 12, 0.055);
  font-family: Georgia, serif;
  font-size: 165px;
  line-height: 1;
}

.storySection {
  color: var(--white);
  background: linear-gradient(90deg, var(--ocean-deep) 0 42%, var(--ocean) 42%);
}

.storyGrid {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 900px;
}

.storyPoster {
  position: relative;
  align-self: center;
  min-height: 680px;
  margin-right: 44px;
  padding: 55px 48px;
  border-radius: 38px;
  color: var(--brown);
  background: var(--yellow);
  box-shadow: 0 30px 70px rgba(4, 74, 88, 0.22);
  overflow: hidden;
}

.storyPoster::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -95px;
  width: 340px;
  height: 340px;
  border: 60px solid rgba(238, 61, 43, 0.18);
  border-radius: 50%;
}

.storyPoster small {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.storyPoster h2 {
  margin-top: 48px;
  color: var(--brown);
  font-size: clamp(44px, 4.7vw, 56px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.32;
}

.storyPoster p {
  position: absolute;
  right: 48px;
  bottom: 48px;
  left: 48px;
  z-index: 2;
  margin-bottom: 0;
  padding-top: 25px;
  border-top: 2px solid rgba(113, 61, 12, 0.35);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.8;
}

.storyCopy {
  align-self: center;
  padding: 90px 0 90px 45px;
}

.storyCopy h2 {
  color: var(--white);
}

.storyCopy > p {
  margin: 30px 0 42px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 16px;
  line-height: 2.05;
}

.storyCopy ol {
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  list-style: none;
}

.storyCopy li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.storyCopy li b {
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.storyCopy li span {
  font-size: 14px;
  font-weight: 700;
}

.exclusiveSection {
  background: var(--cream);
}

.exclusiveSection::before {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -135px;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: var(--sky);
}

.exclusiveCard {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 605px;
  border-radius: 42px;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 25px 70px rgba(117, 45, 30, 0.18);
  overflow: hidden;
}

.exclusiveCopy {
  padding: 73px 60px;
}

.exclusiveCopy h2 {
  color: var(--white);
}

.exclusiveCopy > p {
  max-width: 580px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.86);
}

.motifTags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.motifTags span {
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.exclusiveArt {
  position: relative;
  background: var(--coral-light);
  overflow: hidden;
}

.exclusiveSun {
  position: absolute;
  top: 55px;
  left: 50%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--yellow);
  transform: translateX(-50%);
}

.exclusiveSun i {
  position: absolute;
  top: 55px;
  left: 70px;
  width: 200px;
  height: 250px;
  border: 24px solid var(--brown);
  border-bottom: 0;
  border-radius: 110px 110px 0 0;
}

.exclusiveSun b {
  position: absolute;
  top: 140px;
  left: 140px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--coral);
}

.exclusiveArt strong {
  position: absolute;
  right: 40px;
  bottom: 58px;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 54px;
  letter-spacing: -0.05em;
  line-height: 0.92;
  transform: rotate(-6deg);
}

.exclusiveNote {
  text-align: center;
}

.futureSection {
  padding: 118px 0;
  background: var(--sky);
}

.futureGrid {
  display: grid;
  grid-template-columns: 38% 62%;
  align-items: center;
  gap: 75px;
}

.okinawaMark {
  position: relative;
  display: grid;
  place-items: center;
  width: 350px;
  height: 350px;
  margin-inline: auto;
  border-radius: 50%;
  color: var(--white);
  background: var(--ocean);
}

.okinawaMark > i {
  position: absolute;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.okinawaMark > i:first-child {
  width: 258px;
  height: 258px;
}

.okinawaMark > i:nth-child(2) {
  width: 170px;
  height: 170px;
}

.okinawaMark span {
  position: relative;
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-align: center;
}

.okinawaMark strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, serif;
  font-size: 48px;
  letter-spacing: -0.06em;
}

.futureGrid p:last-child {
  max-width: 700px;
  margin: 28px 0 0;
  font-size: 17px;
  line-height: 2;
}

.faqSection {
  background: var(--white);
}

.faqGrid {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 75px;
  align-items: start;
}

.faqHeading {
  position: sticky;
  top: 125px;
}

.faqHeading > p:last-child {
  max-width: 380px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.faqList {
  border-top: 2px solid var(--brown);
}

.faqList details {
  border-bottom: 1px solid var(--line);
}

.faqList summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 102px;
  padding: 25px 5px;
  color: var(--brown);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.65;
  cursor: pointer;
  list-style: none;
}

.faqList summary::-webkit-details-marker {
  display: none;
}

.faqList summary i {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sand);
}

.faqList summary i::before,
.faqList summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  border-radius: 2px;
  background: var(--coral);
  transform: translate(-50%, -50%);
}

.faqList summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease;
}

.faqList details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faqList details > div {
  padding: 0 60px 32px 5px;
}

.faqList details p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.contactSection {
  position: relative;
  padding: 125px 0 135px;
  color: var(--white);
  background: var(--brown-deep);
}

.contactIntro {
  text-align: center;
}

.contactIntro .sectionLabel {
  justify-content: center;
}

.contactIntro .sectionLabel::before {
  display: none;
}

.contactIntro h2 {
  color: var(--white);
  font-size: clamp(46px, 5vw, 59px);
}

.contactIntro > p:last-child {
  margin: 25px 0 48px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.contactPanel {
  display: grid;
  grid-template-columns: 34% 66%;
  border-radius: 36px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.contactGuide {
  position: relative;
  padding: 62px 45px;
  color: var(--white);
  background: var(--ocean-deep);
  overflow: hidden;
}

.contactGuide::after {
  content: "";
  position: absolute;
  right: -105px;
  bottom: -105px;
  width: 300px;
  height: 300px;
  border: 55px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.contactGuideLabel,
.formKicker {
  margin-bottom: 24px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.contactGuide h3 {
  color: var(--white);
  font-size: 30px;
}

.contactGuide > p:not(.contactGuideLabel) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.contactGuide dl {
  margin: 50px 0 0;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.contactGuide dl div {
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.contactGuide dt {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 700;
}

.contactGuide dd {
  margin: 3px 0 0;
  font-size: 16px;
  font-weight: 800;
}

.contactGuide dd a {
  font-size: 24px;
  letter-spacing: 0.02em;
}

.contactSteps {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 45px;
}

.contactSteps span {
  display: grid;
  gap: 5px;
  justify-items: center;
  font-size: 10px;
  font-weight: 800;
}

.contactSteps b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--brown-deep);
  background: var(--yellow);
}

.contactSteps i {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.inquiryForm,
.formSuccess {
  color: var(--brown-deep);
  background: var(--white);
}

.inquiryForm {
  padding: 56px 58px 60px;
}

.formHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.formHeader p,
.formHeader span {
  margin: 0;
}

.formHeader p {
  color: var(--brown);
  font-size: 20px;
  font-weight: 800;
}

.formHeader span {
  color: var(--muted);
  font-size: 11px;
}

.formHeader b,
.field > span b {
  display: inline-block;
  margin-left: 6px;
  padding: 3px 7px;
  border-radius: 5px;
  color: var(--white);
  background: var(--coral);
  font-size: 9px;
  letter-spacing: 0.08em;
  vertical-align: 2px;
}

.formGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px 20px;
}

.field {
  display: grid;
  gap: 9px;
}

.fieldWide {
  grid-column: 1 / -1;
}

.field > span,
.interestFieldset legend {
  color: var(--brown);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(113, 61, 12, 0.22);
  border-radius: 12px;
  outline: none;
  background: #fffcf8;
  font-size: 15px;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input,
.field select {
  height: 54px;
  padding: 0 16px;
}

.field textarea {
  min-height: 150px;
  padding: 14px 16px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ocean);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(22, 169, 199, 0.12);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #aaa29b;
}

.interestFieldset {
  margin: 32px 0 0;
  padding: 0;
  border: 0;
}

.interestFieldset legend {
  margin-bottom: 12px;
}

.interestFieldset legend small {
  margin-left: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.checkGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.checkGrid label {
  position: relative;
  cursor: pointer;
}

.checkGrid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkGrid span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 9px 12px 9px 41px;
  border: 1px solid rgba(113, 61, 12, 0.18);
  border-radius: 10px;
  background: #fffcf8;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  transition: border 0.2s ease, background 0.2s ease;
}

.checkGrid span::before {
  content: "";
  position: absolute;
  left: 14px;
  width: 17px;
  height: 17px;
  border: 1px solid rgba(113, 61, 12, 0.3);
  border-radius: 4px;
  background: var(--white);
}

.checkGrid input:checked + span {
  border-color: var(--ocean);
  background: var(--sky);
}

.checkGrid input:checked + span::before {
  border-color: var(--ocean);
  background: var(--ocean);
  box-shadow: inset 0 0 0 4px var(--white);
}

.checkGrid input:focus-visible + span {
  outline: 3px solid rgba(22, 169, 199, 0.25);
  outline-offset: 2px;
}

.messageField {
  margin-top: 30px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consentField {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 11px;
  max-width: 620px;
  margin: 32px auto 0;
  cursor: pointer;
}

.consentField input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 5px;
  accent-color: var(--ocean);
}

.consentField span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.submitButton {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(430px, 100%);
  height: 68px;
  margin: 28px auto 0;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 13px 28px rgba(238, 61, 43, 0.2);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.submitButton:hover:not(:disabled),
.submitButton:focus-visible:not(:disabled) {
  background: #d92f20;
  transform: translateY(-2px);
}

.submitButton:disabled {
  opacity: 0.6;
  cursor: wait;
}

.formNote {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.formError {
  margin: 22px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  color: #a72017;
  background: #fff0ed;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.formSuccess {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 760px;
  padding: 70px 55px;
  text-align: center;
}

.successMark {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 25px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ocean);
  font-size: 38px;
  font-weight: 800;
}

.formSuccess .formKicker {
  color: var(--coral);
}

.formSuccess h3 {
  color: var(--brown);
  font-size: 36px;
}

.formSuccess > p:not(.formKicker) {
  color: var(--muted);
}

.referenceBox {
  display: grid;
  gap: 5px;
  width: min(400px, 100%);
  margin: 30px 0;
  padding: 18px;
  border-radius: 14px;
  background: var(--sand);
}

.referenceBox span {
  color: var(--muted);
  font-size: 11px;
}

.referenceBox strong {
  color: var(--brown);
  font-size: 20px;
  letter-spacing: 0.06em;
}

.formSuccess button,
.formSuccess .formResetButton {
  padding: 12px 24px;
  border: 1px solid var(--brown);
  border-radius: 999px;
  background: var(--white);
  font-weight: 700;
  cursor: pointer;
}

.formSuccess .formResetButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.companySection {
  padding: 125px 0;
  background: var(--cream);
}

.companyGrid {
  display: grid;
  grid-template-columns: 36% 64%;
  gap: 80px;
  align-items: start;
}

.companyHeading h2 {
  font-size: 48px;
}

.companyHeading > p:last-child {
  max-width: 330px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.companyTable {
  border-top: 2px solid var(--brown);
}

.companyTable > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 25px;
  padding: 23px 8px;
  border-bottom: 1px solid var(--line);
}

.companyTable dt {
  color: var(--brown);
  font-size: 13px;
  font-weight: 800;
}

.companyTable dd {
  margin: 0;
  font-size: 14px;
}

.companyTable a {
  text-decoration: underline;
  text-decoration-color: rgba(113, 61, 12, 0.25);
  text-underline-offset: 5px;
}

.siteFooter {
  padding: 38px 0;
  color: rgba(255, 255, 255, 0.62);
  background: #281d16;
}

.footerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brandFooter {
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--white);
}

.brandFooter .brandLogo {
  width: 168px;
}

.footerInner p {
  margin: 0;
  font-size: 11px;
}

:focus-visible {
  outline: 3px solid rgba(22, 169, 199, 0.5);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  :root {
    --page: min(920px, calc(100% - 48px));
  }

  .desktopNav {
    gap: 19px;
  }

  .heroGrid {
    grid-template-columns: 50% 50%;
  }

  .heroProductFrame {
    width: 450px;
    height: 620px;
  }

  .moveBadge {
    left: -25px;
  }

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

  .benefitCard {
    min-height: 280px;
  }

  .benefitCard > b {
    margin-bottom: 35px;
  }

  .contactPanel {
    grid-template-columns: 38% 62%;
  }

  .contactGuide {
    padding-inline: 32px;
  }

  .inquiryForm {
    padding-inline: 40px;
  }
}

@media (max-width: 860px) {
  :root {
    --page: min(680px, calc(100% - 36px));
  }

  .section {
    padding: 92px 0;
  }

  .siteHeader {
    height: 76px;
  }

  .desktopNav {
    display: none;
  }

  .mobileNav {
    display: block;
  }

  .hero {
    min-height: 1440px;
    padding-top: 68px;
  }

  .heroGrid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .heroCopy {
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(55px, 12vw, 72px);
  }

  .heroVisual {
    height: 680px;
    margin-top: 55px;
  }

  .heroProductFrame {
    right: 50%;
    width: 480px;
    max-width: 88%;
    height: 640px;
    transform: translateX(50%) rotate(2deg);
  }

  .moveBadge {
    left: 6%;
  }

  .heroWave {
    width: 120%;
  }

  .proofBar {
    bottom: 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .proofItem:nth-child(3) {
    border-left: 0;
  }

  .proofItem:nth-child(n + 3) {
    border-top: 1px solid rgba(113, 61, 12, 0.13);
  }

  .splitHeading,
  .storyGrid,
  .futureGrid,
  .faqGrid,
  .companyGrid {
    grid-template-columns: 1fr;
  }

  .splitHeading {
    gap: 28px;
  }

  .experienceGrid,
  .modelGrid {
    grid-template-columns: 1fr;
  }

  .experienceCard,
  .modelCard {
    min-height: auto;
  }

  .modelCard small {
    margin-bottom: 65px;
  }

  .productGrid {
    gap: 20px;
  }

  .productImage {
    height: 520px;
  }

  .lineupHeading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 45px;
  }

  .storySection {
    background: linear-gradient(180deg, var(--ocean-deep) 0 50%, var(--ocean) 50%);
  }

  .storyGrid {
    padding-block: 80px;
  }

  .storyPoster {
    width: min(570px, 100%);
    margin: 0 auto;
  }

  .storyCopy {
    padding: 100px 0 0;
  }

  .exclusiveCard {
    grid-template-columns: 1fr;
  }

  .exclusiveArt {
    min-height: 540px;
  }

  .futureGrid {
    gap: 60px;
  }

  .faqGrid {
    gap: 52px;
  }

  .faqHeading {
    position: static;
  }

  .contactPanel {
    grid-template-columns: 1fr;
  }

  .contactGuide {
    padding: 50px 45px;
  }

  .contactSteps {
    max-width: 380px;
  }

  .companyGrid {
    gap: 45px;
  }

  .companyHeading > p:last-child {
    max-width: 520px;
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 32px);
  }

  body {
    font-size: 15px;
  }

  .brandLogo {
    width: 158px;
  }

  .brandFooter .brandLogo {
    width: 150px;
  }

  .hero {
    min-height: 1225px;
    padding-top: 48px;
  }

  .editionPill {
    max-width: 100%;
    font-size: 9px;
    letter-spacing: 0.09em;
  }

  .hero h1 {
    font-size: 52px;
  }

  .heroLead {
    font-size: 16px;
  }

  .heroActions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .heroVisual {
    height: 500px;
    margin-top: 45px;
  }

  .heroProductFrame {
    width: 340px;
    height: 470px;
    border-width: 8px;
    border-radius: 175px 175px 35px 35px;
  }

  .heroSun {
    width: 180px;
    height: 180px;
  }

  .moveBadge {
    top: 20px;
    left: 0;
    width: 88px;
    height: 88px;
    font-size: 11px;
  }

  .proofBar {
    border-radius: 16px;
  }

  .proofItem {
    min-height: 75px;
    gap: 8px;
    padding: 8px;
    font-size: 11px;
  }

  .proofItem b {
    width: 28px;
    height: 28px;
    font-size: 9px;
  }

  .watermark {
    top: 55px;
    font-size: 105px;
  }

  .splitHeading h2,
  .lineupHeading h2,
  .modelSection > .container > h2,
  .storyCopy h2,
  .exclusiveCopy h2,
  .futureGrid h2,
  .faqHeading h2,
  .companyHeading h2 {
    font-size: 36px;
  }

  .splitHeading > p,
  .futureGrid p:last-child {
    font-size: 15px;
  }

  .faqList summary {
    min-height: 88px;
    font-size: 15px;
  }

  .faqList details > div {
    padding-right: 5px;
  }

  .experienceGrid {
    margin-top: 45px;
  }

  .experienceCard {
    padding: 30px 27px 37px;
  }

  .cardMeta {
    margin-bottom: 30px;
  }

  .productGrid {
    grid-template-columns: 1fr;
  }

  .productImage {
    height: 520px;
  }

  .productInfo {
    padding-inline: 25px;
  }

  .prototypeNote {
    text-align: left;
  }

  .benefitGrid {
    grid-template-columns: 1fr;
  }

  .benefitCard {
    min-height: auto;
  }

  .benefitCard > b {
    margin-bottom: 30px;
  }

  .modelGrid {
    margin-top: 45px;
  }

  .modelCard {
    padding: 32px 27px;
  }

  .storyGrid {
    width: 100%;
    padding: 54px 16px 70px;
  }

  .storyPoster {
    min-height: 570px;
    padding: 42px 30px;
    border-radius: 28px;
  }

  .storyPoster h2 {
    font-size: 42px;
  }

  .storyPoster p {
    right: 30px;
    bottom: 35px;
    left: 30px;
    font-size: 16px;
  }

  .storyCopy {
    padding-top: 75px;
  }

  .exclusiveCopy {
    padding: 55px 28px;
  }

  .exclusiveArt {
    min-height: 420px;
  }

  .exclusiveSun {
    width: 280px;
    height: 280px;
  }

  .exclusiveSun i {
    top: 43px;
    left: 57px;
    width: 166px;
    height: 205px;
    border-width: 19px;
  }

  .exclusiveSun b {
    top: 112px;
    left: 112px;
    width: 56px;
    height: 56px;
  }

  .exclusiveArt strong {
    right: 30px;
    bottom: 38px;
    font-size: 43px;
  }

  .okinawaMark {
    width: 280px;
    height: 280px;
  }

  .okinawaMark > i:first-child {
    width: 205px;
    height: 205px;
  }

  .okinawaMark > i:nth-child(2) {
    width: 135px;
    height: 135px;
  }

  .okinawaMark strong {
    font-size: 40px;
  }

  .contactSection {
    padding: 90px 0;
  }

  .contactIntro h2 {
    font-size: 40px;
  }

  .contactIntro > p:last-child {
    font-size: 15px;
  }

  .contactPanel {
    width: 100%;
    border-radius: 0;
  }

  .contactGuide,
  .inquiryForm {
    padding: 45px 22px;
  }

  .formGrid,
  .checkGrid {
    grid-template-columns: 1fr;
  }

  .formHeader {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .formSuccess {
    min-height: 650px;
    padding-inline: 24px;
  }

  .companyTable > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .footerInner {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .heroProductFrame {
    animation: gentleFloat 5s ease-in-out infinite;
  }

  @keyframes gentleFloat {
    0%, 100% { margin-top: 0; }
    50% { margin-top: -9px; }
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* WordPress integration */
.admin-bar .siteHeader {
  top: 32px;
}

.pluginFallback {
  display: grid;
  align-content: center;
  min-height: 620px;
  padding: 64px 58px;
}

.pluginFallback .formKicker {
  color: var(--coral);
}

.pluginFallback h3 {
  margin-bottom: 18px;
  color: var(--brown);
  font-size: 34px;
  line-height: 1.45;
}

.pluginFallback p {
  color: var(--muted);
}

.pluginFallback a {
  color: var(--brown);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.adminOnlyNote {
  margin-top: 26px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--sand);
  font-size: 12px;
}

.formError a {
  font-weight: 800;
  text-decoration: underline;
}

.genericPage {
  min-height: 68vh;
  padding: 140px 0;
  background: var(--cream);
}

.genericPageInner {
  max-width: 900px;
}

.genericPage h1 {
  margin-bottom: 28px;
  color: var(--brown);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.35;
}

.entryContent > * + * {
  margin-top: 1.4em;
}

@media (max-width: 782px) {
  .admin-bar .siteHeader {
    top: 46px;
  }
}

@media (max-width: 620px) {
  .pluginFallback {
    min-height: 480px;
    padding: 45px 22px;
  }

  .pluginFallback h3 {
    font-size: 30px;
  }

  .genericPage {
    padding: 90px 0;
  }
}
