:root {
  --brand: #079b76;
  --brand-dark: #056b55;
  --brand-deep: #103f35;
  --ink: #183a34;
  --muted: #63766f;
  --paper: #fffef9;
  --soft: #f4f8f5;
  --mint: #91c9ac;
  --mint-soft: #e7f3ec;
  --sand: #d8cfaa;
  --sand-soft: #f4f1e3;
  --moss: #88aa80;
  --moss-soft: #e9f0e5;
  --leaf: #5f9878;
  --leaf-soft: #e3ede6;
  --teal: #2b756a;
  --teal-soft: #e1eeea;
  --line: #c9dfd4;
  --radius-sm: 20px;
  --radius-md: 32px;
  --radius-lg: 48px;
  --shadow-ink: 10px 11px 0 var(--ink);
  --shadow-soft: 10px 11px 0 #cfdfd5;
}

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

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Hiragino Maru Gothic ProN",
    "Hiragino Sans",
    "Yu Gothic",
    "Meiryo",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

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

.shell {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--sand);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 4px solid var(--brand-dark);
  outline-offset: 4px;
}

/* Header */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 2px solid rgba(24, 58, 52, 0.1);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family:
    "Arial Rounded MT Bold",
    "Hiragino Maru Gothic ProN",
    sans-serif;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  overflow: hidden;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: #fff;
  box-shadow: 4px 5px 0 var(--sand);
  transition: transform 0.2s ease;
}

.brand-mark img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.site-brand:hover .brand-mark {
  transform: rotate(-4deg) translateY(-1px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.nav-secondary::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-secondary:hover::after {
  transform: scaleX(1);
}

.nav-contact {
  min-height: 44px;
  padding: 9px 19px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--brand-dark);
  color: #fff;
  box-shadow: 4px 5px 0 var(--sand);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-contact:hover {
  box-shadow: 2px 3px 0 var(--sand);
  transform: translate(2px, 2px);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 118px;
  border-bottom: 3px dashed var(--line);
  background:
    radial-gradient(circle at 8% 16%, rgba(216, 207, 170, 0.74) 0 25px, transparent 26px),
    radial-gradient(circle at 91% 13%, rgba(136, 170, 128, 0.48) 0 34px, transparent 35px),
    radial-gradient(circle at 72% 78%, rgba(95, 152, 120, 0.15) 0 180px, transparent 181px),
    radial-gradient(circle, rgba(7, 155, 118, 0.16) 1.7px, transparent 1.8px) 0 0 / 28px 28px,
    linear-gradient(135deg, #f7fbf8 0%, #edf5f0 52%, #f6f4ea 100%);
}

.hero::before {
  position: absolute;
  bottom: 7%;
  left: -70px;
  width: 190px;
  height: 190px;
  border: 20px solid rgba(145, 201, 172, 0.34);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, 0.97fr);
  align-items: center;
  gap: 88px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 32px;
  margin-bottom: 24px;
  padding: 5px 14px;
  border: 2px solid var(--brand);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.hero h1 {
  margin-bottom: 28px;
  font-family:
    "Arial Rounded MT Bold",
    "Hiragino Maru Gothic ProN",
    "Hiragino Sans",
    sans-serif;
  font-size: clamp(58px, 6.3vw, 84px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 1.08;
}

.hero h1 span {
  position: relative;
  display: inline-block;
  color: var(--brand);
}

.hero h1 span::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 3%;
  height: 10px;
  border-radius: 50%;
  background: var(--sand);
  content: "";
  opacity: 0.9;
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.button-primary {
  background: var(--brand-dark);
  color: #fff;
  box-shadow: 6px 7px 0 var(--ink);
}

.button-secondary {
  background: #fff;
  color: var(--ink);
  box-shadow: 6px 7px 0 var(--sand);
}

.button:hover {
  transform: translate(3px, 3px);
}

.button-primary:hover {
  box-shadow: 3px 4px 0 var(--ink);
}

.button-secondary:hover {
  box-shadow: 3px 4px 0 var(--sand);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.symbol-stage {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 56px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.36)),
    var(--sand-soft);
  box-shadow: 16px 17px 0 var(--moss);
  transform: rotate(1deg);
}

.symbol-stage::before,
.symbol-stage::after {
  position: absolute;
  border: 4px solid var(--ink);
  content: "";
}

.symbol-stage::before {
  top: 56px;
  right: 54px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--mint);
}

.symbol-stage::after {
  bottom: 50px;
  left: 48px;
  width: 54px;
  height: 20px;
  border-width: 4px 0 0;
  border-radius: 50%;
  box-shadow:
    0 11px 0 -7px var(--teal),
    0 22px 0 -7px var(--leaf);
  transform: rotate(-9deg);
}

.symbol-sticker {
  position: relative;
  z-index: 2;
  width: min(72%, 390px);
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 44px;
  background: #fff;
  box-shadow:
    9px 10px 0 var(--brand),
    16px 18px 0 rgba(24, 58, 52, 0.11);
  transform: rotate(-2.5deg);
}

.symbol-sticker img {
  width: 100%;
  height: auto;
}

.orbit-label {
  position: absolute;
  z-index: 3;
  padding: 8px 15px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 4px 5px 0 var(--ink);
}

.orbit-move {
  top: 25%;
  left: 5%;
  background: var(--moss-soft);
  transform: rotate(-8deg);
}

.orbit-connect {
  right: 3%;
  bottom: 25%;
  background: var(--leaf-soft);
  transform: rotate(7deg);
}

.orbit-enjoy {
  bottom: 5%;
  left: 38%;
  background: var(--mint-soft);
  transform: rotate(-2deg);
}

.stage-dot {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
}

.stage-dot-one {
  top: 19%;
  left: 15%;
  width: 18px;
  height: 18px;
  background: var(--teal);
}

.stage-dot-two {
  right: 17%;
  bottom: 16%;
  width: 13px;
  height: 13px;
  background: var(--moss);
}

.stage-spark {
  position: absolute;
  z-index: 3;
  top: 5%;
  left: 38%;
  color: var(--leaf);
  font-size: 42px;
  line-height: 1;
  transform: rotate(13deg);
}

/* Shared sections */

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 810px;
  margin-bottom: 52px;
}

.section-heading h2,
.symbol-copy h2,
.contact-card h2 {
  margin-bottom: 0;
  font-family:
    "Arial Rounded MT Bold",
    "Hiragino Maru Gothic ProN",
    "Hiragino Sans",
    sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.16;
}

.section-kicker {
  border-color: var(--ink);
  background: var(--mint-soft);
  color: var(--brand-deep);
}

/* Philosophy */

.philosophy-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, var(--sand-soft) 0 120px, transparent 121px),
    #fff;
}

.philosophy-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(250px, 0.65fr);
  align-items: center;
  gap: 52px;
  margin-bottom: 34px;
  overflow: hidden;
  padding: 52px;
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 2px, transparent 2.2px) 0 0 / 26px 26px,
    var(--brand-deep);
  box-shadow: 12px 13px 0 var(--mint);
  color: #fff;
}

.philosophy-copy p {
  margin-bottom: 18px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.95;
}

.philosophy-copy p:last-child {
  margin-bottom: 0;
}

.philosophy-note {
  margin-bottom: 0;
  padding: 28px;
  border: 3px solid var(--ink);
  border-radius: 30px;
  background: var(--sand);
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.65;
  box-shadow: 7px 8px 0 var(--moss);
  transform: rotate(2deg);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.principle-card {
  min-height: 250px;
  padding: 30px;
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  box-shadow: 8px 9px 0 #d2e1d7;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.principle-card:nth-child(2) {
  transform: translateY(20px);
}

.principle-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.principle-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.principle-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
}

.principle-sand {
  background: var(--sand-soft);
}

.principle-moss {
  background: var(--moss-soft);
}

.principle-leaf {
  background: var(--leaf-soft);
}

/* Symbol */

.symbol-section {
  border-top: 3px dashed var(--line);
  border-bottom: 3px dashed var(--line);
  background:
    radial-gradient(circle, rgba(7, 155, 118, 0.12) 1.6px, transparent 1.8px) 0 0 / 28px 28px,
    var(--sand-soft);
}

.symbol-card {
  display: grid;
  grid-template-columns: minmax(410px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 72px;
  padding: 56px;
  border: 3px solid var(--ink);
  border-radius: 56px;
  background: #fff;
  box-shadow: 14px 15px 0 var(--sand);
}

.symbol-showcase {
  position: relative;
  display: grid;
  min-height: 480px;
  overflow: hidden;
  place-items: center;
  border: 3px dashed var(--brand);
  border-radius: 42px;
  background:
    radial-gradient(circle at 22% 22%, var(--moss) 0 8px, transparent 9px),
    radial-gradient(circle at 78% 80%, var(--leaf) 0 11px, transparent 12px),
    var(--mint-soft);
}

.symbol-plate {
  position: relative;
  z-index: 2;
  width: min(75%, 340px);
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 38px;
  background: #fff;
  box-shadow: 9px 10px 0 var(--moss);
  transform: rotate(1.5deg);
}

.symbol-plate img {
  width: 100%;
  height: auto;
}

.symbol-wave {
  position: absolute;
  z-index: 1;
  width: 120px;
  height: 30px;
  border-top: 5px solid var(--teal);
  border-radius: 50%;
}

.symbol-wave-one {
  top: 60px;
  left: -18px;
  transform: rotate(8deg);
}

.symbol-wave-two {
  right: -18px;
  bottom: 58px;
  border-color: var(--brand);
  transform: rotate(-9deg);
}

.symbol-pop {
  position: absolute;
  z-index: 3;
  top: 24px;
  right: 32px;
  color: var(--moss);
  font-size: 45px;
  font-weight: 900;
  transform: rotate(16deg);
}

.symbol-copy h2 {
  margin-bottom: 28px;
}

.symbol-copy > p:not(.section-kicker) {
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9;
}

.symbol-meanings {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.symbol-meanings li {
  padding: 7px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--sand-soft);
  font-size: 13px;
  font-weight: 900;
}

.symbol-meanings li:nth-child(2) {
  background: var(--moss-soft);
}

.symbol-meanings li:nth-child(3) {
  background: var(--leaf-soft);
}

.symbol-meanings li:nth-child(4) {
  background: var(--mint-soft);
}

/* Products */

.products-section {
  background:
    radial-gradient(circle at 4% 92%, rgba(136, 170, 128, 0.17) 0 150px, transparent 151px),
    var(--soft);
}

.section-heading-row {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 80px;
}

.section-intro {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

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

.product-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 44px;
  background: #fff;
  box-shadow: 11px 12px 0 #cfdfd5;
  color: var(--ink);
  text-decoration: none;
}

a.product-card {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

a.product-card:hover {
  box-shadow: 7px 8px 0 #cfdfd5;
  transform: translate(4px, 4px);
}

.product-media {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  border-bottom: 3px dashed currentColor;
}

.product-media::before,
.product-media::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.product-media::before {
  top: 32px;
  right: 44px;
  width: 54px;
  height: 54px;
  border: 3px solid var(--ink);
  background: var(--sand);
}

.product-media::after {
  bottom: 32px;
  left: 34px;
  width: 18px;
  height: 18px;
  background: var(--moss);
  box-shadow:
    24px 7px 0 var(--leaf),
    13px 29px 0 var(--brand);
}

.product-media img {
  position: relative;
  z-index: 2;
  width: min(66%, 310px);
  height: auto;
  aspect-ratio: auto;
  border: 6px solid #fff;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 8px 9px 0 rgba(24, 58, 52, 0.16);
  transform: rotate(-2deg);
}

.product-golflog .product-media img {
  transform: rotate(2deg);
}

.product-surflog .product-media {
  background: var(--teal-soft);
  color: var(--teal);
}

.product-golflog .product-media {
  background: var(--mint-soft);
  color: var(--brand);
}

.product-badge,
.product-status {
  position: absolute;
  z-index: 3;
  top: 26px;
  padding: 7px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.product-badge {
  left: 26px;
}

.product-status {
  right: 26px;
  background: var(--sand);
}

.product-content {
  padding: 34px 36px 38px;
}

.product-content h3 {
  margin-bottom: 9px;
  font-family:
    "Arial Rounded MT Bold",
    "Hiragino Maru Gothic ProN",
    sans-serif;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.product-content p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.product-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
}

.product-action span {
  font-size: 20px;
  transition: transform 0.2s ease;
}

a.product-card:hover .product-action span {
  transform: translateX(5px);
}

.product-action-muted {
  color: var(--brand-dark);
}

/* Contact */

.contact-section {
  background: #fff;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 52px;
  overflow: hidden;
  padding: 64px;
  border: 3px solid var(--ink);
  border-radius: 56px;
  background:
    radial-gradient(circle, rgba(24, 58, 52, 0.07) 2px, transparent 2.2px) 0 0 / 28px 28px,
    var(--moss-soft);
  box-shadow: 13px 14px 0 var(--brand);
}

.contact-card .section-kicker {
  background: #fff;
}

.contact-card h2 {
  max-width: 760px;
  margin-bottom: 23px;
}

.contact-card p:not(.section-kicker) {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

.contact-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-width: 210px;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 22px 16px 28px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--sand);
  color: var(--ink);
  box-shadow: 7px 8px 0 var(--ink);
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-button span {
  font-size: 24px;
}

.contact-button:hover {
  box-shadow: 3px 4px 0 var(--ink);
  transform: translate(4px, 4px);
}

.contact-dot,
.contact-spark {
  position: absolute;
}

.contact-dot {
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.contact-dot-one {
  top: 42px;
  right: 8%;
  width: 55px;
  height: 55px;
  background: var(--mint);
}

.contact-dot-two {
  right: 29%;
  bottom: -34px;
  width: 100px;
  height: 100px;
  background: var(--leaf-soft);
}

.contact-spark {
  top: 32px;
  left: 55%;
  color: var(--moss);
  font-size: 44px;
  transform: rotate(11deg);
}

/* Footer */

.site-footer {
  padding: 72px 0 26px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1.5px, transparent 1.7px) 0 0 / 28px 28px,
    var(--brand-deep);
  color: #fff;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 56px;
}

.footer-brand {
  margin-bottom: 0;
  font-family:
    "Arial Rounded MT Bold",
    "Hiragino Maru Gothic ProN",
    sans-serif;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 26px;
}

.footer-nav a {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--sand);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.footer-bottom p {
  margin-bottom: 0;
}

/* Responsive */

@media (hover: hover) {
  .principle-card:hover {
    box-shadow: 5px 6px 0 #d2e1d7;
    transform: translate(3px, 3px);
  }

  .principle-card:nth-child(2):hover {
    transform: translate(3px, 23px);
  }
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .symbol-stage {
    width: min(100%, 700px);
    min-height: 560px;
    margin-inline: auto;
  }

  .philosophy-card {
    grid-template-columns: 1fr;
  }

  .philosophy-note {
    width: min(100%, 430px);
  }

  .symbol-card {
    grid-template-columns: 1fr;
  }

  .symbol-showcase {
    min-height: 520px;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-intro {
    max-width: 650px;
  }

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

  .contact-button {
    width: fit-content;
  }
}

@media (max-width: 780px) {
  .nav-secondary {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .principle-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: 0;
  }

  .principle-card:nth-child(2) {
    transform: none;
  }

  .product-card {
    width: min(100%, 580px);
    margin-inline: auto;
  }

  .product-media {
    min-height: 390px;
  }

  .footer-main {
    display: grid;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  :root {
    --shadow-ink: 7px 8px 0 var(--ink);
    --shadow-soft: 7px 8px 0 #cfdfd5;
  }

  .shell {
    width: min(100% - 32px, 1180px);
  }

  .header-inner {
    min-height: 70px;
    gap: 12px;
  }

  .site-brand {
    gap: 9px;
    font-size: 16px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    box-shadow: 3px 4px 0 var(--sand);
  }

  .brand-mark img {
    width: 40px;
    height: 40px;
  }

  .nav-contact {
    min-height: 40px;
    padding: 7px 13px;
    font-size: 12px !important;
    box-shadow: 3px 4px 0 var(--sand);
  }

  .hero {
    padding: 68px 0 88px;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    gap: 52px;
  }

  .eyebrow,
  .section-kicker {
    min-height: 29px;
    margin-bottom: 18px;
    padding: 4px 11px;
    font-size: 11px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(43px, 13vw, 57px);
    letter-spacing: -0.07em;
  }

  .hero h1 span::after {
    bottom: -4px;
    height: 7px;
  }

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

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-tags {
    gap: 7px;
  }

  .hero-tags li {
    font-size: 11px;
  }

  .symbol-stage {
    min-height: 390px;
    border-radius: 38px;
    box-shadow: 9px 10px 0 var(--moss);
  }

  .symbol-stage::before {
    top: 34px;
    right: 28px;
    width: 40px;
    height: 40px;
  }

  .symbol-stage::after {
    bottom: 38px;
    left: 26px;
    transform: scale(0.74) rotate(-9deg);
  }

  .symbol-sticker {
    width: 70%;
    border-radius: 30px;
    box-shadow:
      6px 7px 0 var(--brand),
      10px 12px 0 rgba(24, 58, 52, 0.11);
  }

  .orbit-label {
    padding: 6px 10px;
    font-size: 10px;
    box-shadow: 3px 4px 0 var(--ink);
  }

  .orbit-move {
    top: 20%;
    left: 3%;
  }

  .orbit-connect {
    right: 2%;
    bottom: 24%;
  }

  .orbit-enjoy {
    bottom: 4%;
    left: 34%;
  }

  .stage-spark {
    top: 4%;
    font-size: 30px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .symbol-copy h2,
  .contact-card h2 {
    font-size: clamp(36px, 10.5vw, 48px);
  }

  .philosophy-card {
    gap: 32px;
    margin-bottom: 26px;
    padding: 30px 24px;
    border-radius: 34px;
    box-shadow: 8px 9px 0 var(--mint);
  }

  .philosophy-copy p {
    font-size: 15px;
    line-height: 1.9;
  }

  .philosophy-note {
    padding: 22px;
    border-radius: 24px;
    font-size: 17px;
    box-shadow: 5px 6px 0 var(--moss);
  }

  .principle-grid {
    gap: 18px;
  }

  .principle-card {
    padding: 25px;
    border-radius: 27px;
    box-shadow: 6px 7px 0 #d2e1d7;
  }

  .principle-number {
    margin-bottom: 20px;
  }

  .principle-card h3 {
    font-size: 21px;
  }

  .symbol-card {
    gap: 42px;
    padding: 22px;
    border-radius: 38px;
    box-shadow: 8px 9px 0 var(--sand);
  }

  .symbol-showcase {
    min-height: 330px;
    border-radius: 29px;
  }

  .symbol-plate {
    width: 72%;
    border-radius: 27px;
    box-shadow: 6px 7px 0 var(--moss);
  }

  .symbol-pop {
    top: 14px;
    right: 19px;
    font-size: 34px;
  }

  .symbol-copy {
    padding: 0 4px 10px;
  }

  .symbol-copy h2 {
    margin-bottom: 22px;
  }

  .symbol-copy > p:not(.section-kicker) {
    font-size: 14px;
  }

  .symbol-meanings {
    gap: 7px;
    margin-top: 24px;
  }

  .symbol-meanings li {
    padding: 6px 10px;
    font-size: 11px;
  }

  .product-grid {
    gap: 26px;
  }

  .product-card {
    border-radius: 32px;
    box-shadow: 7px 8px 0 #cfdfd5;
  }

  .product-media {
    min-height: 320px;
  }

  .product-media img {
    width: min(65%, 250px);
    border-width: 5px;
    box-shadow: 6px 7px 0 rgba(24, 58, 52, 0.16);
  }

  .product-badge,
  .product-status {
    top: 18px;
    padding: 5px 10px;
    font-size: 10px;
  }

  .product-badge {
    left: 18px;
  }

  .product-status {
    right: 18px;
  }

  .product-content {
    padding: 26px 25px 29px;
  }

  .product-content h3 {
    font-size: 32px;
  }

  .contact-card {
    gap: 34px;
    padding: 34px 25px;
    border-radius: 36px;
    box-shadow: 8px 9px 0 var(--brand);
  }

  .contact-card p:not(.section-kicker) {
    font-size: 14px;
  }

  .contact-button {
    width: 100%;
    min-height: 58px;
    box-shadow: 5px 6px 0 var(--ink);
  }

  .contact-dot-one {
    top: 25px;
    right: 8%;
    width: 38px;
    height: 38px;
  }

  .contact-spark {
    top: 19px;
    left: 52%;
    font-size: 30px;
  }

  .site-footer {
    padding-top: 58px;
  }

  .footer-main {
    padding-bottom: 38px;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
  }

  .footer-bottom {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
