/*
Theme Name: Amatchless
Theme URI: https://amatchless.com
Author: Amatchless
Author URI: https://amatchless.com
Description: Official theme for Amatchless — Creative & Digital Growth Agency. Dark luxury, black & gold with multicolor accents.
Version: 1.0.0
License: Proprietary
Text Domain: amatchless
*/

:root {
  color-scheme: dark;
  --ink: #080808;
  --s1: #111111;
  --s2: #161616;
  --s3: #1E1E1E;
  --border: rgba(255,255,255,0.07);
  --gold: #C9A84C;
  --gold-2: #F0CC60;
  --gold-dim: rgba(201,168,76,0.14);
  --t1: #F2EEE4;
  --t2: #A09880;
  --t3: #5C574F;
  --cyan: #00D4FF;
  --magenta: #FF1F6E;
  --lime: #74FF2E;
  --violet: #9B1FFF;
  --r: 12px;
  --r-sm: 6px;
  --max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--t1);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', Georgia, serif; margin: 0; line-height: 1.1; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: clamp(16px, 5vw, 48px);
}
.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.gold-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-2) 50%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 14px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--r-sm);
  padding: 13px 26px;
  cursor: pointer;
  border: none;
  transition: transform 0.22s, box-shadow 0.22s, background 0.22s, border-color 0.22s, color 0.22s;
}
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #080808; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.35); }
.btn-outline { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold-dim); transform: translateY(-2px); }
.btn-ghost { background: var(--s2); color: var(--t1); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* NAV */
.nav {
  position: fixed;
  top: env(safe-area-inset-top, 0px);
  left: 0; right: 0;
  z-index: 100;
  padding-block: 20px;
  transition: background 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-block: 12px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.nav-logo em { color: var(--gold); font-style: normal; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a { font-size: 14px; font-weight: 500; color: var(--t2); transition: color 0.2s; }
.nav-links a:hover { color: var(--t1); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--t1); border-radius: 2px; transition: all 0.25s; }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: var(--t1); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--t1); font-size: 28px; cursor: pointer; line-height: 1; }
@media (max-width: 768px) { .nav-links, .nav-cta { display: none; } .nav-hamburger { display: flex; } }

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 30%, rgba(8,8,8,0.75) 100%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(90px); }
.orb-1 { width: 560px; height: 560px; background: var(--cyan); opacity: 0.14; top: -8%; left: -12%; animation: drift1 28s ease-in-out infinite; }
.orb-2 { width: 480px; height: 480px; background: var(--violet); opacity: 0.16; top: 15%; right: -8%; animation: drift2 34s ease-in-out infinite; }
.orb-3 { width: 420px; height: 420px; background: var(--magenta); opacity: 0.12; bottom: -5%; left: 28%; animation: drift3 22s ease-in-out infinite; }
.orb-4 { width: 320px; height: 320px; background: var(--lime); opacity: 0.09; bottom: 18%; right: 18%; animation: drift1 38s ease-in-out infinite reverse; }
@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(40px,-30px) scale(1.07)} 66%{transform:translate(-20px,50px) scale(0.94)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-60px,40px) scale(1.1)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1)} 40%{transform:translate(50px,-40px) scale(0.9)} 80%{transform:translate(-30px,20px) scale(1.05)} }
@media (prefers-reduced-motion: reduce) { .orb { animation: none; } }
.hero-content { position: relative; z-index: 2; padding-block: 160px 100px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 32px;
}
.badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.45;transform:scale(0.75)} }
.hero-headline { font-size: clamp(56px, 9.5vw, 110px); font-weight: 300; line-height: 0.97; letter-spacing: -0.02em; margin-bottom: 28px; }
.hero-headline strong { font-weight: 600; font-style: normal; color: var(--t1); }
.hero-headline em { font-style: italic; }
.hero-sub { font-size: clamp(16px, 1.8vw, 19px); color: var(--t2); max-width: 540px; font-weight: 300; line-height: 1.75; margin-bottom: 40px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 64px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 36px; padding-top: 32px; border-top: 1px solid var(--border); }
.proof-num { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; line-height: 1; font-variant-numeric: tabular-nums; }
.proof-label { font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--t2); margin-top: 5px; }
.scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; color: var(--t3); }
.scroll-hint span { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 44px; background: linear-gradient(var(--gold), transparent); animation: sline 2s ease-in-out infinite; }
@keyframes sline { 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} }
@media (prefers-reduced-motion: reduce) { .scroll-line { animation: none; } }

/* TRUST */
.trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding-block: 26px; background: var(--s1); }
.trust-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; }
.trust-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--t3); white-space: nowrap; }
.trust-sep { width: 1px; height: 18px; background: var(--border); }
.trust-logos { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center; }
.trust-logo { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600; color: var(--t3); letter-spacing: 0.04em; transition: color 0.2s; }
.trust-logo:hover { color: var(--t2); }

/* SECTIONS */
.section { padding-block: 96px; }
.section-alt { background: var(--s1); }
.section-hd { margin-bottom: 56px; }
.section-hd-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section-title { text-wrap: balance; font-size: clamp(32px, 4.5vw, 56px); font-weight: 300; }
.section-desc { color: var(--t2); font-size: 17px; max-width: 500px; line-height: 1.7; margin-top: 14px; }
.centered { text-align: center; }
.centered .gold-line { margin-inline: auto; }
.centered .section-desc { margin-inline: auto; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }
.svc-card { background: var(--s2); padding: 36px 30px; position: relative; overflow: hidden; transition: background 0.28s; }
.svc-card:hover { background: var(--s3); }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.svc-card:nth-child(1)::before { background: var(--cyan); }
.svc-card:nth-child(2)::before { background: var(--magenta); }
.svc-card:nth-child(3)::before { background: var(--violet); }
.svc-card:nth-child(4)::before { background: var(--lime); }
.svc-card:nth-child(5)::before { background: linear-gradient(90deg, var(--gold), var(--gold-2)); }
.svc-card:nth-child(6)::before { background: linear-gradient(90deg, var(--magenta), var(--violet)); }
.svc-icon { font-size: 26px; margin-bottom: 18px; }
.svc-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; margin-bottom: 10px; line-height: 1.2; }
.svc-desc { color: var(--t2); font-size: 13.5px; line-height: 1.7; margin-bottom: 18px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.svc-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; background: var(--s3); color: var(--t3); border: 1px solid var(--border); }

/* STATS */
.stats { background: var(--s1); border-block: 1px solid var(--border); padding-block: 68px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item { padding: 28px 20px; text-align: center; position: relative; }
.stat-item + .stat-item::before { content: ''; position: absolute; left: 0; top: 18%; bottom: 18%; width: 1px; background: var(--border); }
@media (max-width: 640px) { .stat-item:nth-child(3)::before { display: none; } .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--border); } }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(38px, 5.5vw, 60px); font-weight: 600; line-height: 1; font-variant-numeric: tabular-nums; }
.stat-suffix-txt { font-size: 0.55em; vertical-align: super; color: var(--gold-2); -webkit-text-fill-color: var(--gold-2); }
.stat-lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--t2); margin-top: 8px; }

/* ABOUT */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 768px) { .about-layout { grid-template-columns: 1fr; gap: 48px; } }
.about-vis { aspect-ratio: 4/5; max-width: 100%; background: var(--s2); border-radius: var(--r); overflow: hidden; display: flex; align-items: center; justify-content: center; position: relative; }
.about-vis-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%); }
.about-vis-orb { position: absolute; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(0,212,255,0.28), transparent 70%); top: -40px; right: -40px; }
.about-vis-inner { position: relative; z-index: 2; text-align: center; padding: 36px; }
.about-vis-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(24px, 3vw, 40px); font-weight: 300; font-style: italic; line-height: 1.35; color: var(--t1); }
.about-vis-bar { width: 36px; height: 2px; background: var(--gold); margin: 16px auto; }
.about-vis-caption { font-size: 11px; color: var(--t2); letter-spacing: 0.08em; text-transform: uppercase; }
.pillars { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.pillar { display: flex; gap: 14px; align-items: flex-start; }
.pillar-ico { width: 38px; min-width: 38px; height: 38px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 17px; }
.pillar-ico-1 { background: rgba(0,212,255,0.1); }
.pillar-ico-2 { background: rgba(155,31,255,0.1); }
.pillar-ico-3 { background: rgba(201,168,76,0.1); }
.pillar-t { font-weight: 600; font-size: 15px; margin-bottom: 3px; }
.pillar-d { font-size: 13.5px; color: var(--t2); line-height: 1.65; }

/* PROCESS */
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); position: relative; margin-top: 56px; }
.process-steps::before { content: ''; position: absolute; top: 27px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent); }
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; } .process-steps::before { display: none; } }
@media (max-width: 600px) { .process-steps { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 380px) { .process-steps { grid-template-columns: 1fr; } }
.proc-step { text-align: center; padding: 0 20px; }
.proc-num-wrap { width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(201,168,76,0.45); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; background: var(--ink); position: relative; z-index: 2; }
.proc-num { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--gold); }
.proc-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.proc-desc { font-size: 13px; color: var(--t2); line-height: 1.7; }

/* RESULTS */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .results-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .results-grid { grid-template-columns: 1fr; } }
.res-card { background: var(--s2); border-radius: var(--r); padding: 28px; border: 1px solid var(--border); transition: border-color 0.28s, transform 0.28s; overflow: hidden; position: relative; }
.res-card:hover { border-color: rgba(201,168,76,0.28); transform: translateY(-4px); }
.res-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201,168,76,0.03), transparent 55%); pointer-events: none; }
.res-industry { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.res-stat { font-family: 'Cormorant Garamond', serif; font-size: 50px; font-weight: 600; line-height: 1; font-variant-numeric: tabular-nums; margin-bottom: 6px; }
.res-metric { font-size: 14px; font-weight: 600; color: var(--t1); margin-bottom: 10px; }
.res-desc { font-size: 13px; color: var(--t2); line-height: 1.65; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: var(--s2); border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); transition: border-color 0.28s, transform 0.25s; }
.blog-card:hover { border-color: rgba(201,168,76,0.28); transform: translateY(-4px); }
.blog-thumb { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 40px; opacity: 0.5; }
.blog-thumb-default { background: linear-gradient(135deg, rgba(0,212,255,0.18), rgba(155,31,255,0.13)); }
.blog-body { padding: 22px; }
.blog-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.blog-title { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 600; line-height: 1.3; margin-bottom: 10px; text-wrap: balance; }
.blog-exc { font-size: 13px; color: var(--t2); line-height: 1.65; margin-bottom: 18px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: var(--t3); }
.blog-card-link { display: block; color: inherit; }
.blog-card-link:hover .blog-title { color: var(--gold); }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; }
@media (max-width: 768px) { .faq-layout { grid-template-columns: 1fr; gap: 40px; } }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: var(--s2); border-radius: var(--r-sm); overflow: hidden; }
.faq-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; background: none; border: none; color: var(--t1); font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 500; text-align: left; cursor: pointer; transition: color 0.2s; }
.faq-trigger:hover { color: var(--gold); }
.faq-trigger:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.faq-ico { min-width: 20px; width: 20px; height: 20px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--gold); transition: transform 0.28s; }
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-ans { display: none; padding: 0 22px 18px; font-size: 13.5px; color: var(--t2); line-height: 1.8; }
.faq-item.open .faq-ans { display: block; }

/* CONTACT */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 48px; } }
.contact-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px, 3.8vw, 50px); font-weight: 300; line-height: 1.15; margin-bottom: 16px; text-wrap: balance; }
.contact-sub { font-size: 15px; color: var(--t2); line-height: 1.7; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail { display: flex; align-items: center; gap: 12px; font-size: 13.5px; }
.contact-detail-ico { width: 34px; height: 34px; min-width: 34px; background: var(--s2); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 15px; }
.contact-detail-lbl { color: var(--t3); font-size: 11px; letter-spacing: 0.05em; }
.contact-detail-val { color: var(--t1); font-weight: 500; margin-top: 1px; font-size: 14px; }
.form-card { background: var(--s1); border-radius: var(--r); padding: 36px; border: 1px solid var(--border); }
@media (max-width: 480px) { .form-card { padding: 22px; } }
.form-card-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; margin-bottom: 4px; }
.form-card-sub { font-size: 13px; color: var(--t2); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-grp { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-grp:last-of-type { margin-bottom: 0; }
.form-row .form-grp { margin-bottom: 0; }
.form-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--t3); }
.form-ctrl { background: var(--s2); border: 1px solid var(--border); border-radius: var(--r-sm); color: var(--t1); font-family: 'Outfit', sans-serif; font-size: 14px; padding: 11px 14px; outline: none; transition: border-color 0.2s; width: 100%; }
.form-ctrl::placeholder { color: var(--t3); }
.form-ctrl:focus { border-color: var(--gold); }
select.form-ctrl { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C574F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 34px; }
select.form-ctrl option { background: var(--s2); }
textarea.form-ctrl { min-height: 96px; resize: vertical; }
.form-submit { width: 100%; padding: 15px; font-size: 15px; font-weight: 600; letter-spacing: 0.04em; margin-top: 14px; }
.form-note { text-align: center; font-size: 11px; color: var(--t3); margin-top: 10px; }
.form-success { text-align: center; padding: 36px 16px; }
.form-success-ico { font-size: 44px; margin-bottom: 14px; }
.form-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; margin-bottom: 8px; }
.form-success p { color: var(--t2); font-size: 15px; }

/* FOOTER */
.footer-bar { height: 2px; background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent); }
.footer { background: var(--s1); border-top: 1px solid var(--border); padding-block: 60px 28px; }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--border); margin-bottom: 28px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; gap: 28px; } }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 10px; }
.footer-brand-name em { color: var(--gold); font-style: normal; }
.footer-brand-desc { font-size: 13px; color: var(--t2); line-height: 1.7; max-width: 270px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 8px; }
.footer-soc-link { width: 34px; height: 34px; background: var(--s2); border: 1px solid var(--border); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 13px; transition: border-color 0.2s, color 0.2s; color: var(--t2); font-weight: 600; }
.footer-soc-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--t3); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13.5px; color: var(--t2); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 12px; color: var(--t3); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 12px; color: var(--t3); transition: color 0.2s; }
.footer-legal a:hover { color: var(--t2); }

/* SINGLE POST */
.post-hero { padding-block: 140px 60px; background: var(--s1); border-bottom: 1px solid var(--border); }
.post-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.post-h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 5vw, 64px); font-weight: 300; line-height: 1.1; margin-bottom: 20px; max-width: 900px; }
.post-meta { font-size: 12px; color: var(--t3); display: flex; gap: 16px; flex-wrap: wrap; }
.post-body { padding-block: 64px; max-width: 760px; margin: 0 auto; }
.post-body h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(24px, 3vw, 36px); font-weight: 400; margin: 40px 0 16px; color: var(--t1); }
.post-body h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(20px, 2.5vw, 28px); font-weight: 400; margin: 32px 0 12px; color: var(--t1); }
.post-body p { color: var(--t2); font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.post-body a { color: var(--gold); border-bottom: 1px solid rgba(201,168,76,0.3); }
.post-body ul, .post-body ol { color: var(--t2); font-size: 16px; line-height: 1.8; margin: 0 0 20px 24px; }
.post-body blockquote { border-left: 3px solid var(--gold); padding: 12px 24px; margin: 32px 0; background: var(--s1); border-radius: 0 var(--r-sm) var(--r-sm) 0; }
.post-body blockquote p { color: var(--t1); font-style: italic; font-size: 18px; }
.post-body img { border-radius: var(--r); margin: 32px 0; width: 100%; }

/* WHATSAPP FLOATING BUTTON */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 9998;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
@media (max-width: 768px) { .wa-float { bottom: 84px; right: 16px; width: 48px; height: 48px; } }

/* STICKY MOBILE CTA BAR */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--s1);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  z-index: 9997;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) { .sticky-cta { display: block; } }
.sticky-cta.sticky-cta-visible { transform: translateY(0); }
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}
.sticky-cta-title { font-size: 13px; font-weight: 600; color: var(--t1); }
.sticky-cta-sub   { font-size: 11px; color: var(--t3); margin-top: 2px; }

/* FORM TRUST STRIP */
.form-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 20px;
  font-size: 11px;
  color: var(--t3);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.form-trust-strip span { display: flex; align-items: center; gap: 4px; }

/* FORM SUBMIT BUTTON STATE */
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* CONTACT DETAIL VALUE LINK */
.contact-detail-val a { color: inherit; transition: color 0.2s; }
.contact-detail-val a:hover { color: var(--gold); }
