/* =========================================================================
   MINE KOÇAK — Bangkok-based Beauty, Fashion & Lifestyle UGC Creator
   Premium feminine editorial. Warm ivory, champagne, muted rose, cocoa, gold.
   Static. No framework.
   ========================================================================= */
:root {
  --ivory:     #FBF8F2;
  --cream:     #F4ECE0;
  --champagne: #EBD9C3;
  --rose:      #C58B7F;
  --rose-deep: #A86B60;
  --cocoa:     #5A4A40;
  --ink:       #2B221C;
  --ink-2:     #7d6e63;
  --ink-3:     #a99c90;
  --gold:      #BE9E68;
  --gold-deep: #a6864f;
  --line:      rgba(43, 34, 28, 0.12);
  --line-soft: rgba(43, 34, 28, 0.07);
  --white:     #ffffff;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --container: 1180px;
  --pad: clamp(20px, 5vw, 48px);
  --section: clamp(76px, 11vw, 150px);
  --radius: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  background: var(--ivory); color: var(--ink); font-family: var(--font-body);
  font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility; overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--champagne); color: var(--ink); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.04; letter-spacing: -0.005em; color: var(--ink); }
em, .italic { font-style: italic; }

.kicker { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-body); font-size: 11.5px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--rose-deep); }
.kicker::before { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; }
.kicker.solo::before { display: none; }
.lede { font-size: clamp(17px, 2.1vw, 21px); line-height: 1.6; color: var(--ink-2); max-width: 56ch; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: var(--section) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(38px, 6vw, 66px); }
.section-head .kicker { margin-bottom: 20px; }
.section-head h2 { font-size: clamp(34px, 5.6vw, 62px); }
.section-head p { margin-top: 18px; font-size: clamp(16px, 2vw, 19px); color: var(--ink-2); max-width: 54ch; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.center .kicker { justify-content: center; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--font-body); font-size: 14px; font-weight: 600; letter-spacing: 0.01em; padding: 15px 28px; border-radius: 100px; transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease); white-space: nowrap; }
.btn-primary { background: var(--ink); color: var(--ivory); }
.btn-primary:hover { background: var(--rose-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 14.5px; }
.btn .arrow { transition: transform .4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 3px; transition: border-color .3s var(--ease), gap .3s var(--ease); }
.link-arrow:hover { border-color: var(--gold); gap: 13px; }

/* nav */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .4s var(--ease), border-color .4s var(--ease); border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(251, 248, 242, 0.85); backdrop-filter: saturate(1.3) blur(16px); -webkit-backdrop-filter: saturate(1.3) blur(16px); border-bottom-color: var(--line-soft); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { font-family: var(--font-display); font-size: 23px; font-weight: 600; letter-spacing: 0.01em; display: flex; align-items: baseline; gap: 8px; }
.brand .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rose); display: inline-block; transform: translateY(-3px); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--ink-2); transition: color .3s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-cta { font-size: 13.5px; }
.lang-toggle { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 100px; overflow: hidden; }
.lang-toggle button { font-size: 12px; font-weight: 600; padding: 7px 12px; color: var(--ink-3); letter-spacing: 0.04em; transition: background .3s var(--ease), color .3s var(--ease); }
.lang-toggle button.active { background: var(--ink); color: var(--ivory); }
.nav-burger { display: none; width: 40px; height: 40px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-burger span { width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu { display: none; }

/* hero */
.hero { padding-top: 124px; padding-bottom: clamp(50px, 8vw, 100px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.hero h1 { font-size: clamp(44px, 7.4vw, 94px); line-height: 0.98; letter-spacing: -0.01em; }
.hero h1 em { color: var(--rose-deep); }
.hero .lede { margin-top: 26px; }
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 13px; }
.hero-meta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 9px; }
.chip { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 500; color: var(--cocoa); padding: 8px 15px; border: 1px solid var(--line); border-radius: 100px; background: rgba(255,255,255,0.45); }
.chip svg { width: 14px; height: 14px; color: var(--rose-deep); }

.hero-figure { position: relative; }
.portrait { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; background: linear-gradient(150deg, var(--champagne), var(--cream) 55%, var(--rose) 160%); box-shadow: 0 40px 80px -42px rgba(90,74,64,0.45); display: flex; align-items: center; justify-content: center; }
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 36%; }
.portrait .ph { text-align: center; color: var(--cocoa); padding: 24px; }
.portrait .ph .mono { font-family: var(--font-display); font-size: 72px; font-weight: 600; color: var(--rose-deep); line-height: 1; }
.portrait .ph .cap { margin-top: 14px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }
.portrait::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25); border-radius: inherit; pointer-events: none; }
.hero-frame { position: absolute; inset: -13px; border: 1px solid var(--gold); border-radius: calc(var(--radius-lg) + 13px); z-index: -1; opacity: 0.55; }
.hero-figure .tag-float { position: absolute; bottom: 18px; left: 18px; right: 18px; display: flex; justify-content: space-between; color: var(--white); font-size: 12px; letter-spacing: 0.05em; text-shadow: 0 1px 8px rgba(0,0,0,0.35); }

/* marquee */
.marquee { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 24px 0; overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: mq 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-family: var(--font-display); font-style: italic; font-size: clamp(20px, 3vw, 32px); color: var(--cocoa); padding: 0 30px; white-space: nowrap; }
.marquee-item::after { content: "✿"; color: var(--rose); font-size: 0.5em; margin-left: 30px; transform: translateY(-0.4em); display: inline-block; }
@keyframes mq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* positioning split */
.pos { background: var(--cream); }
.pos-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.pos-figure { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; background: linear-gradient(150deg, var(--rose) -20%, var(--champagne) 60%); display: flex; align-items: center; justify-content: center; }
.pos-figure img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.pos-figure .ph { color: var(--white); text-align: center; }
.pos-figure .ph .mono { font-family: var(--font-display); font-size: 60px; }
.pos-body .big { font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px); line-height: 1.32; color: var(--ink); }
.pos-body p { margin-top: 18px; color: var(--ink-2); font-size: 16.5px; max-width: 56ch; }
.pos-list { margin-top: 26px; display: grid; gap: 0; }
.pos-list li { list-style: none; display: flex; gap: 13px; padding: 14px 0; border-top: 1px solid var(--line-soft); font-size: 15.5px; color: var(--ink); }
.pos-list li svg { width: 18px; height: 18px; color: var(--rose-deep); flex-shrink: 0; margin-top: 3px; }

/* services grid */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; }
.svc { background: var(--ivory); padding: clamp(26px, 3vw, 38px); transition: background .4s var(--ease); }
.svc:hover { background: var(--white); }
.svc-num { font-family: var(--font-display); font-size: 17px; font-style: italic; color: var(--rose-deep); }
.svc h3 { font-size: clamp(21px, 2.4vw, 26px); margin-top: 18px; }
.svc p { margin-top: 10px; font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }

/* portfolio */
.pf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 22px); }
.pf-card { position: relative; aspect-ratio: 9/16; border-radius: var(--radius); overflow: hidden; background: linear-gradient(160deg, var(--champagne), var(--cream)); box-shadow: 0 16px 36px -26px rgba(90,74,64,0.5); transition: transform .5s var(--ease), box-shadow .5s var(--ease); display: flex; align-items: flex-end; }
.pf-card:nth-child(3n) { background: linear-gradient(160deg, var(--rose) -10%, var(--cream) 80%); }
.pf-card:nth-child(4n) { background: linear-gradient(160deg, var(--cocoa) -30%, var(--champagne) 90%); }
.pf-card:hover { transform: translateY(-6px); box-shadow: 0 30px 54px -28px rgba(90,74,64,0.55); }
.pf-card .pf-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pf-card .pf-meta { position: relative; z-index: 2; padding: 16px; width: 100%; }
.pf-card .pf-cat { font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.92); }
.pf-card .pf-t { font-family: var(--font-display); font-size: 19px; color: var(--white); margin-top: 4px; line-height: 1.15; }
.pf-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(43,34,28,0.5)); z-index: 1; }
.pf-card .pf-icon { position: absolute; z-index: 2; top: 14px; left: 14px; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.85); display: flex; align-items: center; justify-content: center; }
.pf-card .pf-icon svg { width: 14px; height: 14px; color: var(--ink); }
.pf-note { margin-top: 26px; font-size: 13px; color: var(--ink-3); letter-spacing: 0.02em; }

/* verified collaboration feed */
.ugc-feed-panel { padding: clamp(18px, 3vw, 30px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
.ugc-feed-toolbar { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.ugc-feed-toolbar strong { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 27px); }
.ugc-feed-toolbar span { color: var(--ink-3); font-size: 12px; }
.ugc-feed-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; padding-top: 18px; }
.ugc-feed-card { position: relative; min-height: 300px; overflow: hidden; border-radius: 14px; background: var(--cream); display: flex; align-items: end; color: var(--white); }
.ugc-feed-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ugc-feed-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(43,34,28,.72)); }
.ugc-feed-card-copy { position: relative; z-index: 1; padding: 18px; }
.ugc-feed-card-copy span { display: inline-block; margin-bottom: 6px; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.ugc-feed-card-copy strong { display: block; font-family: var(--font-display); font-size: 21px; line-height: 1.1; }
.ugc-feed-empty { margin: 0; color: var(--ink-3); }

/* why */
.why { background: var(--ink); color: var(--ivory); }
.why .kicker { color: var(--gold); }
.why h2 { color: var(--ivory); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); overflow: hidden; margin-top: clamp(32px,5vw,52px); }
.why-card { background: var(--ink); padding: clamp(26px, 3vw, 38px); }
.why-card h3 { color: var(--ivory); font-size: clamp(19px, 2.2vw, 24px); }
.why-card h3 span { color: var(--gold); font-style: italic; }
.why-card p { margin-top: 12px; font-size: 14.5px; color: rgba(251,248,242,0.62); line-height: 1.6; }

/* bangkok */
.bkk-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.bkk-body .big { font-family: var(--font-display); font-style: italic; font-size: clamp(24px, 3.4vw, 38px); line-height: 1.3; color: var(--ink); }
.bkk-body p { margin-top: 18px; color: var(--ink-2); font-size: 16.5px; max-width: 54ch; }
.bkk-figure { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1/1; background: linear-gradient(150deg, var(--champagne), var(--rose) 170%); display: flex; align-items: center; justify-content: center; }
.bkk-figure img { width: 100%; height: 100%; object-fit: cover; }
.bkk-figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(43,34,28,.52)); }
.bkk-figure .ph { position: absolute; z-index: 1; left: 22px; bottom: 18px; color: var(--white); text-align: center; font-family: var(--font-display); font-size: 26px; font-style: italic; }

/* creator network */
.network-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 22px); }
.network-card { min-height: 300px; display: flex; flex-direction: column; align-items: flex-start; padding: clamp(24px, 3vw, 34px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); transition: transform .35s var(--ease), border-color .35s var(--ease); }
.network-card:hover { transform: translateY(-5px); border-color: var(--rose-deep); }
.network-card.current { background: var(--cream); }
.network-card > span { color: var(--rose-deep); font-size: 11px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.network-card h3 { margin-top: 28px; font-size: clamp(25px, 3vw, 34px); }
.network-card p { margin-top: 12px; color: var(--ink-2); font-size: 15px; line-height: 1.65; }
.network-card strong { margin-top: auto; padding-top: 28px; color: var(--ink); font-size: 13px; }

/* content types chips */
.types { display: flex; flex-wrap: wrap; gap: 12px; }
.type { font-size: 14.5px; font-weight: 500; color: var(--ink); background: var(--white); border: 1px solid var(--line); padding: 12px 20px; border-radius: 100px; transition: background .3s var(--ease), border-color .3s var(--ease); }
.type:hover { background: var(--champagne); border-color: var(--champagne); }

/* process */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.step .n { font-family: var(--font-display); font-size: clamp(40px, 5vw, 60px); color: var(--rose); line-height: 1; }
.step h3 { font-size: 20px; margin-top: 14px; }
.step p { margin-top: 8px; font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* packages */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; }
.pkg { background: var(--ivory); padding: clamp(26px, 3vw, 38px); transition: background .4s var(--ease); }
.pkg:hover { background: var(--white); }
.pkg .price { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold-deep); }
.pkg h3 { font-size: clamp(20px, 2.3vw, 25px); margin-top: 18px; }
.pkg p { margin-top: 10px; font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }

/* faq */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: clamp(20px,3vw,30px) 0; font-family: var(--font-display); font-size: clamp(20px, 2.6vw, 27px); color: var(--ink); transition: color .3s var(--ease); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--rose-deep); }
.faq-sign { flex-shrink: 0; width: 24px; height: 24px; position: relative; margin-top: 8px; }
.faq-sign::before, .faq-sign::after { content: ""; position: absolute; background: var(--rose-deep); transition: transform .35s var(--ease), opacity .35s var(--ease); }
.faq-sign::before { top: 11px; left: 2px; right: 2px; height: 1.5px; }
.faq-sign::after { left: 11px; top: 2px; bottom: 2px; width: 1.5px; }
.faq-item[open] .faq-sign::after { transform: scaleY(0); opacity: 0; }
.faq-answer { padding: 0 52px 26px 0; font-size: 16px; line-height: 1.7; color: var(--ink-2); max-width: 70ch; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.contact-left h2 { font-size: clamp(34px, 5vw, 60px); }
.contact-channels { margin-top: 34px; display: grid; gap: 2px; }
.cc { display: flex; align-items: center; gap: 15px; padding: 17px 0; border-top: 1px solid var(--line-soft); transition: padding .3s var(--ease); }
.cc:hover { padding-left: 6px; }
.cc:last-child { border-bottom: 1px solid var(--line-soft); }
.cc-ico { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }
.cc:hover .cc-ico { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.cc-ico svg { width: 18px; height: 18px; }
.cc .l { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.cc .v { font-size: 16px; font-weight: 500; color: var(--ink); margin-top: 2px; }
.cc .arrow { margin-left: auto; color: var(--ink-3); transition: transform .3s var(--ease); }
/* Let the channel row shrink + the long email wrap on ≤320px phones instead of
   forcing the contact column wider than the viewport. */
.cc > span { min-width: 0; }
.cc .v { overflow-wrap: anywhere; }
.cc:hover .arrow { transform: translateX(4px); }
.response { margin-top: 28px; display: inline-flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-2); }
.response .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--rose); position: relative; }
.response .pulse::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--rose); animation: pulse 2s ease-out infinite; }
@keyframes pulse { to { transform: scale(2.2); opacity: 0; } }

.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 3.4vw, 42px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { margin-bottom: 17px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field label .req { color: var(--rose-deep); }
.field input, .field select, .field textarea { width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--ink); background: var(--ivory); border: 1px solid var(--line); border-radius: 10px; padding: 13px 15px; transition: border-color .3s var(--ease), background .3s var(--ease); }
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--rose); background: var(--white); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form button[type=submit] { width: 100%; margin-top: 4px; }
.form-status { margin-top: 13px; font-size: 13.5px; min-height: 18px; }
.form-status.ok { color: #2c8b58; }
.form-status.err { color: #c0492b; }

/* footer */
.footer { border-top: 1px solid var(--line); padding: clamp(46px, 7vw, 78px) 0 38px; }
.footer-top { display: grid; grid-template-columns: 1.4fr .8fr .8fr .8fr; gap: 40px; }
.footer-brand .b { font-family: var(--font-display); font-size: 30px; }
.footer-brand p { margin-top: 14px; font-size: 14.5px; color: var(--ink-2); max-width: 38ch; }
.footer-col h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 15px; color: var(--ink-2); padding: 6px 0; transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { margin-top: clamp(44px, 6vw, 66px); padding-top: 26px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--ink-3); }

/* reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* responsive */
@media (max-width: 1000px) {
  .hero-grid, .pos-grid, .bkk-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-figure, .pos-figure, .bkk-figure { max-width: 440px; }
  .svc-grid, .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .why-grid { grid-template-columns: 1fr; }
  .network-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .ugc-feed-toolbar { align-items: flex-start; flex-direction: column; }
  .ugc-feed-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  /* Keep brand + burger above the full-screen menu overlay (menu z-index 98). */
  .nav-inner { position: relative; z-index: 99; }
  /* Full-screen opaque overlay (inset:0, not 74px). The old 74px-top menu let
     scrolled page content bleed through when .nav.scrolled's backdrop-filter
     trapped the fixed menu inside the nav bar. */
  .mobile-menu { position: fixed; inset: 0; background: var(--ivory); z-index: 98; padding: calc(env(safe-area-inset-top, 0px) + 90px) var(--pad) calc(env(safe-area-inset-bottom, 0px) + 36px); display: flex; flex-direction: column; gap: 4px; overflow-y: auto; transform: translateY(-10px); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease); }
  .mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
  .mobile-menu a:not(.btn) { font-family: var(--font-display); font-size: clamp(24px, 8vw, 32px); padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
  .mobile-menu .btn { margin-top: 22px; font-size: 15px; width: 100%; }
  /* Drop backdrop-filter while the menu is open so the fixed menu covers the
     full viewport instead of being trapped inside .nav.scrolled. */
  body.no-scroll .nav { background: var(--ivory); border-bottom-color: var(--line-soft); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .svc-grid, .pkg-grid, .pf-grid, .steps { grid-template-columns: 1fr; }
  .pf-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .network-grid, .footer-top { grid-template-columns: 1fr; gap: 34px; }
}
.no-scroll { overflow: hidden; }
