:root {
  --paper: #f5efe5;
  --paper-light: #fbf8f1;
  --paper-deep: #ebe0d0;
  --ink: #211a16;
  --ink-soft: #54483f;
  --muted: #89796c;
  --cinnabar: #a94932;
  --cinnabar-dark: #843421;
  --tea: #766044;
  --gold: #bc8b57;
  --line: rgba(86, 63, 44, 0.22);
  --dark: #211914;
  --serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", STSong, SimSun, serif;
  --kai: "Kaiti SC", STKaiti, KaiTi, serif;
  --sans: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --shadow: 0 28px 70px rgba(54, 36, 24, 0.14);
  --shell: min(1180px, calc(100% - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  opacity: 0.3;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(119, 87, 53, 0.055) 0 1px, transparent 1.5px),
    radial-gradient(circle at 75% 65%, rgba(119, 87, 53, 0.045) 0 1px, transparent 1.5px);
  background-size: 23px 23px, 31px 31px;
  pointer-events: none;
  content: "";
}

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

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

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

button {
  font: inherit;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 20px;
  top: -60px;
  padding: 12px 20px;
  color: #fff;
  background: var(--cinnabar);
  border-radius: 2px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.policy-header {
  border-color: rgba(90, 65, 45, 0.12);
  background: rgba(248, 243, 234, 0.92);
  box-shadow: 0 8px 30px rgba(47, 31, 20, 0.06);
  backdrop-filter: blur(15px);
}

.header-inner {
  display: flex;
  width: var(--shell);
  height: 82px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-seal {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: #f7ead6;
  background: var(--cinnabar);
  border: 1px solid rgba(85, 30, 18, 0.2);
  border-radius: 6px 2px 7px 3px;
  box-shadow: inset 0 0 0 3px rgba(255, 243, 217, 0.18);
  font-family: var(--kai);
  font-size: 24px;
  line-height: 1;
  transform: rotate(-2deg);
}

.brand-logo {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  overflow: hidden;
  background: #b43a32;
  border: 1px solid rgba(85, 30, 18, 0.2);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(108, 41, 31, 0.14);
}

.brand-logo img {
  position: absolute;
  top: 43%;
  left: 50%;
  width: 67px;
  max-width: none;
  height: 67px;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.19em;
}

.site-nav,
.policy-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--ink-soft);
  font-size: 14px;
}

.site-nav a,
.policy-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.site-nav > a:not(.nav-policy)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--cinnabar);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav > a:hover,
.policy-nav > a:hover {
  color: var(--cinnabar);
}

.site-nav > a:not(.nav-policy):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-policy {
  padding: 10px 17px;
  color: var(--cinnabar-dark) !important;
  border: 1px solid rgba(169, 73, 50, 0.45);
  border-radius: 2px;
}

.nav-policy:hover {
  color: #fff !important;
  background: var(--cinnabar);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: transparent;
  border: 0;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 920px;
  padding-top: 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(225, 174, 91, 0.2), transparent 25%),
    linear-gradient(180deg, #f8eedc 0%, #f4ebdc 60%, #efe4d4 100%);
}

.hero::after {
  position: absolute;
  right: -80px;
  top: 80px;
  width: 360px;
  height: 420px;
  opacity: 0.16;
  background:
    radial-gradient(ellipse at 20% 75%, transparent 28%, var(--ink) 29% 30%, transparent 31%),
    linear-gradient(110deg, transparent 47%, var(--ink) 48% 49%, transparent 50%);
  filter: blur(0.3px);
  content: "";
  transform: rotate(-11deg);
}

.hero-sun {
  position: absolute;
  left: 6%;
  top: 210px;
  width: 132px;
  height: 132px;
  opacity: 0.62;
  background: linear-gradient(145deg, #d86d45, #c95237);
  border-radius: 50%;
  filter: blur(0.2px);
}

.hero-sun::after {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 234, 201, 0.8);
  border-radius: inherit;
  content: "";
}

.hero-mountains {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.hero-mountains-back {
  height: 54%;
  opacity: 0.19;
  fill: #788581;
  filter: blur(1px);
}

.hero-mountains-front {
  height: 42%;
  opacity: 0.14;
  fill: #4f5f5e;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 778px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: 66px;
}

.hero-copy {
  padding: 62px 0 82px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--cinnabar);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.29em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow > span {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--cinnabar);
}

.hero h1 {
  margin: 0;
  color: #2f241d;
  font-family: var(--serif);
  font-size: clamp(68px, 7vw, 104px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.12;
}

.hero h1 em {
  color: var(--cinnabar-dark);
  font-family: var(--kai);
  font-style: normal;
  letter-spacing: 0.12em;
}

.hero-lead {
  max-width: 570px;
  margin: 33px 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fffaf2;
  background: var(--cinnabar);
  box-shadow: 0 12px 24px rgba(142, 56, 37, 0.16);
}

.button-primary:hover {
  background: var(--cinnabar-dark);
}

.button-ghost {
  color: var(--ink-soft);
  border-color: rgba(67, 48, 34, 0.38);
  background: rgba(255, 252, 246, 0.4);
}

.button-ghost:hover {
  color: var(--cinnabar-dark);
  border-color: var(--cinnabar);
}

.hero-facts {
  display: flex;
  margin: 52px 0 0;
  gap: 0;
}

.hero-facts > div {
  min-width: 145px;
  padding: 0 26px;
  border-left: 1px solid var(--line);
}

.hero-facts > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts dt {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
}

.hero-facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  display: flex;
  height: 720px;
  align-items: center;
  justify-content: center;
}

.phone {
  position: relative;
  padding: 10px;
  overflow: hidden;
  background: #171310;
  border: 1px solid rgba(255, 247, 232, 0.2);
  border-radius: 42px;
  box-shadow: 0 38px 80px rgba(47, 31, 20, 0.27), inset 0 0 0 1px rgba(255, 255, 255, 0.09);
}

.phone::before,
.phone::after {
  position: absolute;
  left: -3px;
  width: 3px;
  background: #473a32;
  border-radius: 2px 0 0 2px;
  content: "";
}

.phone::before {
  top: 110px;
  height: 54px;
}

.phone::after {
  top: 177px;
  height: 82px;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 19px;
  left: 50%;
  width: 31%;
  height: 19px;
  background: #171310;
  border-radius: 0 0 13px 13px;
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  background: var(--paper);
  border-radius: 33px;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-hero {
  z-index: 2;
  width: 300px;
  aspect-ratio: 750 / 1624;
  transform: rotate(2deg);
  animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-11px) rotate(1deg); }
}

.ink-orbit {
  position: absolute;
  border: 1px solid rgba(105, 77, 54, 0.16);
  border-radius: 50%;
}

.orbit-one {
  width: 460px;
  height: 460px;
}

.orbit-two {
  width: 560px;
  height: 560px;
  border-style: dashed;
  transform: rotate(20deg);
}

.vertical-inscription {
  position: absolute;
  z-index: 2;
  top: 82px;
  right: -8px;
  margin: 0;
  color: rgba(78, 59, 45, 0.6);
  font-family: var(--kai);
  font-size: 15px;
  letter-spacing: 0.35em;
  writing-mode: vertical-rl;
}

.hero-note {
  position: absolute;
  z-index: 3;
  min-width: 130px;
  padding: 15px 18px;
  background: rgba(255, 251, 243, 0.88);
  border: 1px solid rgba(113, 81, 54, 0.25);
  box-shadow: 0 16px 35px rgba(48, 33, 23, 0.11);
  backdrop-filter: blur(8px);
}

.hero-note::before {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--cinnabar);
  border-left: 1px solid var(--cinnabar);
  content: "";
}

.hero-note b,
.hero-note span {
  display: block;
}

.hero-note b {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 15px;
}

.hero-note span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.note-top {
  top: 200px;
  right: -8px;
}

.note-bottom {
  bottom: 170px;
  left: -18px;
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(53, 42, 34, 0.55);
  font-size: 10px;
  letter-spacing: 0.25em;
  transform: translateX(-50%);
}

.scroll-hint i {
  position: relative;
  display: block;
  width: 42px;
  height: 1px;
  background: rgba(53, 42, 34, 0.34);
}

.scroll-hint i::after {
  position: absolute;
  right: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  background: var(--cinnabar);
  border-radius: 50%;
  content: "";
  animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%, 100% { transform: translateX(-34px); opacity: 0.4; }
  50% { transform: translateX(0); opacity: 1; }
}

.section-heading {
  max-width: 700px;
}

.section-heading-center {
  margin: 0 auto 64px;
  text-align: center;
}

.section-kicker {
  margin-bottom: 18px;
}

.section-kicker.light {
  color: #d9ac76;
}

.section-heading h2,
.experience-heading h2,
.services-copy h2,
.about-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.35;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 25px auto 0;
  color: var(--muted);
  font-family: var(--serif);
  line-height: 2;
}

.philosophy {
  overflow: hidden;
  background: var(--paper-light);
}

.philosophy::before,
.philosophy::after {
  position: absolute;
  width: 210px;
  height: 420px;
  opacity: 0.07;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.philosophy::before {
  top: -180px;
  left: -90px;
}

.philosophy::after {
  right: -130px;
  bottom: -240px;
  transform: rotate(50deg);
}

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

.value-card {
  position: relative;
  min-height: 330px;
  padding: 45px 38px 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(246, 240, 231, 0.54);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.value-card:hover {
  background: #fffdf8;
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.value-card::after {
  position: absolute;
  right: -55px;
  bottom: -75px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(169, 73, 50, 0.15);
  border-radius: 50%;
  content: "";
}

.value-index {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(69, 52, 40, 0.26);
  font-family: var(--kai);
  font-size: 13px;
}

.value-icon {
  display: grid;
  width: 67px;
  height: 67px;
  margin-bottom: 30px;
  place-items: center;
  color: var(--cinnabar);
  border: 1px solid rgba(169, 73, 50, 0.45);
  border-radius: 50% 50% 46% 54%;
  font-family: var(--kai);
  font-size: 28px;
}

.value-card h3 {
  margin: 0 0 15px;
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: 0.08em;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.experience {
  padding-bottom: 150px;
  overflow: hidden;
  color: #f5ead9;
  background:
    radial-gradient(circle at 90% 18%, rgba(166, 104, 55, 0.16), transparent 26%),
    linear-gradient(125deg, #1d1713 0%, #2c211a 52%, #211914 100%);
}

.experience::before {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: repeating-linear-gradient(115deg, transparent 0 70px, rgba(255,255,255,0.025) 71px, transparent 72px 145px);
  content: "";
}

.experience-heading {
  position: relative;
  z-index: 1;
  display: grid;
  margin-bottom: 80px;
  align-items: end;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
}

.experience-heading > p {
  max-width: 510px;
  margin: 0 0 7px;
  color: #bdad9d;
  font-family: var(--serif);
  line-height: 2;
}

.screen-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  outline: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}

.screen-card {
  margin: 0;
}

.screen-card-up {
  transform: translateY(38px);
}

.phone-gallery {
  width: 100%;
  padding: 7px;
  border-radius: 32px;
  box-shadow: 0 30px 45px rgba(0, 0, 0, 0.3);
  aspect-ratio: 750 / 1624;
}

.phone-gallery .phone-screen {
  border-radius: 26px;
}

.phone-gallery .phone-speaker {
  top: 13px;
  height: 15px;
}

.screen-card figcaption {
  display: grid;
  padding: 25px 5px 0;
  grid-template-columns: 36px 1fr;
  gap: 2px 10px;
}

.screen-card figcaption span {
  color: #c8915c;
  font-family: var(--serif);
  font-size: 12px;
  grid-row: span 2;
}

.screen-card figcaption strong {
  color: #f8ecda;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.screen-card figcaption small {
  color: #8f8074;
  font-size: 11px;
}

.services {
  background: #f3eadf;
}

.services-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 110px;
}

.services-copy {
  position: sticky;
  top: 130px;
}

.services-intro {
  max-width: 470px;
  margin: 28px 0;
  color: var(--muted);
  font-family: var(--serif);
  line-height: 2;
}

.text-link {
  display: inline-flex;
  padding-bottom: 8px;
  align-items: center;
  gap: 22px;
  color: var(--cinnabar-dark);
  border-bottom: 1px solid rgba(169, 73, 50, 0.4);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  min-height: 175px;
  padding: 36px 15px 36px 0;
  align-items: start;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 80px 1fr;
  gap: 28px;
  transition: padding-left 0.25s ease, background 0.25s ease;
}

.service-item:hover {
  padding-left: 18px;
  background: rgba(255, 253, 248, 0.35);
}

.service-number {
  color: var(--cinnabar);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.service-item h3 {
  margin: -7px 0 12px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.service-item p {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.about {
  min-height: 600px;
  overflow: hidden;
  color: #f8ecdb;
  background: #302219;
}

.about::before {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    linear-gradient(90deg, rgba(29, 20, 15, 0.85), rgba(29, 20, 15, 0.25)),
    radial-gradient(circle at 78% 35%, rgba(194, 127, 72, 0.35), transparent 20%);
  content: "";
}

.about-landscape {
  position: absolute;
  right: -4%;
  bottom: -40px;
  width: 62%;
  height: 75%;
  opacity: 0.19;
  background:
    linear-gradient(145deg, transparent 0 38%, #d9c2a3 39% 41%, transparent 42%),
    linear-gradient(35deg, transparent 0 44%, #d9c2a3 45% 47%, transparent 48%),
    linear-gradient(160deg, transparent 0 47%, #d9c2a3 48% 51%, transparent 52%);
  filter: blur(1px);
  transform: skewX(-8deg);
}

.about-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 0.45fr 1fr;
  gap: 110px;
}

.about-seal {
  position: relative;
  display: grid;
  width: 245px;
  height: 245px;
  place-items: center;
  border: 1px solid rgba(226, 190, 145, 0.4);
  border-radius: 50%;
}

.about-seal::before,
.about-seal::after {
  position: absolute;
  border: 1px solid rgba(226, 190, 145, 0.2);
  border-radius: inherit;
  content: "";
}

.about-seal::before { inset: 13px; }
.about-seal::after { inset: -22px; border-style: dashed; }

.about-seal span {
  font-family: var(--kai);
  font-size: 100px;
  line-height: 1;
}

.about-seal small {
  position: absolute;
  right: 32px;
  bottom: 38px;
  color: #d49a64;
  font-family: var(--serif);
  letter-spacing: 0.22em;
}

.about-logo {
  width: min(100%, 280px);
  padding: 7px;
  overflow: hidden;
  background: #a9362f;
  border: 1px solid rgba(236, 207, 174, 0.34);
  border-radius: 50%;
  box-shadow: 0 30px 65px rgba(11, 7, 5, 0.28);
}

.about-logo img {
  width: 100%;
  border-radius: 50%;
}

.about-copy {
  max-width: 650px;
}

.about-copy > p:not(.section-kicker) {
  max-width: 590px;
  margin: 28px 0 36px;
  color: #c8b9aa;
  font-family: var(--serif);
  line-height: 2;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.button-paper {
  color: var(--ink);
  background: #f5ead8;
}

.button-paper:hover {
  background: #fff8eb;
}

.android-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #b9a99c;
  font-size: 12px;
}

.android-label i {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #82a572;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(130, 165, 114, 0.13);
}

.site-footer {
  color: #d1c2b3;
  background: #17120f;
}

.footer-main {
  display: grid;
  padding: 75px 0 66px;
  grid-template-columns: 1fr 0.75fr;
  gap: 80px;
}

.brand-footer .brand-copy strong {
  color: #f5ead8;
}

.brand-footer .brand-copy small {
  color: #8d7e72;
}

.footer-main > div:first-child > p {
  max-width: 400px;
  margin: 24px 0 0;
  color: #817368;
  font-family: var(--serif);
  line-height: 1.9;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 55px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-links h3 {
  margin: 0 0 9px;
  color: #f4e7d4;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.footer-links a {
  color: #817368;
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #d9b384;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  color: #71655d;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.screen-card-up.reveal {
  transform: translateY(62px);
}

.screen-card-up.reveal.is-visible {
  transform: translateY(38px);
}

.reveal-delay-small { transition-delay: 0.1s; }
.reveal-delay { transition-delay: 0.2s; }
.reveal-delay-long { transition-delay: 0.3s; }

/* Privacy policy */
.policy-page {
  background: #f5efe6;
}

.policy-header {
  position: fixed;
}

.policy-nav {
  gap: 28px;
}

.policy-hero {
  position: relative;
  min-height: 470px;
  padding-top: 82px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(248, 239, 224, 0.97), rgba(240, 224, 200, 0.86)),
    radial-gradient(circle at 75% 45%, #d4ab77, transparent 24%);
}

.policy-hero::before,
.policy-hero::after {
  position: absolute;
  right: -5%;
  bottom: -35%;
  width: 63%;
  height: 88%;
  opacity: 0.1;
  background: #4b5956;
  clip-path: polygon(0 100%, 9% 71%, 18% 84%, 32% 38%, 44% 73%, 57% 26%, 67% 66%, 78% 41%, 91% 72%, 100% 55%, 100% 100%);
  content: "";
}

.policy-hero::after {
  right: -18%;
  bottom: -55%;
  opacity: 0.07;
  transform: scale(1.25);
}

.policy-moon {
  position: absolute;
  right: 16%;
  top: 135px;
  width: 130px;
  height: 130px;
  opacity: 0.5;
  background: #d56b46;
  border-radius: 50%;
}

.policy-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 104px;
}

.policy-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 74px);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.policy-hero-inner > p:not(.eyebrow) {
  max-width: 670px;
  margin: 23px 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  line-height: 1.9;
}

.policy-meta {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 22px;
}

.policy-meta > span {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.policy-meta small {
  color: var(--muted);
  font-size: 11px;
}

.policy-meta strong {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
}

.policy-meta i {
  width: 1px;
  height: 18px;
  background: var(--line);
}

.policy-section {
  position: relative;
  padding: 72px 0 110px;
}

.policy-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 45px;
}

.policy-aside {
  position: sticky;
  top: 112px;
  padding: 28px 24px;
  background: rgba(255, 252, 246, 0.65);
  border: 1px solid var(--line);
}

.policy-aside > p {
  margin: 0 0 20px;
  padding-bottom: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.08em;
}

.policy-aside nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.policy-aside nav a {
  padding: 9px 0 9px 11px;
  color: var(--muted);
  border-left: 1px solid transparent;
  font-size: 12px;
  line-height: 1.55;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.policy-aside nav a:hover,
.policy-aside nav a.is-active {
  color: var(--cinnabar);
  border-left-color: var(--cinnabar);
}

.policy-back {
  display: inline-flex;
  margin-top: 25px;
  align-items: center;
  gap: 8px;
  color: var(--cinnabar-dark);
  font-size: 12px;
}

.policy-document {
  min-width: 0;
  padding: 52px clamp(28px, 5vw, 70px) 42px;
  background: #fffdf8;
  border: 1px solid rgba(94, 69, 48, 0.17);
  box-shadow: 0 22px 65px rgba(55, 36, 23, 0.08);
}

.policy-document-head {
  display: flex;
  padding-bottom: 32px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.document-mark {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  color: #fff4e6;
  background: var(--cinnabar);
  border-radius: 3px;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.policy-document-head p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 11px;
}

.policy-document-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.policy-notice {
  display: grid;
  margin: 35px 0 42px;
  padding: 21px 23px;
  background: #f8f0e4;
  border-left: 3px solid var(--cinnabar);
  grid-template-columns: 78px 1fr;
  gap: 15px;
}

.policy-notice strong {
  color: var(--cinnabar-dark);
  font-family: var(--serif);
  font-size: 14px;
}

.policy-notice p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.policy-loading {
  display: flex;
  min-height: 220px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
}

.policy-loading span {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(169, 73, 50, 0.18);
  border-top-color: var(--cinnabar);
  border-radius: 50%;
  animation: policy-spin 0.8s linear infinite;
}

@keyframes policy-spin { to { transform: rotate(360deg); } }

.policy-content {
  scroll-margin-top: 110px;
}

.policy-content h2 {
  margin: 56px 0 23px;
  padding: 0 0 13px;
  color: #30241d;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
  scroll-margin-top: 110px;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content h3 {
  margin: 31px 0 13px;
  color: #382a22;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
}

.policy-content p {
  margin: 0 0 15px;
  color: #5f5148;
  font-size: 14px;
  line-height: 2;
  text-align: justify;
}

.policy-content .policy-special {
  margin: 28px 0;
  padding: 20px 22px;
  color: #493126;
  background: rgba(169, 73, 50, 0.055);
  border: 1px solid rgba(169, 73, 50, 0.18);
  font-weight: 600;
}

.policy-content a {
  color: var(--cinnabar-dark);
  border-bottom: 1px solid rgba(169, 73, 50, 0.28);
  word-break: break-all;
}

.policy-fallback {
  padding: 28px;
  color: var(--ink-soft);
  background: #f8f1e7;
  border: 1px solid var(--line);
  text-align: center;
}

.policy-fallback a {
  display: inline-block;
  margin-top: 10px;
  color: var(--cinnabar-dark);
  border-bottom: 1px solid var(--cinnabar);
}

.policy-fallback-frame {
  width: 100%;
  min-height: 900px;
  background: #fff;
  border: 1px solid var(--line);
}

.policy-document-footer {
  display: flex;
  margin-top: 55px;
  padding-top: 25px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
}

.policy-document-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.policy-document-footer a {
  flex: none;
  color: var(--cinnabar-dark);
  font-size: 12px;
}

.policy-site-footer .footer-bottom a {
  transition: color 0.2s ease;
}

.policy-site-footer .footer-bottom a:hover {
  color: #d6ad7b;
}

/* Simple privacy document */
.policy-page-simple {
  color: #28231f;
  background: #f4f2ed;
}

.policy-page-simple::before {
  display: none;
}

.policy-page-simple .policy-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: #e5e0d8;
  box-shadow: none;
}

.simple-policy-main {
  min-height: calc(100vh - 80px);
  padding: 138px 24px 80px;
}

.simple-policy-document {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 54px 70px 72px;
  background: #fff;
  border: 1px solid #e5e0d8;
}

.simple-policy-back {
  display: inline-flex;
  margin-bottom: 46px;
  align-items: center;
  gap: 8px;
  color: #766d65;
  font-size: 13px;
  transition: color 0.2s ease;
}

.simple-policy-back:hover {
  color: var(--cinnabar);
}

.simple-policy-title {
  margin-bottom: 46px;
  padding-bottom: 34px;
  border-bottom: 1px solid #ded8d0;
}

.simple-policy-title > p {
  margin: 0 0 13px;
  color: #8a817a;
  font-size: 13px;
}

.simple-policy-title h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.simple-policy-meta {
  display: flex;
  margin-top: 20px;
  gap: 30px;
  color: #7e756e;
  font-size: 12px;
}

.policy-page-simple .policy-content h2 {
  margin: 50px 0 21px;
  padding-bottom: 12px;
  color: #28231f;
  border-bottom-color: #e5e0d8;
  font-family: var(--sans);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0;
}

.policy-page-simple .policy-content h3 {
  margin: 30px 0 12px;
  color: #332e2a;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
}

.policy-page-simple .policy-content p {
  margin-bottom: 15px;
  color: #544e49;
  font-size: 15px;
  line-height: 1.95;
}

.policy-page-simple .policy-content .policy-special {
  margin: 26px 0;
  padding: 0;
  color: #332e2a;
  background: transparent;
  border: 0;
  font-weight: 600;
}

.policy-page-simple .policy-fallback-frame {
  min-height: 1100px;
  border: 0;
}

.simple-policy-footer {
  color: #756d67;
  background: #fff;
  border-top: 1px solid #e5e0d8;
}

.simple-policy-footer .page-shell {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 12px;
}

.simple-policy-footer p {
  margin: 0;
}

.simple-policy-footer div div {
  display: flex;
  gap: 24px;
}

.simple-policy-footer a:hover {
  color: var(--cinnabar);
}

@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 30px;
  }

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

  .phone-hero {
    width: 270px;
  }

  .orbit-one { width: 400px; height: 400px; }
  .orbit-two { width: 470px; height: 470px; }
  .note-top { right: -3px; }
  .note-bottom { left: -5px; }

  .services-layout {
    gap: 65px;
  }

  .about-inner {
    gap: 70px;
  }

  .policy-layout {
    grid-template-columns: 205px minmax(0, 1fr);
    gap: 28px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  .section {
    padding: 96px 0;
  }

  .header-inner {
    height: 72px;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    visibility: hidden;
    padding: 108px 32px 40px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    color: var(--ink);
    background: rgba(248, 242, 232, 0.98);
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .site-header.is-open .site-nav {
    visibility: visible;
    opacity: 1;
  }

  .site-nav a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 19px;
  }

  .site-nav > a:not(.nav-policy)::after { display: none; }

  .site-nav .nav-policy {
    margin-top: 18px;
    padding: 15px 18px;
    text-align: center;
  }

  .site-header.is-open .nav-toggle > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.is-open .nav-toggle > span:nth-child(2) { opacity: 0; }
  .site-header.is-open .nav-toggle > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero {
    min-height: 1250px;
    padding-top: 72px;
  }

  .hero-inner {
    display: flex;
    min-height: auto;
    flex-direction: column;
    gap: 0;
  }

  .hero-copy {
    width: 100%;
    padding: 90px 0 25px;
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(56px, 13vw, 80px);
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-facts {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    height: 650px;
  }

  .phone-hero {
    width: 265px;
  }

  .note-top { right: 10%; }
  .note-bottom { left: 10%; }

  .vertical-inscription { right: 8%; }

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

  .value-card {
    min-height: auto;
  }

  .experience-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .screen-gallery {
    width: calc(100vw - 18px);
    margin-right: calc((100vw - var(--shell)) / -2);
    padding: 0 18px 22px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    grid-template-columns: repeat(4, 255px);
    scrollbar-width: thin;
    scrollbar-color: #795b46 transparent;
  }

  .screen-card {
    scroll-snap-align: start;
  }

  .screen-card-up,
  .screen-card-up.reveal,
  .screen-card-up.reveal.is-visible {
    transform: none;
  }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .services-copy {
    position: static;
  }

  .about-inner {
    grid-template-columns: 220px 1fr;
    gap: 48px;
  }

  .about-seal {
    width: 190px;
    height: 190px;
  }

  .about-seal span {
    font-size: 78px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-aside {
    position: static;
  }

  .policy-aside nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 30px);
  }

  .section {
    padding: 78px 0;
  }

  .brand-seal {
    width: 38px;
    height: 38px;
    font-size: 21px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand-logo img {
    width: 58px;
    height: 58px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .hero {
    min-height: 1170px;
  }

  .hero-copy {
    padding-top: 76px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .hero h1 {
    font-size: clamp(49px, 15vw, 66px);
    letter-spacing: 0.03em;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.9;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: min(100%, 300px);
  }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-facts > div {
    min-width: 0;
    padding: 0 9px;
  }

  .hero-facts dt {
    font-size: 12px;
  }

  .hero-facts dd {
    font-size: 9px;
    line-height: 1.5;
  }

  .hero-visual {
    height: 600px;
  }

  .phone-hero {
    width: 238px;
  }

  .orbit-one { width: 330px; height: 330px; }
  .orbit-two { width: 390px; height: 390px; }

  .hero-note {
    min-width: 106px;
    padding: 12px 14px;
  }

  .hero-note b { font-size: 13px; }
  .note-top { top: 174px; right: 0; }
  .note-bottom { bottom: 120px; left: 0; }
  .vertical-inscription { display: none; }
  .scroll-hint { bottom: 20px; }

  .section-heading-center {
    margin-bottom: 45px;
  }

  .section-heading h2,
  .experience-heading h2,
  .services-copy h2,
  .about-copy h2 {
    font-size: 39px;
  }

  .value-card {
    padding: 36px 28px 32px;
  }

  .experience {
    padding-bottom: 90px;
  }

  .experience-heading {
    margin-bottom: 55px;
  }

  .screen-gallery {
    grid-template-columns: repeat(4, 230px);
  }

  .service-item {
    min-height: auto;
    padding: 30px 4px 30px 0;
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .service-item h3 {
    font-size: 21px;
  }

  .about {
    min-height: auto;
  }

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

  .about-seal {
    width: 165px;
    height: 165px;
    margin-inline: auto;
  }

  .about-seal span {
    font-size: 70px;
  }

  .about-logo {
    width: 180px;
    margin-inline: auto;
  }

  .about-copy {
    text-align: center;
  }

  .about-actions {
    justify-content: center;
    flex-direction: column;
  }

  .footer-main {
    padding: 58px 0 45px;
  }

  .footer-links {
    gap: 25px;
  }

  .footer-bottom {
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    line-height: 1.6;
  }

  .policy-nav {
    gap: 0;
  }

  .policy-nav .nav-policy {
    padding: 8px 12px;
    font-size: 12px;
  }

  .policy-hero {
    min-height: 495px;
    padding-top: 72px;
  }

  .policy-hero-inner {
    padding-top: 93px;
    text-align: center;
  }

  .policy-hero h1 {
    font-size: 50px;
  }

  .policy-hero-inner > p:not(.eyebrow) {
    font-size: 14px;
  }

  .policy-meta {
    justify-content: center;
    gap: 12px;
  }

  .policy-meta > span {
    align-items: center;
    flex-direction: column;
    gap: 4px;
  }

  .policy-section {
    padding: 35px 0 70px;
  }

  .policy-aside {
    padding: 22px 18px;
  }

  .policy-aside nav {
    grid-template-columns: 1fr;
  }

  .policy-document {
    padding: 35px 20px 30px;
  }

  .policy-document-head {
    align-items: flex-start;
  }

  .policy-document-head h2 {
    font-size: 17px;
    line-height: 1.6;
  }

  .policy-notice {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .policy-content h2 {
    font-size: 21px;
  }

  .policy-content h3 {
    font-size: 16px;
  }

  .policy-content p {
    font-size: 13px;
    line-height: 1.9;
  }

  .policy-document-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .policy-page-simple .policy-nav a {
    display: inline-flex;
    font-size: 13px;
  }

  .simple-policy-main {
    padding: 102px 0 45px;
  }

  .simple-policy-document {
    width: 100%;
    padding: 32px 20px 50px;
    border-right: 0;
    border-left: 0;
  }

  .simple-policy-back {
    margin-bottom: 32px;
  }

  .simple-policy-title {
    margin-bottom: 35px;
    padding-bottom: 27px;
  }

  .simple-policy-title h1 {
    font-size: 34px;
  }

  .simple-policy-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .policy-page-simple .policy-content h2 {
    margin-top: 42px;
    font-size: 20px;
    line-height: 1.55;
  }

  .policy-page-simple .policy-content h3 {
    font-size: 16px;
  }

  .policy-page-simple .policy-content p {
    font-size: 14px;
    line-height: 1.9;
  }

  .simple-policy-footer .page-shell {
    min-height: auto;
    padding: 24px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    line-height: 1.7;
  }

  .simple-policy-footer .page-shell > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
