/* ===== CSS Variables ===== */
:root {
 --m: #2B140C;
 --dc: #160B07;
 --cb: #9B4E1D;
 --sf: #E87518;
 --wo: #F28A22;
 --kh: #B8562A;
 --mc: #F6E8D2;
 --wi: #FFF8EE;
 --cg: #758B36;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

html {
 scroll-behavior: smooth;
}

body {
 font-family: system-ui, -apple-system, sans-serif;
 background: var(--dc);
 color: var(--mc);
 overflow-x: hidden;
 line-height: 1.6;
}

h1, h2, h3, h4 {
 font-family: Georgia, 'Times New Roman', serif;
 font-weight: 500;
 line-height: 1.15;
}

::selection {
 background: rgba(232, 117, 24, 0.4);
 color: var(--wi);
}

/* ===== Loader ===== */
#loader {
 position: fixed;
 inset: 0;
 z-index: 9999;
 display: flex;
 align-items: center;
 justify-content: center;
 flex-direction: column;
 gap: 1.25rem;
 background: var(--dc);
 transition: opacity 0.6s, visibility 0.6s;
}

#loader.hidden {
 opacity: 0;
 visibility: hidden;
 pointer-events: none;
}

.cup-wrap {
 position: relative;
 width: 50px;
 height: 65px;
}

.cup {
 width: 50px;
 height: 44px;
 background: linear-gradient(180deg, var(--cb), var(--kh));
 border-radius: 3px 3px 10px 10px;
 position: relative;
 overflow: hidden;
}

.cup-handle {
 position: absolute;
 right: -12px;
 top: 7px;
 width: 14px;
 height: 22px;
 border: 3px solid var(--kh);
 border-left: none;
 border-radius: 0 8px 8px 0;
}

.fill {
 position: absolute;
 bottom: 0;
 left: 0;
 right: 0;
 height: 0;
 background: linear-gradient(180deg, var(--wo), var(--sf));
 border-radius: 0 0 7px 7px;
 animation: fillUp 2s ease-in-out 0.3s forwards;
}

@keyframes fillUp {
 to { height: 32px; }
}

.st {
 position: absolute;
 top: -14px;
 left: 50%;
 width: 2px;
 height: 14px;
 background: var(--mc);
 border-radius: 2px;
 opacity: 0;
 animation: sUp 2s ease-out infinite;
}

.st:nth-child(2) {
 animation-delay: 0.4s;
 margin-left: -7px;
}

.st:nth-child(3) {
 animation-delay: 0.8s;
 margin-left: 7px;
}

@keyframes sUp {
 0% { opacity: 0; transform: translateY(0) scaleX(1); }
 30% { opacity: 0.5; }
 100% { opacity: 0; transform: translateY(-20px) scaleX(1.8); }
}

.load-txt {
 color: var(--mc);
 opacity: 0.5;
 font-size: 0.7rem;
 letter-spacing: 0.3em;
 text-transform: uppercase;
}

.load-bar {
 width: 140px;
 height: 2px;
 background: var(--m);
 border-radius: 1px;
 overflow: hidden;
}

.load-bar-fill {
 height: 100%;
 width: 0;
 background: linear-gradient(90deg, var(--sf), var(--kh));
 border-radius: 1px;
 animation: lbar 2s ease-in-out 0.3s forwards;
}

@keyframes lbar {
 to { width: 100%; }
}

/* ===== Scroll Progress ===== */
#sp {
 position: fixed;
 top: 0;
 left: 0;
 height: 3px;
 background: linear-gradient(90deg, var(--sf), var(--kh));
 z-index: 1000;
 width: 0;
 transition: width 0.1s;
}

/* ===== Header ===== */
header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 100;
 transition: all 0.4s;
 padding: 1.25rem 0;
}

header.scrolled {
 background: rgba(22, 11, 7, 0.88);
 backdrop-filter: blur(12px);
 -webkit-backdrop-filter: blur(12px);
 border-bottom: 1px solid rgba(43, 20, 12, 0.3);
 padding: 0.7rem 0;
}

.hi {
 max-width: 1100px;
 margin: 0 auto;
 padding: 0 1.5rem;
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.logo {
 display: flex;
 flex-direction: column;
 text-decoration: none;
}

.logo-t {
 font-size: 0.75rem;
 color: var(--sf);
 letter-spacing: 0.15em;
 text-transform: uppercase;
 font-weight: 500;
}

.logo-m {
 font-size: 1.4rem;
 font-weight: 700;
 color: var(--wi);
 line-height: 1.1;
}

nav {
 display: none;
 align-items: center;
 gap: 1.75rem;
}

nav a {
 font-size: 0.7rem;
 font-weight: 500;
 color: var(--mc);
 opacity: 0.7;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 transition: color 0.3s;
 text-decoration: none;
}

nav a:hover {
 color: var(--sf);
}

.hcta {
 display: none;
 padding: 0.5rem 1.25rem;
 background: var(--sf);
 color: var(--dc);
 font-size: 0.7rem;
 font-weight: 600;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 border-radius: 9999px;
 transition: background 0.3s;
 text-decoration: none;
}

.hcta:hover {
 background: var(--wo);
}

.mbtn {
 display: flex;
 flex-direction: column;
 gap: 5px;
 background: none;
 border: none;
 cursor: pointer;
 padding: 6px;
}

.mbtn span {
 display: block;
 width: 20px;
 height: 2px;
 background: var(--wi);
 transition: all 0.3s;
}

.mbtn.active span:nth-child(1) {
 transform: rotate(45deg) translate(5px, 5px);
}

.mbtn.active span:nth-child(2) {
 opacity: 0;
}

.mbtn.active span:nth-child(3) {
 transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Mobile Menu ===== */
.mmenu {
 position: fixed;
 inset: 0;
 z-index: 99;
 background: rgba(22, 11, 7, 0.97);
 backdrop-filter: blur(20px);
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 gap: 1.75rem;
 opacity: 0;
 visibility: hidden;
 transition: all 0.4s;
}

.mmenu.open {
 opacity: 1;
 visibility: visible;
}

.mmenu a {
 font-size: 1.75rem;
 color: var(--wi);
 transition: color 0.3s;
 text-decoration: none;
}

.mmenu a:hover {
 color: var(--sf);
}

/* ===== Hero ===== */
.hero {
 min-height: 100vh;
 display: flex;
 align-items: center;
 justify-content: center;
 position: relative;
 overflow: hidden;
 background: linear-gradient(135deg, #160B07, #1a0d08 50%, #160B07);
}

.hero::before {
 content: "";
 position: absolute;
 inset: 0;
 background:
 radial-gradient(ellipse at 15% 50%, rgba(232, 117, 24, 0.07), transparent 60%),
 radial-gradient(ellipse at 85% 30%, rgba(184, 86, 42, 0.06), transparent 50%);
 pointer-events: none;
}

.hc {
 position: relative;
 z-index: 2;
 max-width: 1100px;
 margin: 0 auto;
 padding: 6rem 1.5rem 0;
 text-align: center;
}

.htag {
 display: inline-flex;
 align-items: center;
 gap: 0.75rem;
 color: var(--sf);
 font-size: 0.75rem;
 font-weight: 500;
 letter-spacing: 0.25em;
 text-transform: uppercase;
 margin-bottom: 1.25rem;
 opacity: 0;
 animation: fu 0.8s ease-out 0.2s forwards;
}

.htag::before,
.htag::after {
 content: "";
 width: 1.75rem;
 height: 1px;
 background: var(--sf);
}

.hero h1 {
 font-size: clamp(2.5rem, 8vw, 6.5rem);
 line-height: 0.95;
 margin-bottom: 0.25rem;
 opacity: 0;
 animation: fu 0.8s ease-out 0.3s forwards;
}

.hero h1 .l1 {
 display: block;
 font-weight: 400;
 color: var(--wi);
 font-size: 0.6em;
}

.hero h1 .l2 {
 display: block;
 font-weight: 700;
 color: var(--sf);
}

.hsub {
 margin-top: 1.25rem;
 opacity: 0;
 animation: fu 0.8s ease-out 0.6s forwards;
}

.hsub p {
 font-family: Georgia, 'Times New Roman', serif;
 font-style: italic;
 font-size: clamp(1rem, 2.5vw, 1.3rem);
 color: var(--mc);
 opacity: 0.75;
 line-height: 1.6;
}

.hsub p:last-child {
 color: var(--wo);
 opacity: 0.85;
}

.hdesc {
 max-width: 30rem;
 margin: 1.75rem auto;
 opacity: 0;
 animation: fu 0.8s ease-out 0.9s forwards;
 color: var(--mc);
 opacity: 0.45;
 line-height: 1.8;
 font-size: 0.95rem;
}

.hbtns {
 display: flex;
 flex-wrap: wrap;
 gap: 1rem;
 justify-content: center;
 margin-top: 1.75rem;
 opacity: 0;
 animation: fu 0.8s ease-out 1.1s forwards;
}

.bp {
 display: inline-flex;
 align-items: center;
 padding: 0.8rem 1.75rem;
 background: var(--sf);
 color: var(--dc);
 font-size: 0.75rem;
 font-weight: 600;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 border-radius: 9999px;
 transition: all 0.3s;
 text-decoration: none;
}

.bp:hover {
 background: var(--wo);
 transform: translateY(-2px);
 box-shadow: 0 8px 25px rgba(232, 117, 24, 0.25);
}

.bo {
 display: inline-flex;
 align-items: center;
 padding: 0.8rem 1.75rem;
 border: 1px solid rgba(246, 232, 210, 0.18);
 color: var(--mc);
 font-size: 0.75rem;
 font-weight: 500;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 border-radius: 9999px;
 transition: all 0.3s;
 text-decoration: none;
}

.bo:hover {
 border-color: var(--sf);
 color: var(--sf);
}

.hscroll {
 position: absolute;
 bottom: 2rem;
 left: 50%;
 transform: translateX(-50%);
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 0.4rem;
 opacity: 0;
 animation: fu 0.8s ease-out 1.4s forwards;
}

.hscroll span {
 font-size: 0.6rem;
 letter-spacing: 0.2em;
 text-transform: uppercase;
 color: var(--mc);
 opacity: 0.35;
}

.hscroll-line {
 width: 1px;
 height: 36px;
 background: rgba(246, 232, 210, 0.08);
 position: relative;
 overflow: hidden;
}

.hscroll-line::after {
 content: "";
 position: absolute;
 top: -50%;
 left: 0;
 width: 100%;
 height: 50%;
 background: var(--sf);
 border-radius: 1px;
 animation: sd 2s ease-in-out infinite;
}

@keyframes sd {
 0% { top: -50%; }
 100% { top: 150%; }
}

@keyframes fu {
 from { opacity: 0; transform: translateY(22px); }
 to { opacity: 1; transform: translateY(0); }
}

.hbf {
 position: absolute;
 bottom: 0;
 left: 0;
 right: 0;
 height: 220px;
 background: linear-gradient(to top, var(--wi), transparent);
 pointer-events: none;
 z-index: 1;
}

/* ===== Sections ===== */
.sec {
 padding: 4.5rem 1.5rem;
 position: relative;
}

.si {
 max-width: 1100px;
 margin: 0 auto;
}

.stag {
 display: inline-flex;
 align-items: center;
 gap: 0.75rem;
 font-size: 0.7rem;
 font-weight: 600;
 letter-spacing: 0.25em;
 text-transform: uppercase;
 margin-bottom: 0.75rem;
}

.stag::before,
.stag::after {
 content: "";
 width: 1.75rem;
 height: 1px;
}

.stag.sf {
 color: var(--sf);
}

.stag.sf::before,
.stag.sf::after {
 background: var(--sf);
}

.stag.cb {
 color: var(--cb);
}

.stag.cb::before,
.stag.cb::after {
 background: var(--cb);
}

.stitle {
 font-size: clamp(1.75rem, 4vw, 2.5rem);
 line-height: 1.2;
 margin-bottom: 1rem;
}

.ssub {
 font-size: 1rem;
 opacity: 0.4;
 max-width: 30rem;
 margin: 0 auto 2.5rem;
 line-height: 1.75;
}

/* ===== Reveal Animations ===== */
.rv {
 opacity: 0;
 transform: translateY(25px);
 transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.rv.vis {
 opacity: 1;
 transform: none;
}

.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }
.rd4 { transition-delay: 0.4s; }
.rd5 { transition-delay: 0.5s; }

/* ===== Story Section ===== */
.story {
 background: var(--wi);
 color: var(--m);
}

.sg {
 display: grid;
 grid-template-columns: 1fr;
 gap: 2.5rem;
 align-items: center;
}

@media (min-width: 768px) {
 .sg { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.sv {
 position: relative;
}

.scard {
 aspect-ratio: 4/5;
 background: linear-gradient(145deg, var(--cb) 0%, var(--m) 40%, var(--dc) 100%);
 border-radius: 4px;
 display: flex;
 align-items: center;
 justify-content: center;
 position: relative;
 overflow: hidden;
}

.scard svg {
 width: 55%;
 opacity: 0.6;
}

.cn {
 position: absolute;
 width: 2.5rem;
 height: 2.5rem;
}

.ctl {
 top: -0.5rem;
 left: -0.5rem;
 border-top: 2px solid rgba(232, 117, 24, 0.3);
 border-left: 2px solid rgba(232, 117, 24, 0.3);
}

.cbr {
 bottom: -0.5rem;
 right: -0.5rem;
 border-bottom: 2px solid rgba(232, 117, 24, 0.3);
 border-right: 2px solid rgba(232, 117, 24, 0.3);
}

.sfloat {
 position: absolute;
 border-radius: 50%;
 background: rgba(246, 232, 210, 0.04);
 animation: fs 5s ease-in-out infinite;
}

@keyframes fs {
 0%, 100% { transform: translateY(0); }
 50% { transform: translateY(-10px); }
}

.semojis {
 display: flex;
 justify-content: center;
 gap: 1rem;
 margin-top: 2.5rem;
 font-size: 1.4rem;
 color: var(--cb);
 opacity: 0.25;
}

.semojis span {
 animation: fs 3s ease-in-out infinite;
}

.semojis span:nth-child(2) { animation-delay: 0.3s; }
.semojis span:nth-child(3) { animation-delay: 0.6s; }
.semojis span:nth-child(4) { animation-delay: 0.9s; }
.semojis span:nth-child(5) { animation-delay: 1.2s; }

/* ===== Features Section ===== */
.feat {
 background: var(--wi);
 color: var(--m);
}

.fg {
 display: grid;
 grid-template-columns: 1fr;
 gap: 1rem;
}

@media (min-width: 640px) {
 .fg { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
 .fg { grid-template-columns: repeat(5, 1fr); }
}

.fc {
 background: #fff;
 padding: 1.75rem;
 border-radius: 1rem;
 border: 1px solid rgba(43, 20, 12, 0.05);
 transition: all 0.4s;
 position: relative;
 overflow: hidden;
}

.fc:hover {
 transform: translateY(-5px);
 box-shadow: 0 15px 35px rgba(43, 20, 12, 0.07);
 border-color: rgba(155, 78, 29, 0.12);
}

.fc .fi {
 width: 2.25rem;
 height: 2.25rem;
 border-radius: 0.5rem;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 1rem;
 font-size: 1.1rem;
 transition: transform 0.3s;
}

.fc:hover .fi {
 transform: scale(1.1);
}

.fc h3 {
 font-size: 1.05rem;
 margin-bottom: 0.4rem;
}

.fc p {
 font-size: 0.82rem;
 color: rgba(43, 20, 12, 0.45);
 line-height: 1.6;
}

.fc .fl {
 width: 0;
 height: 1px;
 margin-top: 1.25rem;
 background: linear-gradient(90deg, rgba(155, 78, 29, 0.25), transparent);
 transition: width 0.5s;
}

.fc:hover .fl {
 width: 100%;
}

/* ===== Products Section ===== */
.prod {
 background: var(--m);
 color: var(--wi);
}

.pg {
 display: grid;
 grid-template-columns: 1fr;
 gap: 1.5rem;
}

@media (min-width: 640px) {
 .pg { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
 .pg { grid-template-columns: repeat(3, 1fr); }
}

.pc {
 aspect-ratio: 3/4;
 border-radius: 1rem;
 position: relative;
 overflow: hidden;
 transition: transform 0.5s, box-shadow 0.5s;
 cursor: pointer;
}

.pc:hover {
 transform: translateY(-6px);
 box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.pcb {
 position: absolute;
 inset: 0;
}

.pcc {
 position: absolute;
 inset: 0;
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 1.5rem;
}

.pco {
 position: absolute;
 bottom: 0;
 left: 0;
 right: 0;
 padding: 1.5rem;
 background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
 opacity: 0;
 transition: opacity 0.5s;
}

.pc:hover .pco {
 opacity: 1;
}

.pco p {
 font-size: 0.82rem;
 color: var(--wi);
 opacity: 0.85;
 line-height: 1.6;
}

.pbadge {
 position: absolute;
 top: 0.75rem;
 right: 0.75rem;
 padding: 0.2rem 0.65rem;
 background: var(--sf);
 color: var(--dc);
 font-size: 0.55rem;
 font-weight: 700;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 border-radius: 9999px;
}

.pvis {
 width: 5.5rem;
 height: 8rem;
 border-radius: 0.375rem 0.375rem 0 0;
 display: flex;
 align-items: center;
 justify-content: center;
 box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.pvis span {
 font-size: 0.55rem;
 letter-spacing: 0.15em;
 opacity: 0.8;
 text-align: center;
 padding: 0.4rem;
}

.p1b { background: linear-gradient(135deg, var(--wi), var(--wi) 40%, var(--cg) 40%, var(--cg) 45%, var(--wi) 45%); }
.p1v { background: linear-gradient(to bottom, var(--cg), #5a7030); color: var(--wi); }
.p2b { background: linear-gradient(135deg, var(--wi), var(--sf) 35%, var(--sf) 45%, var(--wi) 45%); }
.p2v { background: linear-gradient(to bottom, var(--sf), var(--kh)); color: var(--wi); }
.p3b { background: linear-gradient(135deg, var(--dc), var(--m)); }
.p3v { background: linear-gradient(135deg, var(--dc), var(--m)); border: 1px solid rgba(184, 138, 67, 0.2); color: var(--mb); }

.pint {
 text-align: center;
 margin-top: 2rem;
}

/* ===== Culture Section ===== */
.cult {
 background: var(--wi);
 color: var(--m);
}

.cg {
 display: grid;
 grid-template-columns: 1fr;
 gap: 1.25rem;
}

@media (min-width: 640px) {
 .cg { grid-template-columns: repeat(2, 1fr); }
}

.cc {
 background: rgba(255, 255, 255, 0.6);
 padding: 1.75rem;
 border-radius: 1rem;
 border: 1px solid rgba(155, 78, 29, 0.05);
 transition: all 0.4s;
 position: relative;
 overflow: hidden;
}

.cc:hover {
 border-color: rgba(155, 78, 29, 0.12);
 box-shadow: 0 6px 20px rgba(43, 20, 12, 0.04);
 transform: translateY(-3px);
}

.cc .num {
 position: absolute;
 top: 0.75rem;
 right: 1.25rem;
 font-family: Georgia, 'Times New Roman', serif;
 font-size: 3rem;
 line-height: 1;
 color: var(--cb);
 opacity: 0.06;
}

.cc h3 {
 font-size: 1.1rem;
 margin-bottom: 0.6rem;
}

.cc p {
 font-size: 0.85rem;
 color: rgba(43, 20, 12, 0.42);
 line-height: 1.65;
}

.ccard {
 background: linear-gradient(135deg, var(--m), var(--dc));
 border-radius: 2rem;
 padding: 2.5rem;
 text-align: center;
 max-width: 900px;
 margin: 2.5rem auto 0;
}

.crow {
 display: flex;
 align-items: center;
 justify-content: space-between;
 margin-bottom: 1.25rem;
}

.ci {
 text-align: center;
 flex: 1;
}

.cico {
 font-size: 1.5rem;
 margin-bottom: 0.4rem;
 opacity: 0.65;
}

.cnam {
 font-family: Georgia, 'Times New Roman', serif;
 color: var(--sf);
 font-size: 1.1rem;
 margin-bottom: 0.35rem;
}

.cdes {
 font-size: 0.72rem;
 color: rgba(246, 232, 210, 0.28);
 max-width: 150px;
 margin: 0 auto;
 line-height: 1.5;
}

.cdv {
 width: 1px;
 height: 3rem;
 background: rgba(246, 232, 210, 0.07);
 margin: 0 0.5rem;
}

.chd {
 font-size: 1.25rem;
 color: var(--wi);
 border-top: 1px solid rgba(246, 232, 210, 0.04);
 padding-top: 1.25rem;
}

.chd .a {
 color: var(--sf);
}

/* ===== Business Section ===== */
.biz {
 background: var(--dc);
 color: var(--wi);
}

.bg {
 display: grid;
 grid-template-columns: 1fr;
 gap: 1.25rem;
}

@media (min-width: 640px) {
 .bg { grid-template-columns: repeat(3, 1fr); }
}

.bc {
 background: rgba(246, 232, 210, 0.03);
 border: 1px solid rgba(246, 232, 210, 0.05);
 padding: 1.75rem;
 border-radius: 1rem;
 transition: all 0.4s;
}

.bc:hover {
 border-color: rgba(232, 117, 24, 0.18);
 transform: translateY(-4px);
}

.bc h3 {
 font-size: 1.05rem;
 margin-bottom: 0.65rem;
}

.bc p {
 font-size: 0.85rem;
 color: rgba(246, 232, 210, 0.32);
 line-height: 1.65;
}

.bl {
 display: inline-block;
 margin-top: 1.25rem;
 padding: 0.25rem 0.75rem;
 background: rgba(232, 117, 24, 0.1);
 color: var(--sf);
 font-size: 0.55rem;
 font-weight: 700;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 border-radius: 9999px;
}

.bcta {
 text-align: center;
 margin-top: 2.5rem;
}

/* ===== Contact Section ===== */
.cont {
 background: linear-gradient(180deg, var(--wi), #FFF8EE);
 color: var(--m);
 text-align: center;
}

.cem {
 font-family: Georgia, 'Times New Roman', serif;
 font-style: italic;
 font-size: 1.1rem;
 color: var(--cb);
 display: inline-block;
 margin-top: 1rem;
 text-decoration: none;
}

.cem:hover {
 color: var(--kh);
}

.cloc {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 0.5rem;
 color: rgba(43, 20, 12, 0.28);
 font-size: 0.85rem;
 margin-top: 1rem;
}

.cdot {
 width: 4px;
 height: 4px;
 border-radius: 50%;
 background: var(--kh);
 opacity: 0.4;
}

/* ===== Footer ===== */
footer {
 background: var(--dc);
 padding: 2.5rem 1.5rem;
 opacity: 0.65;
}

.fi {
 max-width: 1100px;
 margin: 0 auto;
 display: grid;
 grid-template-columns: 1fr;
 gap: 2rem;
}

@media (min-width: 768px) {
 .fi { grid-template-columns: 2fr 1fr 1fr; }
}

.fb .logo-t {
 font-size: 0.75rem;
 color: var(--sf);
 letter-spacing: 0.15em;
 text-transform: uppercase;
 font-weight: 500;
}

.fb .logo-m {
 font-size: 1.3rem;
 font-weight: 700;
 color: var(--wi);
 line-height: 1.2;
 margin-bottom: 0.6rem;
}

.fb p {
 font-size: 0.82rem;
 color: rgba(246, 232, 210, 0.28);
 line-height: 1.6;
 max-width: 18rem;
}

.fn h4,
.fnl h4 {
 font-size: 0.65rem;
 font-weight: 600;
 letter-spacing: 0.15em;
 text-transform: uppercase;
 color: rgba(246, 232, 210, 0.45);
 margin-bottom: 1.1rem;
}

.fn a {
 display: block;
 font-size: 0.82rem;
 color: rgba(246, 232, 210, 0.28);
 margin-bottom: 0.5rem;
 transition: color 0.3s;
 text-decoration: none;
}

.fn a:hover {
 color: var(--sf);
}

.fnl p {
 font-size: 0.82rem;
 color: rgba(246, 232, 210, 0.28);
 margin-bottom: 0.85rem;
 line-height: 1.6;
}

.fnl input {
 width: 100%;
 padding: 0.6rem 1rem;
 background: rgba(43, 20, 12, 0.5);
 border: 1px solid rgba(246, 232, 210, 0.07);
 border-radius: 0.5rem;
 color: var(--mc);
 font-size: 0.85rem;
 outline: none;
 transition: border-color 0.3s;
}

.fnl input:focus {
 border-color: rgba(232, 117, 24, 0.3);
}

.fnl input::placeholder {
 color: rgba(246, 232, 210, 0.12);
}

.fnl button {
 padding: 0.6rem;
 background: rgba(232, 117, 24, 0.8);
 color: var(--dc);
 font-weight: 600;
 font-size: 0.85rem;
 border: none;
 border-radius: 0.5rem;
 cursor: pointer;
 transition: background 0.3s;
 width: 100%;
 margin-top: 0.5rem;
}

.fnl button:hover {
 background: var(--sf);
}

.fb2 {
 max-width: 1100px;
 margin: 1.5rem auto 0;
 padding-top: 1.25rem;
 border-top: 1px solid rgba(246, 232, 210, 0.04);
 display: flex;
 flex-wrap: wrap;
 justify-content: space-between;
 align-items: center;
 gap: 0.75rem;
}

.fb2 p {
 font-size: 0.65rem;
 color: rgba(246, 232, 210, 0.18);
}

.fb2l {
 display: flex;
 gap: 1.25rem;
}

.fb2l button {
 background: none;
 border: none;
 font-size: 0.65rem;
 color: rgba(246, 232, 210, 0.18);
 cursor: pointer;
 transition: color 0.3s;
}

.fb2l button:hover {
 color: rgba(246, 232, 210, 0.35);
}

/* ===== Grain Texture ===== */
.grain {
 position: relative;
}

.grain::after {
 content: "";
 position: absolute;
 inset: 0;
 opacity: 0.02;
 pointer-events: none;
 background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
 background-size: 128px;
 z-index: 1;
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
 .hc { padding-top: 5rem; }
 .sec { padding: 3.5rem 1.25rem; }
 .sg { gap: 2rem; }
}
