/* ============================================
   ANOTHER COLLECTIVE — Shared Stylesheet
   ============================================ */

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

:root {
  /* Colors */
  --black:      #000000;
  --white:      #ffffff;
  --gray-mid:   #888888;
  --gray-light: #e0e0e0;
  --dark-bg:    #2a2826;

  /* Font */
  --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Type scale — one consistent system */
  --text-xs:    12px;   /* captions, labels, footer meta */
  --text-sm:    13px;   /* body copy, nav, sidebar */
  --text-base:  15px;   /* default UI text */
  --text-md:    24px;   /* service names, sub-headings */
  --text-lg:    30px;   /* medium headings */
  --text-xl:    40px;   /* section headings, statements */
  --text-2xl:   clamp(60px, 12vw, 130px); /* hero titles */

  /* Spacing */
  --nav-h: 45px;
}

html {
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-size: var(--text-base);
  color: var(--black);
  background: var(--white);
  line-height: 1.45;
}

a { color: inherit; text-decoration: none; font-weight: 500; }
a:hover { text-decoration: none; }

/* ============================================
   NAV
   ============================================ */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: transparent;
  z-index: 100;
  mix-blend-mode: difference;
}

.nav-logo {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-base);
  color: var(--white);
}

.nav-right .dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--white);
}

/* ============================================
   PAGE WRAPPER
   ============================================ */
.page-content { padding-top: var(--nav-h); }

/* ============================================
   SHARED TYPOGRAPHY CLASSES
   Used across all pages
   ============================================ */

/* Captions, labels, meta */
.t-xs  { font-size: var(--text-xs);  line-height: 1.6; color: var(--gray-mid); }

/* Body copy */
.t-sm  { font-size: var(--text-sm);  line-height: 1.65; }

/* Default UI */
.t-base { font-size: var(--text-base); line-height: 1.45; }

/* Sub-headings (service names, process titles) */
.t-md  { font-size: var(--text-md);  font-weight: 400; line-height: 1.2; }

/* Medium headings */
.t-lg  { font-size: var(--text-lg);  font-weight: 500; line-height: 1.15; letter-spacing: -0.2px; }

/* Section headings / statements */
.t-xl  {
  font-size: var(--text-xl);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

/* Hero / display */
.t-2xl {
  font-size: var(--text-2xl);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -3px;
  text-transform: uppercase;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--black);
  color: var(--white);
  padding: 100px 20px 20px;
  font-size: var(--text-sm);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.footer-col-title {
  font-size: var(--text-xs);
  color: var(--gray-mid);
  margin-bottom: 10px;
  font-weight: 400;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  line-height: 1.7;
  font-size: var(--text-sm);
  color: var(--white);
}

.footer-col ul li a { color: var(--white); }

.footer-contact-links a {
  display: block;
  color: var(--white);
  line-height: 1.8;
  font-size: var(--text-sm);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid #333;
  padding-top: 12px;
  font-size: var(--text-xs);
  color: var(--gray-mid);
}

.footer-bottom-right { text-align: right; }

.footer-address { margin-top: 20px; }

.footer-address strong {
  font-size: var(--text-xs);
  color: var(--gray-mid);
  font-weight: 400;
  display: block;
  margin-bottom: 4px;
}

/* ============================================
   UTILITIES
   ============================================ */
hr { border: none; border-top: 1px solid var(--gray-light); }


/* ============================================
   HOVER FLIP — applies to all interactive text
   ============================================ */

/*
  Technique: each link wraps its text in a .flip span.
  The span contains two <i> (non-semantic): one visible,
  one hidden below. On hover, both translate up together.
  Result: original exits top, clone enters from bottom.
  On mouse-out, the animation reverses naturally via transition.
*/

.flip {
  display: inline-flex;
  flex-direction: column;
  overflow: hidden;
  /* Height matches exactly one line of the parent's line-height */
  height: 1em;
  vertical-align: middle;
  line-height: 1;
}

.flip i {
  font-style: normal;
  display: block;
  line-height: 1;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* On hover: shift both up by 100% */
a:hover .flip i,
button:hover .flip i {
  transform: translateY(-100%);
}

/* Nav links */
nav a,
nav span.lang {
  display: inline-block;
}

/* Footer links get the flip treatment via JS */

/* ============================================
   SHARED — Placeholders & body classes
   ============================================ */
.ph {
  display: block;
}

.port-body {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: #333;
  text-align: justify;
}

.port-body-light {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  text-align: justify;
}

.port-label {
  font-size: var(--text-xs);
  color: #555;
  line-height: 1.5;
}

.port-label-light {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.port-num {
  font-size: var(--text-xs);
  color: #aaa;
  font-style: normal;
}

.port-title {
  font-size: var(--text-xs);
  color: #555;
}

/* ============================================
   SHARED — AC scroll/sticky end (index + about)
   ============================================ */
.ac-scroll-spacer {
  height: 100vh;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

#ac-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  mix-blend-mode: difference;
}

#ac-fixed {
  display: none;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  mix-blend-mode: difference;
}

#ac-fixed.visible { display: flex; }

.ac-sticky-inner h2,
#ac-inline h2,
#ac-fixed h2 {
  font-size: clamp(60px, 12vw, 130px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  white-space: nowrap;
}

.ac-contact-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--white);
  font-size: var(--text-sm);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
}

.ac-contact-hint svg {
  width: 16px;
  height: 16px;
  animation: acbounce 1.6s ease-in-out infinite;
}

@keyframes acbounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* ============================================
   SHARED — Work/Project index table (index + about)
   ============================================ */
.work-index-section,
.project-index-section {
  background: var(--black);
  color: var(--white);
  position: relative;
}

.work-index-sticky,
.project-index-sticky {
  position: sticky;
  top: 45px;
  z-index: 50;
  background: var(--black);
  padding: 20px 20px 14px;
  border-bottom: 1px solid #222;
}

.work-index-title,
.project-index-title {
  font-size: clamp(60px, 12vw, 130px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -3px;
  text-transform: uppercase;
  color: var(--white);
}

.work-table,
.project-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.work-table thead tr,
.project-table thead tr { border-bottom: 1px solid #333; }

.work-table th,
.project-table th {
  color: var(--gray-mid);
  font-weight: 400;
  text-align: left;
  padding: 10px 20px;
  font-size: var(--text-xs);
}

.work-table tbody tr,
.project-table tbody tr { border-bottom: 1px solid #222; }

.work-table tbody tr:hover,
.project-table tbody tr:hover { background: #111; }

.work-table td,
.project-table td {
  padding: 8px 20px;
  color: var(--white);
  font-size: var(--text-sm);
}

.work-table td:nth-child(2),
.project-table td:nth-child(2) { color: var(--gray-mid); }

.status-ongoing { color: #fff !important; }
.status-view    { color: #888 !important; }
.status-off     { color: #555 !important; }

/* ============================================
   ABOUT PAGE
   ============================================ */

/* S1: Opening */
.about-s1 {
  background: #fff;
  padding: 30px 0 0;
  position: relative;
}

.about-s1-heading {
  position: absolute;
  left: 10%;
  font-size: var(--text-base);
  color: var(--black);
  line-height: 1.6;
}

.about-s1-heading strong { font-weight: 500; }

.about-s1-nav {
  padding: 60px 14% 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-s1-nav-row {
  display: flex;
  gap: 20px;
  font-size: var(--text-xs);
  color: #555;
}

.about-s1-nav-row span { color: #aaa; }

.about-s1-hero-wrap {
  position: relative;
  padding: 0 14%;
}

.about-s1-hero-img {
  width: 60%;
  margin: 0 auto;
margin-right: 90px;
  display: block;
  aspect-ratio: 2 / 1.2;
  object-fit: cover;
}

.about-s1-num {
  position: absolute;
  left: 14%;
  bottom: 30px;
  font-size: var(--text-xs);
  color: #aaa;
}

.about-s1-caption {
  position: absolute;
  right: 14%;
  bottom: 30px;
  font-size: var(--text-xs);
  color: #555;
}

/* S2: white — photo left + text right */
.about-s2 {
  background: #fff;
  padding: 80px 14%;
  display: grid;
  grid-template-columns: 59% 1fr;
  gap: 6%;
  align-items: start;
}

.about-s2-img {
  aspect-ratio: 4 / 3.8;
  width: 90%;
  object-fit: cover;
}

.about-s2-text { padding-top: 60px; }
.about-s2-text p { margin-bottom: 16px; }

.about-s2-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 28px 0;
}

.about-s2-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: var(--text-xs);
  color: #aaa;
}

.about-s2-meta a {
  color: #555;
  text-decoration: underline;
  font-weight: 400;
}

/* S3: dark — approach text left + photo right */
.about-s3 {
  background: #2a2826;
  padding: 80px 14%;
  display: grid;
  grid-template-columns: 1fr 38%;
  gap: 6%;
  align-items: center;
}

.about-s3-text p { margin-bottom: 14px; }

.about-s3-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-s3-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

/* ============================================
   INDEX PAGE
   ============================================ */

/* S1 */
.port-s1 {
  background: #fff;
  padding: 30px 0 0;
}

.port-s1-nav {
  padding: 0 14% 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.port-s1-nav-row {
  display: flex;
  gap: 20px;
  font-size: var(--text-xs);
  color: #555;
}

.port-s1-nav-row span { color: #aaa; }

.port-s1-topright {
  position: absolute;
  top: 50px;
  right: 14%;
  text-align: right;
  font-size: var(--text-xs);
  color: #555;
  line-height: 1.5;
}

.port-s1-hero-wrap {
  position: relative;
  padding: 0 14%;
}

.port-s1-hero-img {
  width: 44.1%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  aspect-ratio: 4/3.2;
  object-fit: cover;
}

.port-s1-num {
  position: absolute;
  left: 14%;
  bottom: 30px;
  font-size: var(--text-xs);
  color: #aaa;
}

.port-s1-caption {
  position: absolute;
  right: 14%;
  bottom: 30px;
  font-size: var(--text-xs);
  color: #555;
}

/* S2 */
.port-s2 {
  background: #fff;
  padding: 80px 14%;
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 6%;
  align-items: start;
}

.port-s2-img { aspect-ratio: 3/3.5; width: 90%; object-fit: cover; }
.port-s2-text { padding-top: 80px; }
.port-s2-text p { margin-bottom: 16px; }

/* S3 */
.port-s3 {
  background: #fff;
  padding: 60px 14% 60px;
  position: relative;
  min-height: 420px;
}

.port-s3-cards {
  margin-left: auto;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.port-s3-front {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  justify-content: flex-end;
}

.port-s3-back {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  justify-content: flex-end;
  margin-left: 30px;
}

.port-s3-card { aspect-ratio: 4/2.5; width: 234px; }

.port-s3-caption {
  position: absolute;
  left: 14%;
  bottom: 40px;
  font-size: var(--text-xs);
  color: #555;
  line-height: 1.6;
}

/* S4 */
.port-s4 {
  background: #fff;
  padding: 40px 14% 80px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}

.port-s4-img { aspect-ratio: 4/2.5; width: 270px; object-fit: cover; }
.port-s4-caption { font-size: var(--text-xs); color: #555; padding-top: 4px; line-height: 1.6; }

/* S5 */
.port-s5 {
  background: #2a2826;
  padding: 80px 14% 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.port-s5-img { aspect-ratio: 3/3.8; width: 39.6%; object-fit: cover; }

.port-s5-label {
  display: flex;
  gap: 30px;
  align-items: center;
  align-self: flex-end;
  margin-top: 40px;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
}

/* S6 */
.port-s6 {
  background: #2a2826;
  padding: 60px 14%;
  display: grid;
  grid-template-columns: 22% 36% 1fr;
  gap: 40px;
  align-items: start;
}

.port-s6-left { display: flex; flex-direction: column; gap: 24px; }
.port-s6-small { aspect-ratio: 3/3; width: 90%; object-fit: cover; }
.port-s6-tall  { aspect-ratio: 3/4.8; width: 90%; object-fit: cover; }
.port-s6-text  { padding-top: 20px; }
.port-s6-text p { margin-bottom: 14px; }
.port-s6-link  { font-size: var(--text-xs); color: rgba(255,255,255,0.5); text-decoration: underline; margin-top: 30px; display: block; }

/* S7 */
.port-s7 {
  background: #2a2826;
  padding: 60px 14% 80px;
  display: grid;
  grid-template-columns: 36% 1fr;
  gap: 6%;
  align-items: center;
}

.port-s7-img { aspect-ratio: 3/4.2; width: 90%; object-fit: cover; }
.port-s7-text p { margin-bottom: 14px; }

/* S8 */
.port-s8 {
  background: #fff;
  padding: 80px 14% 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.port-s8-img { aspect-ratio: 3/3.8; width: 39.6%; object-fit: cover; }

.port-s8-labels {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 30px;
  font-size: var(--text-xs);
  color: #aaa;
}

/* S9 */
.port-s9 {
  background: #fff;
  padding: 60px 14%;
  display: grid;
  grid-template-columns: 28% 1fr;
  gap: 8%;
  align-items: center;
}

.port-s9-img { aspect-ratio: 3/4; width: 90%; object-fit: cover; }
.port-s9-text p { margin-bottom: 14px; }

/* S10 */
.port-s10 {
  background: #fff;
  padding: 40px 14% 20px;
}

.port-s10-pair {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.port-s10-img { aspect-ratio: 4/2.8; width: 25.2%; object-fit: cover; }
.port-s10-caption { font-size: var(--text-xs); color: #555; margin-top: 10px; padding-left: 14%; }

/* S11 */
.port-s11 {
  background: #fff;
  padding: 60px 14% 80px;
  display: grid;
  grid-template-columns: 22% 1fr;
  gap: 8%;
  align-items: start;
}

.port-s11-img { aspect-ratio: 3/3.5; width: 90%; object-fit: cover; }
.port-s11-text p { margin-bottom: 14px; }

/* ============================================
   PRIVACY PAGE
   ============================================ */
.privacy-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  padding-top: var(--nav-h);
}

.privacy-sidebar {
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  padding: 30px 20px;
  border-right: 1px solid var(--gray-light);
  display: flex;
  flex-direction: column;
}

.sidebar-company {
  font-size: var(--text-sm);
  line-height: 1.5;
  margin-bottom: 30px;
}

.sidebar-nav { list-style: none; }

.sidebar-nav li {
  font-size: var(--text-sm);
  line-height: 1.9;
  color: var(--gray-mid);
}

.sidebar-nav li.active { color: var(--black); }
.sidebar-nav li a { color: inherit; }
.sidebar-nav li a:hover { color: var(--black); text-decoration: none; }

.privacy-main {
  padding: 50px 80px 80px 60px;
  max-width: 900px;
}

.privacy-page-title {
  font-size: var(--text-xl);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 60px;
}

.privacy-intro {
  font-size: var(--text-sm);
  line-height: 1.65;
  margin-bottom: 8px;
  max-width: 560px;
}

.privacy-intro + .privacy-intro { margin-bottom: 50px; }

.privacy-h1 {
  font-size: var(--text-xl);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.3px;
  margin-top: 60px;
  margin-bottom: 20px;
}

.privacy-h2 {
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.2px;
  margin-top: 40px;
  margin-bottom: 14px;
}

.privacy-body {
  font-size: var(--text-sm);
  line-height: 1.65;
  margin-bottom: 12px;
  max-width: 560px;
}

.privacy-body strong { font-weight: 500; }

.privacy-ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 12px;
  max-width: 560px;
}

.privacy-ul li {
  font-size: var(--text-sm);
  line-height: 1.75;
  padding-left: 16px;
  position: relative;
}

.privacy-ul li::before {
  content: '•';
  position: absolute;
  left: 4px;
}

.privacy-contact-detail {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-top: 12px;
}

.privacy-contact-detail strong { font-weight: 500; }

/* ============================================
   STUDIO PAGE
   ============================================ */
.studio-hero {
  display: grid;
  grid-template-columns: 1fr 70%;
  align-items: start;
}

.studio-hero-left {
  padding: 70px 20px 30px 14%;
  max-width: calc(480px + 14%);
}

.studio-hero-left p {
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: 20px;
}

.studio-hero-left a {
  display: block;
  font-size: var(--text-sm);
  margin-top: 12px;
}

.studio-photo-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, auto);
  gap: 3px;
}

.photo-cell {
  background: #c8c0b8;
  overflow: hidden;
  position: relative;
  aspect-ratio: 6 / 4;
}

.photo-1 { background: #b8b0a8; }
.photo-2 { background: #9a9290; }
.photo-3 { background: #a8a098; }
.photo-4 { background: #c0b8b0; }
.photo-5 { background: #b0a8a0; }
.photo-6 { background: #9890a0; }

.photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0; left: 0;
}

.photo-figure {
  width: 100%; height: 100%;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
  position: absolute;
  top: 0; left: 0;
}

.photo-figure::after {
  content: '';
  display: block;
  width: 60%; height: 85%;
  background: rgba(0,0,0,0.15);
  border-radius: 50% 50% 0 0;
}

.statement-section {
  padding: 30px 6% 60px;;
  border-top: 1px solid var(--gray-light);
}

.statement-section p {
  font-size: var(--text-xl);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.5px;
  max-width: 900px;
}

.services-section { padding: 30px 6% 60px; }

.service-row {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  border-top: 1px solid var(--gray-light);
  padding: 28px 0;
  gap: 20px;
  align-items: start;
}

.service-row:last-child { border-bottom: 1px solid var(--gray-light); }

.service-name {
  font-size: var(--text-md);
  font-weight: 500;
}

.service-desc {
  font-size: var(--text-sm);
  line-height: 1.6;
  max-width: 340px;
}

.approach-section {
  padding: 30px 6% 60px;;
  border-top: 1px solid var(--gray-light);
}

.approach-section .statement {
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.3px;
  max-width: 860px;
  margin-bottom: 60px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  max-width: 860px;
}

.process-title-wrapper {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 12px;
}

.process-num-small {
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1;
}

.process-title-large {
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1;
}

.process-desc {
  font-size: var(--text-sm);
  line-height: 1.6;
  max-width: 320px;
}

.brand-marquee {
  text-align: center;
  padding: 80px 20px;
  border-top: 1px solid var(--gray-light);
}

.brand-marquee h2 {
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
}

/* ============================================
   MOBILE — max-width: 768px
   ============================================ */
@media (max-width: 768px) {

  /* ---- About S1 ---- */
  .about-s1 { padding-top: 20px; }

  .about-s1-heading {
    position: static;
    padding: 0 6% 16px;
  }

  .about-s1-nav { padding: 0 6% 24px; }

  .about-s1-hero-wrap { padding: 0 6%; }

  .about-s1-hero-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    margin: 0 auto;
  }

  .about-s1-num   { left: 6%; bottom: 12px; }
  .about-s1-caption { right: 6%; bottom: 12px; }

  /* ---- About S2 ---- */
  .about-s2 {
    padding: 40px 6%;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-s2-img {
    width: 100%;
    aspect-ratio: 3 / 3.2;
    object-fit: cover;
  }

  .about-s2-text { padding-top: 0; }

  /* ---- About S3 ---- */
  .about-s3 {
    padding: 40px 6%;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-s3-img {
    width: 100%;
  height: 100%;
  object-fit: cover;
  }


  /* ============================================
     PORT / INDEX SECTIONS
     ============================================ */

  /* S1 */
  .port-s1 { padding: 20px 0 0; }

  .port-s1 > div[style] {
    position: static !important;
    padding: 0 6% 16px;
  }

  .port-s1-nav { padding: 0 6% 24px; }

  .port-s1-hero-wrap { padding: 0 6%; }

  .port-s1-hero-img {
    width: 85%;
    margin: 0 auto;
  }

  .port-s1-num    { left: 6%; bottom: 12px; }
  .port-s1-caption { right: 6%; bottom: 12px; }

  /* S2 */
  .port-s2 {
    padding: 40px 6%;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .port-s2-img {
    width: 85%;
    margin: 0 auto;
  }

  .port-s2-text { padding-top: 0; }

  /* S3 */
  .port-s3 {
    padding: 40px 6% 80px;
    min-height: auto;
  }

  .port-s3-cards {
    width: 85%;
    margin: 0 auto;
  }

  .port-s3-front,
  .port-s3-back {
    justify-content: center;
    margin-left: 0;
  }

  .port-s3-card {
    width: 85%;
    aspect-ratio: 4 / 2.5;
  }

  .port-s3-caption {
    position: static;
    padding: 16px 0 0;
  }

  /* S4 */
  .port-s4 {
    padding: 40px 6%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .port-s4-img {
    width: 85%;
    aspect-ratio: 4 / 2.5;
  }

  /* S5 */
  .port-s5 {
    padding: 60px 6% 40px;
  }

  .port-s5-img {
    width: 80%;
  }

  .port-s5-label {
    align-self: auto;
    justify-content: center;
    margin-top: 20px;
  }

  /* S6 */
  .port-s6 {
    padding: 40px 6%;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .port-s6-small {
    width: 80%;
    margin: 0 auto;
  }

  .port-s6-tall {
    width: 80%;
    margin: 0 auto;
  }

  /* S7 */
  .port-s7 {
    padding: 40px 6%;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .port-s7-img {
    width: 80%;
    margin: 0 auto;
  }

  /* S8 */
  .port-s8 {
    padding: 60px 6% 30px;
  }

  .port-s8-img {
    width: 80%;
  }

  .port-s8-labels {
    width: 100%;
  }

  /* S9 */
  .port-s9 {
    padding: 40px 6%;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .port-s9-img {
    width: 75%;
    margin: 0 auto;
  }

  /* S10 */
  .port-s10 {
    padding: 40px 6% 20px;
  }

  .port-s10-pair {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .port-s10-img {
    width: 85%;
    aspect-ratio: 4 / 2.8;
  }

  .port-s10-caption {
    padding-left: 0;
    margin-top: 12px;
  }

  /* S11 */
  .port-s11 {
    padding: 40px 6% 60px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .port-s11-img {
    width: 70%;
    margin: 0 auto;
  }

  /* ---- Project Index table ---- */
  .project-index-sticky { padding: 16px 6% 12px; }

  .work-index-title,
  .project-index-title {
    font-size: clamp(36px, 10vw, 80px);
    letter-spacing: -1px;
  }

  .project-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  .work-table,
  .project-table { min-width: 540px; }

  /* ---- AC big title ---- */
  #ac-inline h2,
  #ac-fixed h2 {
    font-size: clamp(36px, 10vw, 80px);
    letter-spacing: -1px;
    white-space: normal;
    text-align: center;
    padding: 0 6%;
  }

  /* ---- Footer ---- */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .footer-bottom-right { text-align: left; }

  /* ---- Studio page ---- */
  .studio-hero {
    grid-template-columns: 1fr;
  }

  .studio-hero-left {
    max-width: 100%;
    padding: 30px 6%;
  }

  .studio-photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* ---- Privacy page ---- */
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-sidebar {
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--gray-light);
    padding: 20px 6%;
  }

  .privacy-main {
    padding: 30px 6% 60px;
  }
}
