/* =========================================================
   Rucatur — Landing Page Styles
   ========================================================= */

:root {
  --black: #0a0908;
  --black-soft: #14110f;
  --black-warm: #1c1814;
  --ink: #2a2520;
  --gold: #c8975a;
  --gold-bright: #d9a96a;
  --gold-deep: #8a6a3a;
  --gold-pale: #e8c896;
  --cream: #f4ede0;
  --cream-soft: #d9d2c4;
  --muted: #8a847b;
  --rule: rgba(200, 151, 90, 0.18);
  --rule-soft: rgba(244, 237, 224, 0.08);
  --serif: 'Source Serif 4', 'Times New Roman', serif;
  --sans: 'Manrope', -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-text-size-adjust: 100%;
}

/* Atmospheric gold glow + grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(200, 151, 90, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 100%, rgba(200, 151, 90, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.4 0 0 0 0 0.3 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
}

main, header, section, footer, nav {
  position: relative;
  z-index: 3;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

/* Gold gradient text effect, matching logo */
/* Solid gold fallback first; gradient only applied where supported */
.gold-text,
.gold-text-readable {
  color: var(--gold);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .gold-text {
    background-image: -webkit-linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-bright) 35%, var(--gold) 60%, var(--gold-deep) 100%);
    background-image: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-bright) 35%, var(--gold) 60%, var(--gold-deep) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
            color: transparent;
  }

  /* Readable gold variant — stays bright throughout for longer passages */
  .gold-text-readable {
    background-image: -webkit-linear-gradient(left, var(--gold-pale) 0%, var(--gold-bright) 30%, var(--gold) 50%, var(--gold-bright) 70%, var(--gold-pale) 100%);
    background-image: linear-gradient(90deg, var(--gold-pale) 0%, var(--gold-bright) 30%, var(--gold) 50%, var(--gold-bright) 70%, var(--gold-pale) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
            color: transparent;
  }
}

/* =========================================================
   Navigation
   ========================================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 9, 8, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--rule-soft);
  animation: fadeDown 1s ease-out;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-logo {
  height: 32px;
  width: auto;
  display: block;
}

.nav-meta {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-soft);
  opacity: 0.7;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  min-height: 100vh;
  padding: 200px 56px 100px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: end;
  position: relative;
}

.hero-icon {
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  width: 600px;
  height: auto;
  opacity: 0.06;
  pointer-events: none;
  animation: floatIcon 12s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(-50%) translateX(0) rotate(0deg); }
  50% { transform: translateY(-50%) translateX(-20px) rotate(-2deg); }
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeUp 1.2s ease-out 0.2s both;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(60px, 8vw, 130px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 0;
  font-variation-settings: "opsz" 60;
  animation: fadeUp 1.4s ease-out 0.4s both;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
}

.hero-aside {
  padding-bottom: 16px;
  animation: fadeUp 1.4s ease-out 0.7s both;
}

.hero-lede {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
  font-weight: 300;
  font-style: italic;
  color: var(--cream-soft);
  max-width: 460px;
  margin-bottom: 48px;
  font-variation-settings: "opsz" 24;
}

.hero-coords {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 1px solid var(--rule);
  padding-left: 24px;
  opacity: 0.85;
}

.hero-coords span:first-child {
  color: var(--gold);
  font-weight: 500;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   Marquee
   ========================================================= */

.marquee {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
  overflow: hidden;
  background: var(--black-soft);
  position: relative;
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--black-soft), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--black-soft), transparent);
}

.marquee-track {
  display: flex;
  flex-shrink: 0;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 300;
  color: var(--cream-soft);
  letter-spacing: 0.005em;
  font-variation-settings: "opsz" 24;
  flex-shrink: 0;
  padding-right: 80px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.marquee-item::after {
  content: '◆';
  color: var(--gold);
  font-style: normal;
  font-size: 8px;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   Section base
   ========================================================= */

.section {
  padding: 160px 56px;
  position: relative;
}

.section-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.section-label::before {
  content: attr(data-num);
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  font-weight: 300;
  color: var(--cream-soft);
  letter-spacing: 0;
  text-transform: none;
  font-variation-settings: "opsz" 24;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--rule), transparent);
  max-width: 240px;
}

/* =========================================================
   About / What we do
   ========================================================= */

.about {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: start;
}

.about-heading {
  font-family: var(--serif);
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--cream);
  position: sticky;
  top: 140px;
  font-variation-settings: "opsz" 60;
}

.about-heading em {
  font-style: italic;
}

.about-body {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.55;
  font-weight: 300;
  color: var(--cream-soft);
  font-variation-settings: "opsz" 24;
}

.about-body p {
  margin-bottom: 32px;
}

.about-body p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 96px;
  font-weight: 300;
  font-style: italic;
  float: left;
  line-height: 0.85;
  margin: 12px 14px 0 0;
  color: var(--gold);
  font-variation-settings: "opsz" 60;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .about-body p:first-child::first-letter {
    background-image: -webkit-linear-gradient(135deg, var(--gold-pale), var(--gold-deep));
    background-image: linear-gradient(135deg, var(--gold-pale), var(--gold-deep));
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
            color: transparent;
  }
}

.about-body strong {
  font-weight: 400;
  color: var(--cream);
  font-style: italic;
}

/* =========================================================
   How / Principles
   ========================================================= */

.how {
  background: var(--black-soft);
  padding: 160px 56px;
  position: relative;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}

.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200, 151, 90, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.how > * {
  position: relative;
  z-index: 1;
}

.how-heading {
  font-family: var(--serif);
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 100px;
  max-width: 1000px;
  font-variation-settings: "opsz" 60;
}

.how-heading em {
  font-style: italic;
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-soft);
}

.principle {
  padding: 64px 56px 64px 0;
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
  transition: background 0.6s ease;
}

.principle:nth-child(odd) {
  padding-right: 80px;
}

.principle:nth-child(even) {
  padding-left: 80px;
  border-left: 1px solid var(--rule-soft);
}

.principle:hover {
  background: rgba(200, 151, 90, 0.02);
}

.principle-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
  letter-spacing: 0.02em;
  font-variation-settings: "opsz" 24;
}

.principle-title {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.1;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 48;
}

.principle-body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--cream-soft);
  max-width: 460px;
  opacity: 0.85;
}

/* =========================================================
   Clients
   ========================================================= */

.clients {
  padding: 180px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.clients::before {
  content: '';
  position: absolute;
  background-image: url('assets/clients-watermark.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 720px;
  height: 720px;
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.clients > * {
  position: relative;
  z-index: 1;
}

.clients-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}

.clients-quote {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.22;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  max-width: 1100px;
  margin: 0 auto 100px;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 60;
}

.clients-quote::before,
.clients-quote::after {
  color: var(--gold);
  font-weight: 300;
}

.clients-quote::before { content: '“'; }
.clients-quote::after { content: '”'; }

.clients-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid var(--rule);
  padding-top: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.client {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--cream);
  padding: 12px 56px;
  letter-spacing: 0.005em;
  position: relative;
  transition: color 0.4s ease;
  font-variation-settings: "opsz" 48;
}

.client:not(:last-child)::after {
  content: '◆';
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8px;
  color: var(--gold);
}

.client:hover {
  color: var(--gold-bright);
}

/* =========================================================
   Philosophy
   ========================================================= */

.philosophy {
  padding: 200px 56px;
  background: var(--black-soft);
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  border-top: 1px solid var(--rule-soft);
}

.philosophy-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 180px;
  font-weight: 300;
  line-height: 1.4;
  text-align: center;
  user-select: none;
  color: var(--gold);
  opacity: 0.9;
  font-variation-settings: "opsz" 60;
  padding: 20px 0;
  overflow: visible;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .philosophy-mark {
    background-image: -webkit-linear-gradient(135deg, var(--gold-pale) 0%, var(--gold) 50%, var(--gold-deep) 100%);
    background-image: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold) 50%, var(--gold-deep) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
            color: transparent;
  }
}

.philosophy-text {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.32;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 60;
}

.philosophy-text p {
  margin-bottom: 32px;
}

.philosophy-text em {
  font-style: italic;
}

.philosophy-text .highlight {
  font-style: italic;
  color: var(--gold);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .philosophy-text .highlight {
    background-image: -webkit-linear-gradient(135deg, var(--gold-pale), var(--gold));
    background-image: linear-gradient(135deg, var(--gold-pale), var(--gold));
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
            color: transparent;
  }
}

.philosophy-signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--cream-soft);
  text-align: right;
  border-top: 1px solid var(--rule);
  padding-top: 28px;
  margin-top: 56px;
  max-width: 220px;
  margin-left: auto;
  font-variation-settings: "opsz" 24;
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
  padding: 100px 56px 56px;
  background: var(--black);
  color: var(--cream-soft);
  position: relative;
  border-top: 1px solid var(--rule);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--rule-soft);
}

.footer-logo-img {
  height: 56px;
  width: auto;
  margin-bottom: 24px;
  display: block;
}

.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--cream-soft);
  max-width: 340px;
  line-height: 1.5;
  font-weight: 300;
  font-variation-settings: "opsz" 24;
  opacity: 0.8;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}

.footer-col p,
.footer-col a {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--cream-soft);
  line-height: 1.7;
  display: block;
  text-decoration: none;
  transition: color 0.3s ease;
  font-variation-settings: "opsz" 24;
  opacity: 0.85;
}

.footer-col a:hover {
  color: var(--gold-bright);
}

.footer-address {
  margin-top: 16px;
  font-size: 15px !important;
  line-height: 1.6 !important;
  opacity: 0.7 !important;
}

.footer-bottom {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-soft);
  opacity: 0.5;
}

/* =========================================================
   Reveal animations
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

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

/* =========================================================
   Responsive
   ========================================================= */

/* Tablet / small laptop */
@media (max-width: 1000px) {
  .nav { padding: 18px 24px; }
  .nav-logo { height: 26px; }
  .nav-meta { font-size: 9px; letter-spacing: 0.2em; }

  .hero {
    grid-template-columns: 1fr;
    padding: 140px 24px 80px;
    gap: 56px;
  }
  .hero-icon { width: 360px; right: -120px; }

  .section { padding: 90px 24px; }
  .about {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-heading { position: static; }

  .how { padding: 90px 24px; }
  .principles { grid-template-columns: 1fr; }
  .principle:nth-child(odd),
  .principle:nth-child(even) {
    padding: 48px 0;
    padding-right: 0;
    padding-left: 0;
    border-left: none;
  }

  .clients { padding: 100px 24px; }
  .clients::before { width: 480px; height: 480px; }
  .client { padding: 8px 24px; font-size: 19px; }

  .philosophy {
    grid-template-columns: 1fr;
    padding: 100px 24px;
    gap: 40px;
    text-align: left;
  }
  .philosophy-mark { font-size: 120px; line-height: 1.4; }
  .philosophy-signature { margin-left: 0; text-align: left; }

  .footer { padding: 70px 24px 40px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 640px) {
  /* On mobile, drop the gold gradient effect entirely.
     The gradient renders unreliably on some Android browsers (showing as red)
     and the effect is barely visible at small text sizes anyway.
     Use solid gold for guaranteed legibility and brand consistency. */
  .gold-text,
  .gold-text-readable,
  .philosophy-text .highlight,
  .about-body p:first-child::first-letter {
    background-image: none !important;
    -webkit-background-clip: initial !important;
            background-clip: initial !important;
    -webkit-text-fill-color: var(--gold-bright) !important;
            color: var(--gold-bright) !important;
  }

  .philosophy-mark {
    background-image: none !important;
    -webkit-background-clip: initial !important;
            background-clip: initial !important;
    -webkit-text-fill-color: var(--gold) !important;
            color: var(--gold) !important;
  }

  .nav { padding: 16px 20px; }
  .nav-logo { height: 22px; }
  .nav-meta { display: none; }

  .hero {
    padding: 120px 20px 60px;
    gap: 40px;
    min-height: auto;
  }
  .hero-icon {
    width: 280px;
    right: -100px;
    opacity: 0.04;
  }
  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.24em;
    margin-bottom: 24px;
  }
  .hero-eyebrow::before { width: 24px; }
  .hero-title {
    font-size: clamp(44px, 13vw, 64px);
    line-height: 0.96;
    letter-spacing: -0.02em;
  }
  .hero-lede {
    font-size: 18px;
    margin-bottom: 32px;
  }
  .hero-coords {
    font-size: 9px;
    letter-spacing: 0.2em;
    padding-left: 16px;
  }

  .marquee { padding: 18px 0; }
  .marquee-item {
    font-size: 17px;
    padding-right: 48px;
    gap: 48px;
  }
  .marquee-track {
    animation-duration: 14s;
  }

  .section { padding: 72px 20px; }
  .section-label {
    font-size: 10px;
    letter-spacing: 0.24em;
    margin-bottom: 36px;
    gap: 12px;
  }
  .section-label::before { font-size: 16px; }

  .about { gap: 32px; }
  .about-heading {
    font-size: clamp(36px, 9vw, 48px);
  }
  .about-body {
    font-size: 18px;
    line-height: 1.55;
  }
  .about-body p { margin-bottom: 24px; }
  .about-body p:first-child::first-letter {
    font-size: 64px;
    margin: 6px 10px 0 0;
  }

  .how { padding: 72px 20px; }
  .how-heading {
    font-size: clamp(36px, 9vw, 48px);
    margin-bottom: 56px;
  }
  .principle {
    padding: 36px 0;
  }
  .principle-num {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .principle-title {
    font-size: 26px;
    margin-bottom: 16px;
  }
  .principle-body { font-size: 14px; }

  .clients { padding: 80px 20px; }
  .clients::before { width: 320px; height: 320px; opacity: 0.06; }
  .clients-eyebrow {
    font-size: 10px;
    letter-spacing: 0.24em;
    margin-bottom: 28px;
  }
  .clients-quote {
    font-size: clamp(24px, 6.5vw, 32px);
    margin-bottom: 60px;
    line-height: 1.28;
  }
  .clients-list {
    flex-direction: column;
    padding-top: 40px;
    gap: 20px;
  }
  .client {
    font-size: 19px;
    padding: 4px 0;
  }
  .client:not(:last-child)::after {
    right: 50%;
    bottom: -14px;
    top: auto;
    transform: translateX(50%);
  }

  .philosophy {
    padding: 80px 20px;
    gap: 32px;
  }
  .philosophy-mark {
    font-size: 84px;
    line-height: 1.4;
    text-align: left;
    padding: 12px 0;
  }
  .philosophy-text {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.35;
  }
  .philosophy-text p { margin-bottom: 24px; }
  .philosophy-signature {
    font-size: 18px;
    margin-top: 32px;
    padding-top: 20px;
  }

  .footer { padding: 60px 20px 32px; }
  .footer-grid {
    gap: 36px;
    padding-bottom: 48px;
  }
  .footer-logo-img { height: 44px; }
  .footer-tag { font-size: 17px; }
  .footer-col h4 {
    font-size: 9px;
    letter-spacing: 0.24em;
    margin-bottom: 16px;
  }
  .footer-col p,
  .footer-col a { font-size: 16px; }
  .footer-bottom {
    font-size: 9px;
    letter-spacing: 0.2em;
  }
}
