/* ==========================================================================
   FURRISH SQUIDY — furrish.shop
   Brand stylesheet
   ========================================================================== */

:root {
  --teal-900: #0a3b47;
  --teal-800: #0e4f5e;
  --teal-700: #14697d;
  --teal-600: #1b8299;
  --teal-100: #d9ecf0;
  --teal-050: #eef7f9;

  --orange-600: #c8621f;
  --orange-500: #e0813f;
  --orange-100: #fbe9d9;

  --cream-100: #fdfaf4;
  --cream-200: #f7f2e8;
  --cream-300: #efe6d5;

  --ink-900: #10262e;
  --ink-700: #2c4650;
  --ink-500: #5c757e;

  --white: #ffffff;
  --line-green: #06c755;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 2px rgba(10, 59, 71, .06), 0 2px 8px rgba(10, 59, 71, .05);
  --shadow: 0 2px 6px rgba(10, 59, 71, .06), 0 12px 32px rgba(10, 59, 71, .09);
  --shadow-lg: 0 8px 20px rgba(10, 59, 71, .10), 0 30px 60px rgba(10, 59, 71, .13);

  --wrap: 1140px;
  --font-head: "Kanit", "Noto Sans Thai", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Sarabun", "Noto Sans Thai", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- base ---------- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-700);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: var(--teal-700); text-decoration: none; }
a:hover { color: var(--orange-600); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink-900);
  line-height: 1.28;
  font-weight: 600;
  margin: 0 0 .6em;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2rem, 1.35rem + 2.7vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.5vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 1.03rem + .5vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.35em; }
li { margin-bottom: .45em; }
li:last-child { margin-bottom: 0; }

hr { border: 0; border-top: 1px solid var(--cream-300); margin: 2.5rem 0; }

:focus-visible {
  outline: 3px solid var(--teal-600);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--teal-800); color: #fff; padding: .8rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- layout ---------- */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.wrap--narrow { max-width: 780px; }

section { padding: clamp(3.25rem, 6vw, 5.5rem) 0; }
section.tight { padding: clamp(2.25rem, 4vw, 3.5rem) 0; }

.bg-cream { background: var(--cream-200); }
.bg-teal  { background: var(--teal-800); color: var(--teal-100); }
.bg-teal h2, .bg-teal h3 { color: #fff; }
.bg-mint  { background: var(--teal-050); }

.center { text-align: center; }
.lede { font-size: 1.12rem; color: var(--ink-700); }
.muted { color: var(--ink-500); font-size: .94rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange-600);
  background: var(--orange-100);
  padding: .3rem .85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.bg-teal .eyebrow { color: var(--cream-200); background: rgba(255,255,255,.14); }

.section-head { max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section-head p { color: var(--ink-500); }
.bg-teal .section-head p { color: var(--teal-100); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 500; font-size: 1rem;
  padding: .82rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--teal-800); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--teal-900); color: #fff; box-shadow: var(--shadow); }
.btn--line { background: var(--line-green); color: #fff; box-shadow: var(--shadow-sm); }
.btn--line:hover { background: #05b34c; color: #fff; box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--teal-800); border-color: var(--teal-800); }
.btn--ghost:hover { background: var(--teal-800); color: #fff; }
.bg-teal .btn--ghost { color: #fff; border-color: rgba(255,255,255,.65); }
.bg-teal .btn--ghost:hover { background: #fff; color: var(--teal-800); }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.center .btn-row, .btn-row.center { justify-content: center; }

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 250, 244, .92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--cream-300);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 72px;
}
.brand { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.brand img { width: 42px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-head); font-weight: 700; font-size: 1.12rem;
  color: var(--teal-800); letter-spacing: .02em;
}
.brand-tag { font-size: .68rem; color: var(--ink-500); letter-spacing: .04em; }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  font-family: var(--font-head); font-size: .96rem; font-weight: 400;
  color: var(--ink-700); padding: .45rem .7rem; border-radius: 999px;
}
.nav a:hover { background: var(--teal-050); color: var(--teal-800); }
.nav a[aria-current="page"] { color: var(--teal-800); font-weight: 500; background: var(--teal-050); }

.header-actions { display: flex; align-items: center; gap: .6rem; }

.lang-switch {
  display: inline-flex; align-items: center; gap: .3rem;
  font-family: var(--font-head); font-size: .82rem; font-weight: 500;
  border: 1px solid var(--cream-300); border-radius: 999px;
  padding: .22rem .3rem; background: var(--white);
}
.lang-switch a, .lang-switch span {
  padding: .16rem .55rem; border-radius: 999px; color: var(--ink-500); line-height: 1.5;
}
.lang-switch .is-active { background: var(--teal-800); color: #fff; }

.nav-toggle {
  display: none; background: none; border: 0; padding: .5rem; cursor: pointer;
  color: var(--teal-800);
}
.nav-toggle svg { width: 26px; height: 26px; display: block; }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream-100);
    border-bottom: 1px solid var(--cream-300);
    padding: .5rem 22px 1.25rem;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .8rem .4rem; border-radius: var(--radius-sm); border-bottom: 1px solid var(--cream-200); }
  .nav a:last-child { border-bottom: 0; }
  .header-actions .btn { display: none; }
}

/* ---------- hero ---------- */

.hero { padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(3rem, 5vw, 5rem); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.hero h1 { margin-bottom: .45em; }
.hero .lede { font-size: 1.18rem; max-width: 44ch; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.5rem 0 1.75rem; }
.hero-badge {
  font-size: .85rem; font-family: var(--font-head); font-weight: 400;
  background: var(--white); border: 1px solid var(--cream-300);
  padding: .3rem .8rem; border-radius: 999px; color: var(--teal-800);
  box-shadow: var(--shadow-sm);
}
.hero-media {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream-200);
}
.hero-note { margin-top: 1.4rem; font-size: .9rem; color: var(--ink-500); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
}

/* ---------- trust strip ---------- */

.trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--cream-300);
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--cream-300);
}
.trust > div { background: var(--white); padding: 1.35rem 1rem; text-align: center; }
.trust strong {
  display: block; font-family: var(--font-head); font-weight: 600;
  color: var(--teal-800); font-size: 1.02rem; margin-bottom: .1rem;
}
.trust span { font-size: .86rem; color: var(--ink-500); }
@media (max-width: 720px) { .trust { grid-template-columns: repeat(2, 1fr); } }

/* ---------- generic grids & cards ---------- */

.grid { display: grid; gap: 1.35rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }
.card--plain { background: var(--cream-200); border-color: transparent; box-shadow: none; }

.card-icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--teal-050); color: var(--teal-700);
  display: grid; place-items: center; margin-bottom: 1rem;
}
.card-icon svg { width: 24px; height: 24px; }

/* ---------- split (image + text) ---------- */

.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
}
.split--flip .split-media { order: 2; }
.split-media img, .split-media video {
  border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--flip .split-media { order: 0; }
}

/* ---------- feature list ---------- */

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative; padding-left: 2rem; margin-bottom: .85rem;
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: 1.15rem; height: 1.15rem; border-radius: 50%;
  background: var(--teal-700) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/.72rem no-repeat;
}
.bg-teal .check-list li::before { background-color: var(--orange-500); }

/* ---------- video reviews ---------- */

.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
@media (max-width: 860px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .video-grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; } }

.video-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--ink-900); box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
}
.video-card video { width: 100%; height: 100%; object-fit: cover; }
.video-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.2rem .95rem .85rem;
  background: linear-gradient(to top, rgba(8,26,32,.88), rgba(8,26,32,0));
  color: #fff; font-size: .9rem; font-family: var(--font-head); font-weight: 300;
}

/* ---------- gallery ---------- */

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.gallery img { border-radius: var(--radius); box-shadow: var(--shadow-sm); width: 100%; aspect-ratio: 1/1; object-fit: cover; }
@media (max-width: 700px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ---------- steps ---------- */

.steps { counter-reset: step; display: grid; gap: 1.2rem; }
.step {
  display: grid; grid-template-columns: 3rem 1fr; gap: 1.1rem; align-items: start;
  background: var(--white); border: 1px solid var(--cream-300);
  border-radius: var(--radius); padding: 1.35rem 1.4rem;
}
.step::before {
  counter-increment: step; content: counter(step);
  width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--teal-050); color: var(--teal-800);
  font-family: var(--font-head); font-weight: 600; font-size: 1.15rem;
  display: grid; place-items: center;
}
.step h3 { margin-bottom: .25em; }

/* ---------- table ---------- */

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.data {
  width: 100%; border-collapse: collapse; background: var(--white);
  border: 1px solid var(--cream-300); border-radius: var(--radius); overflow: hidden;
  font-size: .97rem;
}
table.data th, table.data td { padding: .95rem 1.1rem; text-align: left; vertical-align: top; }
table.data th {
  font-family: var(--font-head); font-weight: 500; color: var(--teal-800);
  background: var(--teal-050); white-space: nowrap; width: 34%;
}
table.data tr + tr th, table.data tr + tr td { border-top: 1px solid var(--cream-300); }

/* ---------- FAQ ---------- */

.faq-item {
  background: var(--white); border: 1px solid var(--cream-300);
  border-radius: var(--radius); margin-bottom: .9rem; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.15rem 3rem 1.15rem 1.4rem;
  font-family: var(--font-head); font-weight: 500; color: var(--ink-900);
  position: relative; font-size: 1.03rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 1.3rem; top: 50%;
  width: .7rem; height: .7rem; margin-top: -.45rem;
  border-right: 2.5px solid var(--teal-700); border-bottom: 2.5px solid var(--teal-700);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: -.2rem; }
.faq-item summary:hover { background: var(--teal-050); }
.faq-answer { padding: 0 1.4rem 1.35rem; color: var(--ink-700); }

/* ---------- contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-item { display: grid; grid-template-columns: 2.75rem 1fr; gap: 1rem; margin-bottom: 1.6rem; }
.contact-item:last-child { margin-bottom: 0; }
.contact-item .card-icon { width: 2.75rem; height: 2.75rem; margin: 0; border-radius: 12px; }
.contact-item h3 { font-size: 1.02rem; margin-bottom: .15em; }
.contact-item p { margin-bottom: 0; }

.map-frame {
  border: 0; width: 100%; height: 100%; min-height: 340px;
  border-radius: var(--radius); box-shadow: var(--shadow-sm); display: block;
}

/* ---------- notes / callouts ---------- */

.note {
  background: var(--orange-100); border-left: 4px solid var(--orange-500);
  border-radius: var(--radius-sm); padding: 1.1rem 1.3rem; font-size: .96rem;
}
.note strong { color: var(--orange-600); }

/* ---------- CTA band ---------- */

.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: .4em; }
.cta-band p { max-width: 52ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 1.75rem; }

/* ---------- breadcrumbs ---------- */

.crumbs { font-size: .87rem; color: var(--ink-500); padding-top: 1.6rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; padding: 0; margin: 0; }
.crumbs li + li::before { content: "/"; margin-right: .45rem; color: var(--cream-300); }

/* ---------- page header ---------- */

.page-head { padding: clamp(2rem, 4vw, 3.25rem) 0 clamp(1.5rem, 3vw, 2.5rem); }
.page-head h1 { margin-bottom: .35em; }
.page-head .lede { max-width: 62ch; }

/* ---------- prose (legal pages) ---------- */

.prose h2 { margin-top: 2.4rem; font-size: 1.4rem; }
.prose h3 { margin-top: 1.8rem; font-size: 1.1rem; }
.prose h2:first-child { margin-top: 0; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--teal-900); color: #bcd6dd;
  padding: clamp(3rem, 5vw, 4rem) 0 1.75rem;
  font-size: .94rem;
}
.site-footer h4 {
  color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500; margin-bottom: 1rem;
}
.site-footer a { color: #bcd6dd; }
.site-footer a:hover { color: var(--orange-500); }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { width: 58px; margin-bottom: .9rem; }
.footer-brand p { font-size: .9rem; line-height: 1.65; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: .55rem; }
.legal-box {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: .85rem; line-height: 1.7; color: #93b6bf;
}
.legal-box p { margin-bottom: .5em; }
.footer-bottom {
  margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem;
  justify-content: space-between; font-size: .84rem; color: #7fa5af;
}
.social-row { display: flex; gap: .6rem; margin-top: 1rem; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.09); display: grid; place-items: center;
}
.social-row a:hover { background: var(--orange-500); }
.social-row svg { width: 19px; height: 19px; fill: currentColor; }

/* ---------- floating LINE button ---------- */

.line-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--line-green); color: #fff;
  padding: .75rem 1.2rem; border-radius: 999px;
  font-family: var(--font-head); font-weight: 500; font-size: .95rem;
  box-shadow: 0 6px 22px rgba(6, 199, 85, .42);
  transition: transform .15s ease;
}
.line-fab:hover { transform: translateY(-2px); color: #fff; }
.line-fab svg { width: 22px; height: 22px; fill: currentColor; }
@media (max-width: 560px) { .line-fab span { display: none; } .line-fab { padding: .85rem; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
