:root {
  --cream:     #E3ECF0;
  --unfilter1:       #1B2226;
  --unfilter2:     #20292E;
  /* --orange:     #ff904e; */
  --orange:     #f7614b;
  /* --gold-mead: #B8922F; */
/*   --teal-gif:  #2A5C5A; */
  --gray-mid:  #3A4048;
  --gray-text: #8A8F96;
  --white:     #FFFFFF;

  /* JP */
/*   --font-jp-title: 'Kaiti TC', 'Kaiti SC', 'KaiTi', 'STKaiti', 'AR PL UKai CN', cursive; */
  --font-jp-title: "Zen Kurenaido", sans-serif;
  --font-jp-text:  "SF Pro JP", "SF Pro Text", "SF Pro Icons", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;

  /* EN */
  --font-en-title: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  --font-en-text:  "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;

  --text-jp-small-line-height: 1.85;
  --text-en-small-line-height: 1.65;
  --nav-font-size:13px;
  --nav-h: 56px;
  --section-pad: clamp(64px, 10vw, 120px);
  --max-w: 1080px;
}

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-jp-text);
  background: var(--unfilter1);
  color: var(--cream);
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

/* FONT */

h2, h3 {
  font-family: var(--font-jp-title);
}

.lang-en h2, .lang-en h3, .lang-en .pillar-label, .lang-en .team-card .member-name {
  font-family: var(--font-en-title);
}
/* ─── NAV ────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 150;
/*   background: transparent;
  transition: background .4s ease; */
    background: rgba(32, 41, 46, 0.5);
  backdrop-filter: blur(2px);
  width: 100vw;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(12px, 4vw, 56px);
}
/* nav.scrolled { 
  background: rgba(32, 41, 46, 0.5);
  backdrop-filter: blur(2px);
} */
.nav-logo {
  color: var(--cream);
  display: flex;
  align-items: center;
}
.logo-svg {
  fill: currentColor;
  height: 17px;  
  width: auto;
  display: block;
}
.logo-svg--footer {
  height: 16px;  
  opacity: 0.6;
}
.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 36px);
  list-style: none;
}
.nav-links a {
  font-size: var(--nav-font-size);
  letter-spacing: .15em;
  color: rgba(244,239,230,.7);
  transition: color .2s;
}
.nav-links a:hover { 
    color: var(--cream); 
}
.nav-lang {
    font-size: var(--nav-font-size);
  letter-spacing: .1em;
  color: var(--cream);
  cursor: pointer;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 45px;
}
.nav-lang .lang-en { display: none; }
body.lang-en .nav-lang .lang-jp { display: none; }
body.lang-en .nav-lang .lang-en { display: inline; }

/* ─── HAMBURGER BUTTON ──────────────────────── */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
  position: relative;
}
.hamburger {
  display: block;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition: transform 500ms;
}
.hamburger.active { transform: rotate(45deg); }
.hamburger .line {
  fill: none;
  stroke: var(--cream);
  stroke-width: 5.5;
  stroke-linecap: round;
  transition: stroke-dasharray 350ms, stroke-dashoffset 350ms;
}
.hamburger .top    { stroke-dasharray: 40 121; }
.hamburger .bottom { stroke-dasharray: 40 121; }
.hamburger.active .top    { stroke-dashoffset: -68px; }
.hamburger.active .bottom { stroke-dashoffset: -68px; }

/* ─── FULLSCREEN MENU ───────────────────────── */
#fullscreen-menu {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100svh;
  background: var(--unfilter1);
  z-index: 100;
  opacity: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.fullscreen-menu-nav {
  padding: calc(var(--nav-h) + 6vh) clamp(24px, 8vw, 64px) 6vh;
  width: 100%;
}
.fullscreen-menu-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fullscreen-menu-nav li { overflow: hidden; }
.fullscreen-menu-nav a {
  display: inline-block;
  font-family: var(--font-jp-title);
  font-size: clamp(26px, 9vw, 62px);
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  line-height: 1.15;
  margin-bottom: .2em;
  transition: opacity .2s;
}
.fullscreen-menu-nav a:hover { opacity: .6; }

/* ─── INNER WRAPPER ─────────────────────────── */
.inner {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: clamp(24px, 4vw, 56px);
  padding-right: clamp(24px, 4vw, 56px);
}

/* ─── HERO ───────────────────────────────────── */

/* Scroll container */
#hero-scroll {
  position: relative;
  height: 250vh;
}

/* Sticky frame */
#hero {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  /* force stacking context so absolute children work correctly */
  isolation: isolate;
}

/* Mono image — base layer */
.hero-bg-mono {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Color image — on top, revealed from bottom via clip-path */
.hero-bg-color {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* starts fully clipped (hidden), GSAP animates inset down to 0% */
  clip-path: inset(100% 0% 0% 0%);
}
.hero-bg-mono img,
.hero-bg-color img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    to bottom,
    rgba(17,18,16,0) 30%,
    rgba(17,18,16,.65) 100%
  );
  pointer-events: none;
}

/* Text content */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  padding-left: clamp(24px, 6vw, 80px);
  gap: clamp(16px, 2.5vw, 36px);
  opacity: 1; /* explicit — GSAP will animate this */
}
.hero-kanji {
  font-family: var(--font-jp-title);
  font-size: min(clamp(90px, 12vw, 150px), 12svh);
  line-height: 1.05;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: var(--cream);
  letter-spacing: .06em;
  /* text-shadow: 0 2px 60px rgba(0,0,0,.4); */
  filter: drop-shadow(0px 2px 60px rgba(0, 0, 0, 0.4));
  white-space: nowrap;
  /* JP: absolute backdrop */
  position: absolute;
  top: calc(50% + var(--nav-h) / 2);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}
.hero-phrases {
  writing-mode: horizontal-tb;
  display: flex;
  flex-direction: column;
  align-self: center;
  text-align: left;
  text-shadow: 0 2px 45px rgba(32, 41, 46, 1);
  position: relative;
  z-index: 1;
}

.hero-phrase {
  font-family: var(--font-jp-title);
/*   font-size: clamp(12px, 1.9vw, 50px); */
  font-size: clamp(20px, 6vw, 60px);
  

  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .06em;
  color: var(--cream);
  opacity: 0;
  transform: translateY(10px);
  /* stay invisible until GSAP triggers */
}

.hero-phrase.phrase-4 {
  color: var(--orange);
} 

/* EN hero layout */
.hero-content.lang-en {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: clamp(24px, 6vw, 80px);
  gap: clamp(20px, 3vw, 36px);
}
.hero-content.lang-en .hero-kanji {
  /* restore to flex flow for EN */
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  height: auto;
  writing-mode: horizontal-tb;
  font-family: var(--font-en-title);
  font-size: clamp(65px, 5vw, 100px);
  white-space: normal;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.0;
  text-align: left;

}
.hero-content.lang-en .hero-phrases {
  writing-mode: horizontal-tb;
  align-self: flex-start;
/*   max-width: 480px; */
}
.hero-content.lang-en .hero-phrase {
    font-family: var(--font-en-text);
    font-size: clamp(24px, 3vw, 50px);
    letter-spacing: .03em;
    line-height: 1.1;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  z-index: 4;
}
.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: #fff;
  animation: scrollline 2s ease infinite;
  opacity: 0.4;
}
@keyframes scrollline {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── ABOUT ──────────────────────────────────── */
#about {
  position: relative;
  z-index: 10;
  background: var(--unfilter2);
  padding: var(--section-pad) 0;
}
.about-header {
  margin-bottom: 56px;
}
.section-label {
  /* font-size: 10px; */
  font-size: 1em;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.about-header h2 {
  /* font-family: var(--font-jp-title); */
  font-weight: 300;
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--cream);
  margin-bottom: 16px;
}
.about-header p:not(.section-label) {
  /* font-size: 13px; */
  /* color: rgba(244,239,230,.6); */
  max-width: 560px;
  /* line-height: var(--text-jp-small-line-height); */
  
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 48px);
  margin-top: 48px;
}
.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.pillar-img-wrap {
  position: relative;
  width: clamp(115px, 23vw, 200px);
  aspect-ratio: 1;
}
/* 
.pillar:nth-child(1) .pillar-img-wrap {
  border-radius: 50%;
  overflow: hidden;
}
.pillar:nth-child(2) .pillar-img-wrap {
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}
.pillar:nth-child(3) .pillar-img-wrap {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.pillar-img-wrap .ph {
  height: 100%;
  min-height: clamp(80px, 14vw, 140px);
} */
.pillar-label {
  writing-mode: vertical-rl;
  font-family: var(--font-jp-title);
  font-size: clamp(18px, 3vw, 30px);
  letter-spacing: .1em;
  color: var(--cream);
}
body.lang-en .pillar-label {
  writing-mode: horizontal-tb;
}
.pillar-text {
    display: none;
  font-size: 11px;
  color: rgba(244,239,230,.55);
  line-height: 1.9;
  writing-mode: horizontal-tb;
  max-width: 160px;
}

/* ─── BRANDS ─────────────────────────────────── */
#brands {
  padding: 0;
  background: var(--unfilter1);
  overflow: hidden;
}

.brands-inner {
  position: relative;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(50px, 6vw, 1000px) clamp(24px, 4vw, 56px) clamp(60px, 8vw, 100px);
  /*   padding: var(--section-pad) 0; */

}

/* ── Shared copy block ── */
.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3.5vw, 44px);
}
.brand-copy .brand-tag {
    display: none;
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--orange);
}
.brand-copy h3 {
  font-weight: 300;
  font-size: clamp(17px, 2.2vw, 26px);
  color: var(--cream);
  line-height: 1.3;
}
.brand-copy p {
  font-size: 12px;
  color: var(--cream);
  line-height: var(--text-jp-small-line-height);
  max-width: 400px;
}
.lang-en .brand-copy p {
  line-height: var(--text-en-small-line-height);
}
.brand-copy .brand-link {
display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  /* margin-top: 6px; */
  transition: all .2s;
  color: var(--cream);
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  align-self: flex-start;
  border-radius: 5px;

}
.brand-copy .brand-link:hover { 
    gap: 14px; 
    background: rgba(255, 255, 255, 0.15);
}
.brand-copy .brand-link::after { 
    content: '→'; 
}

/* ── ZAININ ──
*/
.brand-zainin {
  display: grid;
  grid-template-columns: 50% 55%;
  grid-template-rows: auto;
  position: relative;
  margin-bottom: 0;
  z-index: 1;
}
.brand-zainin .brand-img {
  grid-column: 1;
  grid-row: 1;
  aspect-ratio: 1 / 1;
  position: relative;
  top: 0;
}

.brand-zainin .brand-copy {
  grid-column: 2;
  grid-row: 1;
  background: #151515;
  align-self: end;
  margin-bottom: 0;
  min-height: 65%;
}
/* .brand-zainin .brand-copy h3 { 
    color: var(--cream); 
} */

/* ── WICKED WAY ──*/
.brand-mead {
  display: grid;
  grid-template-columns: 55% 70%;
  position: relative;
  z-index: 2;
  margin-bottom: -67px;
}
.brand-mead .brand-copy {
  grid-column: 1;
  grid-row: 1;
  background: #956F36;
  align-self: stretch;
/*   padding-top: clamp(48px, 7vw, 80px); */
  aspect-ratio: 2 / 1;
  left: -50px;
  position: relative;
  margin-right: -50px;
  margin-bottom: 25px;
}
/* .brand-mead .brand-copy h3 { 
    color: #E8C470; 
} */
/* .brand-mead .brand-copy .brand-link { 
    color: #E8C470; 
} */
.brand-mead .brand-img {
  grid-column: 2;
  grid-row: 1;
  /* height: clamp(280px, 38vw, 480px); */
  /* aspect-ratio: 2 / 1; */
  position: relative;

  top: -25px;
}
.brand-mead .brand-img .ph { 
    height: 100%; 
}



/* ── GIFFARD ──*/
.brand-giffard {
  display: grid;
  grid-template-columns: 40% 70%;
  position: relative;
  z-index: 3;
}
.brand-giffard .brand-img {
  grid-column: 1;
  grid-row: 1;
 /*  height: clamp(240px, 34vw, 420px); */
  position: relative;
  align-self: start;
  aspect-ratio: 1 / 1;
  top: 0;
  z-index: 5;
margin-top: 15px;
  margin-bottom: 15px;
}
.brand-giffard .brand-img .ph { 
    height: 100%; 
}

.brand-giffard .brand-copy {
  grid-column: 2;
  grid-row: 1;
  background: #1B525D;
  min-height: 80%;
  align-self: center;
  position: relative;
  z-index: 4;
 /*  margin-left: 30px; */
}
/* .brand-giffard .brand-copy h3 { 
    color: #7EC8C0; 
} */
/* .brand-giffard .brand-copy .brand-link { 
    color: #7EC8C0; 
}
 */



/* ─── TEAM ───────────────────────────────────── */
#team {
  background: var(--unfilter2);
  padding: var(--section-pad) 0;
}
.team-header {
  margin-bottom: 10px;
}
.team-header .section-label {
  margin-bottom: 10px;
}
.team-header h2 {
  /* font-family: var(--font-jp-title); */
  font-weight: 300;
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--cream);
  margin-bottom: 12px;
}
.team-header p:not(.section-label) {
  font-size: 12px;
  /* color: rgba(244,239,230,.55); */
  color: var(--cream);
  max-width: 520px;
  line-height: 1.9;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 32px);
}
.team-card .portrait {
  aspect-ratio: 3/4;
  background: var(--gray-mid);
  overflow: hidden;
  margin-bottom: 16px;
}
.team-card .portrait .ph { 
    height: 100%; 
    min-height: 200px; 
}
.team-card .member-name {
  font-family: var(--font-jp-title);
  font-size: clamp(16px, 1.5vw, 23px);
  color: var(--cream);
  margin-bottom: 4px;
}
.team-card .member-role {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.team-card .member-bio {
  font-size: 12px;
  /* color: rgba(244,239,230,.5); */
  color: var(--cream);
  line-height: var(--text-jp-small-line-height);
}
.lang-en .team-card .member-bio {
  line-height: var(--text-en-small-line-height);
}
/* ─── CONTACT / FOOTER ───────────────────────── */
#contact {
  background: var(--unfilter1);
  padding: var(--section-pad) 0;
  border-top: 1px solid rgba(244,239,230,.08);
}
#contact h5{
    font: 1em;
    font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
#contact .section-label {
  margin-bottom: 14px;
}
.contact-heading {
  font-family: var(--font-jp-title);
  font-weight: 300;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--cream);
  margin-bottom: 40px;
  line-height: 1.5;
}
.contact-info .info{
    margin-bottom: 24px;
}
body.lang-en .info-customers { display: none; }
.info-company address {
    display: none;
  font-style: normal;
  /*font-size: 11px;
  color: rgba(244,239,230,.5);
  line-height: 2; */
  margin-bottom: 24px;
}

.info-company-title{
    margin-right: 5px;
}



/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form .form-label {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: block;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(244,239,230,.05);
  border: 1px solid rgba(244,239,230,.12);
  color: var(--cream);
  font-family: var(--font-jp-text);
  font-size: 12px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s, background .2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(244,239,230,.3);
  font-size: 11px;
  letter-spacing: .05em;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(200,134,42,.5);
  background: rgba(244,239,230,.08);
}
.contact-form textarea { 
    min-height: 120px; 
    resize: vertical; }
/* .contact-form button {
  align-self: flex-start;
  margin-top: 8px;
  padding: 12px 32px;
  background: var(--orange);
  color: var(--unfilter1);
  font-family: var(--font-jp-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
} 
  
.contact-form button:hover { 
opacity: .85; 
}
*/
.contact-form button {
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    /* margin-top: 6px; */
    transition: all .2s;
    color: var(--unfilter1);
    padding: 12px 20px;
/*     background: rgba(255, 144, 78, 0.6);
 */    background: rgba(255, 111, 78, 0.6);
    align-self: flex-start;
    border-radius: 5px;
}
.contact-form button:hover { 
    gap: 14px; 
    background: rgba(255, 144, 78, 0.75);
}
.contact-form button::after {
    content: '→';
}

.contact-form .input-error {
  border-color: rgba(255, 100, 80, 0.6) !important;
  background: rgba(255, 100, 80, 0.05) !important;
}

.form-feedback {
  font-size: 11px;
  letter-spacing: .05em;
  line-height: 1.6;
  min-height: 1.6em;
}
.form-feedback--ok  { color: #2edf5a }
.form-feedback--err { color: var(--orange) }

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: var(--unfilter1);
  padding: 55px clamp(24px, 4vw, 56px);
  border-top: 1px solid rgba(244,239,230,.07);
}
.footer-bar {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bar .copy { 
    font-size: 10px; 
    color: var(--cream); 
    opacity: 0.7;
    letter-spacing: .1em; 
}

/* ─── DIVIDER RULE ───────────────────────────── */
.divider {
  height: 1px;
  background: rgba(244,239,230,.06);
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-h: 48px; }

  .nav-links { display: none; }
  .hamburger-btn { display: block; }

/*   .about-pillars { grid-template-columns: 1fr; gap: 40px; }
  .pillar { flex-direction: row; text-align: left; align-items: center; }
  .pillar-label { writing-mode: horizontal-tb; } */


  .brands-inner { 
    display: flex; 
    flex-direction: 
    column; gap: 32px; 
}

  .brand-zainin,
  .brand-mead,
  .brand-giffard {
    display: flex;
    flex-direction: column-reverse;
    margin: 0;
  }
  .brand-mead { 
    flex-direction: column; 
}

  .brand-zainin .brand-img,
  .brand-mead .brand-img,
  .brand-giffard .brand-img {
    aspect-ratio: 1 / 1;
    height: auto;
    width: 100%;
    top: 0;
    margin: 0;
    position: relative;
    align-self: stretch;
  }


  .brand-zainin .brand-copy,
  .brand-mead .brand-copy,
  .brand-giffard .brand-copy {
    width: 100%;
    align-self: stretch;
    left: 0;
    margin: 0;
    aspect-ratio: auto;
    min-height: 0;
    position: relative;
  }

  .team-grid { grid-template-columns: 1fr; max-width: 340px; }

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

@media (max-width: 480px) {
  .brand-copy .brand-link,
  .contact-form button {
    width: 100%;
    justify-content: center;
  }

}

@media (min-width: 769px) and (max-width: 1024px) {
  .about-pillars { gap: 24px; }
  .team-grid { gap: 20px; }
  .brand-copy { padding: 32px 28px; }
}