/* ============================================================
   ArcticEdge HVAC — Main Stylesheet
   Authorized AC Distributor, Telangana
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=DM+Serif+Display:ital@0;1&display=swap');

/* ── CSS Variables ── */
:root {
  --c9: #0b0b0d;
  --c8: #111114;
  --c7: #18181d;
  --c6: #1f1f26;
  --c5: #2b2b35;
  --c4: #383845;
  --go:  #e8b84b;
  --go2: #c49a2a;
  --go3: #8a6a10;
  --gop: #f5dfa0;
  --si:  #a8acba;
  --sil: #d8dce8;
  --wh:  #f4f4f6;
  --mu:  #6a6a7a;
  --gg:  linear-gradient(135deg, #f5dfa0 0%, #e8b84b 40%, #c49a2a 80%, #f5dfa0 100%);
  --gg2: linear-gradient(90deg, #e8b84b, #c49a2a);
  --sg:  0 0 50px rgba(232,184,75,.2);
  --sc:  0 24px 64px rgba(0,0,0,.55);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--c9);
  color: var(--wh);
  overflow-x: hidden;
  cursor: none;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9990; opacity: .55;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cur {
  width: 10px; height: 10px;
  background: var(--go); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .15s, height .15s;
}
.cur-r {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(232,184,75,.55); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, border-color .2s;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 60px;
  background: rgba(11,11,13,0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all .4s;
}
nav.sc {
  padding: 13px 60px;
  background: rgba(11,11,13,.93);
  backdrop-filter: blur(22px);
  border-bottom-color: rgba(232,184,75,.12);
}
.logo { display: flex; align-items: center; gap: 13px; text-decoration: none; cursor: pointer; }
.logo-hex {
  width: 42px; height: 42px;
  background: var(--gg);
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 900;
  color: var(--c9); flex-shrink: 0;
  box-shadow: 0 0 24px rgba(232,184,75,.35);
}
.logo-name {
  font-family: 'DM Serif Display', serif;
  font-size: 21px; color: var(--wh); letter-spacing: .02em; line-height: 1.1;
}
.logo-name span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px; letter-spacing: .32em; color: var(--go);
  font-weight: 500; text-transform: uppercase; margin-top: 1px;
}
.nl { display: flex; gap: 36px; list-style: none; align-items: center; }
.nl a {
  font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--si); text-decoration: none; position: relative; transition: color .3s;
}
.nl a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gg2);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.nl a:hover, .nl a.act { color: var(--go); }
.nl a:hover::after, .nl a.act::after { transform: scaleX(1); }
.nb {
  background: var(--gg) !important;
  color: var(--c9) !important;
  padding: 9px 22px;
  font-weight: 700 !important;
  clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
  transition: filter .3s, box-shadow .3s !important;
  box-shadow: 0 4px 20px rgba(232,184,75,.3);
}
.nb::after { display: none !important; }
.nb:hover { filter: brightness(1.1); box-shadow: 0 8px 32px rgba(232,184,75,.45) !important; }
.hbg { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hbg span { width: 26px; height: 2px; background: var(--go); border-radius: 2px; transition: all .3s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.bg {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gg); color: var(--c9);
  padding: 15px 34px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  box-shadow: 0 8px 30px rgba(232,184,75,.3);
  transition: filter .3s, box-shadow .3s, transform .3s;
  position: relative; overflow: hidden;
}
.bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: translateX(-100%); transition: transform .5s;
}
.bg:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(232,184,75,.42); filter: brightness(1.07); }
.bg:hover::before { transform: translateX(100%); }

.bo {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--sil);
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; border: 1px solid rgba(168,172,186,.3); cursor: pointer;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  transition: border-color .3s, color .3s, box-shadow .3s;
}
.bo:hover { border-color: var(--go); color: var(--gop); box-shadow: inset 0 0 22px rgba(232,184,75,.06); }

/* ============================================================
   PAGE HERO LABEL
   ============================================================ */
.pgl {
  font-size: 11px; letter-spacing: .44em; text-transform: uppercase;
  color: var(--go); font-weight: 600; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.pgl::before { content: ''; width: 36px; height: 1px; background: var(--go2); }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.sec { padding: 108px 60px; position: relative; z-index: 1; }
.sh { text-align: center; margin-bottom: 66px; }
.stg {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--go); font-weight: 600; margin-bottom: 15px;
}
.stg span { width: 28px; height: 1px; background: var(--go2); display: inline-block; }
.st2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 52px); font-weight: 700; color: var(--wh); line-height: 1.14;
}
.st2 em { font-style: italic; background: var(--gg); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.sd { margin-top: 13px; color: var(--mu); font-size: 15px; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.75; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.ss {
  position: relative; z-index: 3;
  background: rgba(16,16,19,.96);
  border-top: 1px solid rgba(232,184,75,.1); border-bottom: 1px solid rgba(232,184,75,.1);
  backdrop-filter: blur(12px); display: flex; justify-content: center;
}
.si2 { display: flex; width: 100%; max-width: 1200px; }
.st {
  flex: 1; padding: 26px 34px;
  display: flex; align-items: center; gap: 17px;
  border-right: 1px solid rgba(232,184,75,.08);
  position: relative; overflow: hidden; transition: background .3s; cursor: default;
}
.st:last-child { border-right: none; }
.st::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gg2);
  transform: scaleX(0); transition: transform .4s;
}
.st:hover::after { transform: scaleX(1); }
.st:hover { background: rgba(232,184,75,.03); }
.st-i { font-size: 25px; opacity: .9; }
.st-n { font-family: 'DM Serif Display', serif; font-size: 32px; background: var(--gg); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.st-l { font-size: 11px; letter-spacing: .14em; color: var(--mu); text-transform: uppercase; margin-top: 3px; }

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.fg2 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1120px; margin: 0 auto; }
.fc {
  background: linear-gradient(145deg, rgba(28,28,36,.95), rgba(18,18,22,.98));
  border: 1px solid rgba(232,184,75,.1);
  padding: 40px 30px; position: relative; overflow: hidden;
  transition: transform .4s, box-shadow .4s, border-color .3s;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.fc::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,184,75,.05) 0%, transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.fc::after {
  content: ''; position: absolute; top: 0; right: 0; width: 14px; height: 14px;
  background: var(--gg); clip-path: polygon(0 0,100% 0,100% 100%);
}
.fc:hover { transform: translateY(-8px); box-shadow: var(--sc), var(--sg); border-color: rgba(232,184,75,.28); }
.fc:hover::before { opacity: 1; }
.fi { width: 50px; height: 50px; background: rgba(232,184,75,.07); border: 1px solid rgba(232,184,75,.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; transition: all .3s; }
.fc:hover .fi { background: rgba(232,184,75,.14); box-shadow: 0 0 22px rgba(232,184,75,.2); }
.fc h3 { font-family: 'DM Serif Display', serif; font-size: 21px; color: var(--wh); margin-bottom: 11px; }
.fc p { font-size: 14px; color: var(--mu); line-height: 1.76; font-weight: 300; }

/* ============================================================
   BRANDS SECTION
   ============================================================ */
.br-sec { padding: 68px 60px; background: rgba(14,14,17,.72); border-top: 1px solid rgba(232,184,75,.07); border-bottom: 1px solid rgba(232,184,75,.07); }
.br-hd { text-align: center; margin-bottom: 42px; }
.br-hd p { font-size: 11px; letter-spacing: .36em; text-transform: uppercase; color: var(--go); font-weight: 600; }
.br-hd h3 { font-family: 'Playfair Display', serif; font-size: 25px; color: var(--wh); margin-top: 7px; }
.br-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 900px; margin: 0 auto; }
.bc { padding: 12px 24px; border: 1px solid rgba(232,184,75,.16); background: rgba(232,184,75,.04); font-size: 14px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sil); transition: border-color .3s, background .3s, color .3s; font-family: 'DM Serif Display', serif; cursor: default; }
.bc:hover { border-color: var(--go); background: rgba(232,184,75,.1); color: var(--go); }

/* ============================================================
   COVERAGE SECTION
   ============================================================ */
.cov { padding: 80px 60px; background: linear-gradient(135deg, rgba(20,18,12,.98), rgba(14,14,17,.98)); border-top: 1px solid rgba(232,184,75,.1); }
.cov-in { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; max-width: 1100px; margin: 0 auto; }
.cov-txt .st2 { text-align: left; }
.cov-txt .stg { justify-content: flex-start; }
.cov-txt p { color: var(--si); font-size: 15px; line-height: 1.82; margin-top: 16px; font-weight: 300; }
.dists { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.dc { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 7px 14px; border: 1px solid rgba(232,184,75,.18); background: rgba(232,184,75,.05); color: var(--gop); transition: background .3s, border-color .3s; cursor: default; }
.dc:hover { background: rgba(232,184,75,.12); border-color: var(--go); }
.cov-img { position: relative; }
.cov-img img { width: 100%; height: 340px; object-fit: cover; object-position: center; filter: saturate(.58) contrast(1.1); opacity: .68; border: 1px solid rgba(232,184,75,.14); }
.cov-img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(232,184,75,.08), transparent); z-index: 1; pointer-events: none; }
.cov-lbl { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 15px 18px; background: linear-gradient(0deg, rgba(11,11,13,.96) 0%, transparent); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--go); font-weight: 600; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta { margin: 0 60px 80px; background: linear-gradient(135deg, rgba(28,24,14,.97), rgba(18,18,22,.98)); border: 1px solid rgba(232,184,75,.22); padding: 68px 78px; display: flex; align-items: center; justify-content: space-between; gap: 38px; overflow: hidden; position: relative; clip-path: polygon(0 0,calc(100% - 22px) 0,100% 22px,100% 100%,22px 100%,0 calc(100% - 22px)); }
.cta::before { content: ''; position: absolute; top: -100px; right: -100px; width: 350px; height: 350px; background: radial-gradient(circle, rgba(232,184,75,.1) 0%, transparent 65%); pointer-events: none; }
.cta h2 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--wh); line-height: 1.2; }
.cta h2 em { font-style: italic; background: var(--gg); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.cta p { margin-top: 10px; color: var(--si); font-size: 15px; font-weight: 300; }
.cta-r { display: flex; flex-direction: column; gap: 11px; align-items: flex-end; min-width: 220px; }
.cp-l { font-size: 10px; letter-spacing: .3em; color: var(--mu); text-transform: uppercase; }
.cp { font-family: 'Playfair Display', serif; font-size: 27px; font-weight: 700; background: var(--gg); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: .04em; }

/* ============================================================
   DISTRIBUTOR BADGE
   ============================================================ */
.db { display: inline-flex; align-items: center; gap: 13px; background: linear-gradient(135deg, rgba(28,24,14,.92), rgba(20,18,12,.96)); border: 1px solid rgba(232,184,75,.3); padding: 13px 20px; margin-bottom: 30px; font-size: 13px; font-weight: 500; color: var(--gop); position: relative; overflow: hidden; }
.db::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--gg); }
.db .di { font-size: 19px; }
.db strong { color: var(--go); font-weight: 700; font-size: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--c9); border-top: 1px solid rgba(232,184,75,.1); padding: 65px 60px 36px; position: relative; z-index: 1; }
.ftg { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 46px; margin-bottom: 46px; }
.fb p { margin-top: 13px; font-size: 13px; color: var(--mu); line-height: 1.76; max-width: 270px; font-weight: 300; }
.fcl h5 { font-size: 10px; letter-spacing: .32em; color: var(--go); text-transform: uppercase; margin-bottom: 15px; font-weight: 700; }
.fcl ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.fcl ul li { font-size: 13px; color: var(--mu); transition: color .2s; letter-spacing: .04em; font-weight: 300; }
.fcl ul li a { color: var(--mu); text-decoration: none; transition: color .2s; }
.fcl ul li a:hover, .fcl ul li:hover { color: var(--gop); }
.fbot { border-top: 1px solid rgba(232,184,75,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.fbot p { font-size: 12px; color: var(--mu); letter-spacing: .07em; }
.ft3 { font-size: 10px; letter-spacing: .25em; color: rgba(232,184,75,.38); text-transform: uppercase; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.rv.vs { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ============================================================
   PAGE-SPECIFIC — HOME
   ============================================================ */
.hero { min-height: 100vh; position: relative; overflow: hidden; display: flex; align-items: center; background: var(--c9); }
.h-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 65% 70% at 68% 50%,rgba(232,184,75,.07) 0%,transparent 65%), radial-gradient(ellipse 40% 60% at 5% 70%,rgba(232,184,75,.04) 0%,transparent 50%); }
.h-grid { position: absolute; bottom: -10px; left: 0; right: 0; height: 60%; background-image: linear-gradient(rgba(232,184,75,.052) 1px,transparent 1px), linear-gradient(90deg,rgba(232,184,75,.052) 1px,transparent 1px); background-size: 68px 68px; transform: perspective(700px) rotateX(58deg); transform-origin: bottom center; mask-image: linear-gradient(to top,rgba(0,0,0,.6) 0%,transparent 75%); pointer-events: none; }
.h-img { position: absolute; right: 0; top: 0; bottom: 0; width: 52%; overflow: hidden; }
.h-img::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg,var(--c9) 0%,rgba(11,11,13,.25) 38%,transparent 62%), linear-gradient(180deg,rgba(11,11,13,.4) 0%,transparent 30%,rgba(11,11,13,.65) 100%); }
.h-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .62; filter: saturate(.65) contrast(1.12); }
.hc { position: relative; z-index: 2; padding: 140px 60px 80px; max-width: 660px; }
.ey { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.ey-l { width: 42px; height: 1px; background: var(--gg2); }
.ey-t { font-size: 11px; letter-spacing: .42em; text-transform: uppercase; color: var(--go); font-weight: 600; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(52px, 6.5vw, 86px); font-weight: 900; line-height: 1.04; color: var(--wh); }
.hero h1 .it { font-style: italic; background: var(--gg); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero h1 .gh { -webkit-text-stroke: 1px rgba(232,184,75,.35); -webkit-text-fill-color: transparent; }
.h-tag { margin: 22px 0 14px; font-family: 'DM Serif Display', serif; font-style: italic; font-size: 18px; color: var(--si); line-height: 1.5; }
.h-desc { font-size: 15px; color: var(--si); line-height: 1.82; max-width: 510px; font-weight: 300; margin-bottom: 34px; }
.h-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; }
.pill { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; padding: 7px 15px; border: 1px solid rgba(232,184,75,.22); background: rgba(232,184,75,.06); color: var(--gop); }
.h-btns { display: flex; gap: 15px; flex-wrap: wrap; }

/* ============================================================
   PAGE-SPECIFIC — SERVICES
   ============================================================ */
.sv-hero { padding: 158px 60px 78px; position: relative; overflow: hidden; background: linear-gradient(160deg, var(--c9) 0%, var(--c8) 100%); }
.sv-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 82% 50%,rgba(232,184,75,.07) 0%,transparent 60%); }
.sv-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(40px,5vw,68px); font-weight: 900; color: var(--wh); line-height: 1.1; max-width: 680px; }
.sv-hero h1 em { font-style: italic; background: var(--gg); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.sv-hero p { margin-top: 20px; color: var(--si); font-size: 16px; max-width: 560px; line-height: 1.82; font-weight: 300; }

.sv-grid { padding: 0 60px 80px; display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.sc2 { background: linear-gradient(145deg,rgba(24,24,30,.95),rgba(17,17,22,.98)); border: 1px solid rgba(232,184,75,.1); overflow: hidden; transition: transform .4s, box-shadow .4s; position: relative; }
.sc2:hover { transform: translateY(-6px); box-shadow: 0 32px 72px rgba(0,0,0,.5), var(--sg); }
.si3 { height: 200px; overflow: hidden; position: relative; }
.si3 img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; filter: saturate(.68); }
.sc2:hover .si3 img { transform: scale(1.06); }
.si3::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 40%,rgba(17,17,22,.96) 100%); }
.si3-l { position: absolute; bottom: 13px; left: 18px; z-index: 1; }
.sbg { font-size: 9px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; background: var(--gg); color: var(--c9); padding: 4px 11px; }
.sb { padding: 30px 34px 36px; }
.sc2-ico { width: 56px; height: 56px; background: rgba(232,184,75,.08); border: 1px solid rgba(232,184,75,.22); display: flex; align-items: center; justify-content: center; font-size: 25px; margin-bottom: 16px; clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%); transition: all .3s; }
.sc2:hover .sc2-ico { background: rgba(232,184,75,.15); box-shadow: 0 0 22px rgba(232,184,75,.2); }
.sb h3 { font-family: 'Playfair Display', serif; font-size: 25px; font-weight: 700; color: var(--wh); margin-bottom: 10px; }
.sb p { font-size: 14px; color: var(--si); line-height: 1.82; font-weight: 300; margin-bottom: 20px; }
.sfl { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.sfl li { display: flex; align-items: center; gap: 11px; font-size: 13px; color: var(--sil); letter-spacing: .04em; }
.sfl li::before { content: '◆'; font-size: 7px; color: var(--go); flex-shrink: 0; }
.sp { display: flex; align-items: baseline; gap: 6px; border-top: 1px solid rgba(232,184,75,.1); padding-top: 17px; }
.pf { font-size: 11px; letter-spacing: .18em; color: var(--mu); text-transform: uppercase; }
.pa { font-family: 'Playfair Display', serif; font-size: 29px; font-weight: 700; background: var(--gg); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.pu { font-size: 12px; color: var(--mu); letter-spacing: .08em; }
.sc2.wide { grid-column: 1/-1; }
.sc2.wide .sb-in { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }

.pr-sec { padding: 80px 60px; background: rgba(13,13,16,.62); }
.pr-steps { display: flex; gap: 0; max-width: 1100px; margin: 58px auto 0; position: relative; }
.pr-steps::before { content: ''; position: absolute; top: 27px; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg,transparent,rgba(232,184,75,.25),transparent); }
.pr-step { flex: 1; text-align: center; padding: 0 18px; }
.pr-n { width: 54px; height: 54px; margin: 0 auto 17px; background: var(--c7); border: 1px solid rgba(232,184,75,.3); clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--go); position: relative; z-index: 1; }
.pr-step h4 { font-size: 14px; font-weight: 600; letter-spacing: .08em; color: var(--wh); margin-bottom: 7px; }
.pr-step p { font-size: 13px; color: var(--mu); line-height: 1.62; font-weight: 300; }

/* ============================================================
   PAGE-SPECIFIC — ABOUT
   ============================================================ */
.ab-hero { padding: 158px 60px 78px; display: grid; grid-template-columns: 1fr 1fr; gap: 78px; align-items: center; max-width: 1300px; margin: 0 auto; position: relative; }
.ab-c h1 { font-family: 'Playfair Display', serif; font-size: clamp(38px,4vw,57px); font-weight: 900; color: var(--wh); line-height: 1.14; margin-bottom: 20px; }
.ab-c h1 em { font-style: italic; background: var(--gg); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.ab-c p { color: var(--si); font-size: 15px; line-height: 1.87; margin-bottom: 15px; font-weight: 300; }
.ab-bgs { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.ab-bg { display: flex; align-items: center; gap: 8px; border: 1px solid rgba(232,184,75,.2); padding: 7px 15px; font-size: 12px; letter-spacing: .14em; color: var(--gop); text-transform: uppercase; background: rgba(232,184,75,.04); font-weight: 600; }
.ab-sb { display: grid; grid-template-columns: 1fr 1fr; }
.ab { padding: 34px; border-right: 1px solid rgba(232,184,75,.1); border-bottom: 1px solid rgba(232,184,75,.1); transition: background .3s; cursor: default; position: relative; }
.ab:nth-child(2n) { border-right: none; }
.ab:nth-child(n+3) { border-bottom: none; }
.ab:hover { background: rgba(232,184,75,.04); }
.ab::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gg2); transform: scaleX(0); transition: transform .4s; transform-origin: left; }
.ab:hover::after { transform: scaleX(1); }
.ab-n { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 900; background: var(--gg); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.ab-l { font-size: 11px; letter-spacing: .2em; color: var(--mu); text-transform: uppercase; margin-top: 5px; }

.vg { display: grid; grid-template-columns: repeat(4,1fr); gap: 17px; max-width: 1100px; margin: 58px auto 0; }
.vc { padding: 32px 25px; background: linear-gradient(145deg,rgba(24,24,30,.86),rgba(17,17,22,.92)); border: 1px solid rgba(232,184,75,.1); text-align: center; transition: transform .3s, border-color .3s; }
.vc:hover { transform: translateY(-6px); border-color: rgba(232,184,75,.28); }
.vg2 { font-size: 33px; display: block; margin-bottom: 14px; }
.vc h4 { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--wh); margin-bottom: 8px; }
.vc p { font-size: 13px; color: var(--mu); line-height: 1.7; font-weight: 300; }

.tg { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1000px; margin: 58px auto 0; }
.tc { background: linear-gradient(145deg,rgba(24,24,30,.9),rgba(17,17,22,.96)); border: 1px solid rgba(232,184,75,.1); overflow: hidden; transition: transform .3s, border-color .3s; }
.tc:hover { transform: translateY(-6px); border-color: rgba(232,184,75,.28); }
.tav { height: 168px; background: linear-gradient(135deg,var(--c6),var(--c5)); display: flex; align-items: center; justify-content: center; font-size: 54px; position: relative; }
.tav::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gg2); }
.ti { padding: 20px; }
.ti h4 { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--wh); margin-bottom: 3px; }
.ti .ro { font-size: 10px; letter-spacing: .25em; color: var(--go); text-transform: uppercase; margin-bottom: 9px; font-weight: 600; }
.ti p { font-size: 13px; color: var(--mu); line-height: 1.65; font-weight: 300; }

/* ============================================================
   PAGE-SPECIFIC — CONTACT
   ============================================================ */
.cn-hero { padding: 158px 60px 55px; }
.cn-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(40px,5vw,65px); font-weight: 900; color: var(--wh); line-height: 1.1; max-width: 600px; }
.cn-hero h1 em { font-style: italic; background: var(--gg); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.cn-hero p { margin-top: 16px; color: var(--si); font-size: 16px; max-width: 520px; line-height: 1.82; font-weight: 300; }
.cn-lay { display: grid; grid-template-columns: 1fr 1.4fr; gap: 46px; padding: 0 60px 100px; max-width: 1200px; margin: 0 auto; }
.cn-inf { display: flex; flex-direction: column; gap: 16px; }
.ic { background: linear-gradient(145deg,rgba(24,24,30,.9),rgba(17,17,22,.96)); border: 1px solid rgba(232,184,75,.1); padding: 24px; display: flex; gap: 15px; align-items: flex-start; transition: border-color .3s, transform .3s; }
.ic:hover { border-color: rgba(232,184,75,.28); transform: translateX(4px); }
.ic-i { width: 43px; height: 43px; flex-shrink: 0; background: rgba(232,184,75,.07); border: 1px solid rgba(232,184,75,.18); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.ic h4 { font-size: 11px; letter-spacing: .22em; color: var(--go); text-transform: uppercase; margin-bottom: 5px; font-weight: 700; }
.ic p { font-size: 14px; color: var(--sil); line-height: 1.55; font-weight: 400; }
.ic small { font-size: 11px; color: var(--mu); display: block; margin-top: 2px; }
.hc2 { background: linear-gradient(145deg,rgba(24,24,30,.9),rgba(17,17,22,.96)); border: 1px solid rgba(232,184,75,.1); padding: 24px; }
.hc2 h4 { font-size: 11px; letter-spacing: .22em; color: var(--go); text-transform: uppercase; margin-bottom: 13px; font-weight: 700; }
.hr { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid rgba(232,184,75,.06); font-size: 13px; }
.hr:last-child { border-bottom: none; }
.hr .dy { color: var(--mu); }
.hr .tm { color: var(--sil); font-weight: 500; }
.hr .tm.ok { color: var(--go); }
.fw { background: linear-gradient(145deg,rgba(20,20,26,.97),rgba(15,15,19,.99)); border: 1px solid rgba(232,184,75,.12); padding: 46px; clip-path: polygon(0 0,calc(100% - 17px) 0,100% 17px,100% 100%,17px 100%,0 calc(100% - 17px)); }
.ft2 { font-family: 'Playfair Display', serif; font-size: 29px; font-weight: 700; color: var(--wh); margin-bottom: 30px; }
.ft2 em { font-style: italic; background: var(--gg); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.fr { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.fg3 { margin-bottom: 18px; }
.fg3 label { display: block; font-size: 10px; letter-spacing: .3em; color: var(--go); text-transform: uppercase; margin-bottom: 8px; font-weight: 700; }
.fg3 input, .fg3 select, .fg3 textarea { width: 100%; background: rgba(255,255,255,.03); border: 1px solid rgba(232,184,75,.14); padding: 12px 15px; color: var(--wh); font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 300; outline: none; transition: border-color .3s, background .3s, box-shadow .3s; -webkit-appearance: none; }
.fg3 select option { background: var(--c7); color: var(--wh); }
.fg3 input:focus, .fg3 select:focus, .fg3 textarea:focus { border-color: rgba(232,184,75,.48); background: rgba(232,184,75,.03); box-shadow: 0 0 0 3px rgba(232,184,75,.05); }
.fg3 textarea { resize: vertical; min-height: 93px; line-height: 1.65; }
.fs { width: 100%; margin-top: 5px; }
.suc { display: none; margin-top: 13px; text-align: center; padding: 17px; color: var(--go); font-size: 14px; letter-spacing: .1em; border: 1px solid rgba(232,184,75,.2); background: rgba(232,184,75,.05); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .fg2 { grid-template-columns: repeat(2,1fr); }
  .h-img { display: none; }
  .ab-hero { grid-template-columns: 1fr; gap: 46px; }
  .vg { grid-template-columns: repeat(2,1fr); }
  .tg { grid-template-columns: 1fr 1fr; }
  .cn-lay { grid-template-columns: 1fr; }
  .ftg { grid-template-columns: 1fr 1fr; gap: 30px; }
  .sc2.wide .sb-in { grid-template-columns: 1fr; }
  .sv-grid { grid-template-columns: 1fr; }
  .cov-in { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 17px 22px; }
  nav.sc { padding: 11px 22px; }
  .nl { display: none; flex-direction: column; gap: 17px; position: absolute; top: 100%; left: 0; right: 0; background: rgba(11,11,13,.97); padding: 26px 22px; border-bottom: 1px solid rgba(232,184,75,.12); }
  .nl.open { display: flex; }
  .hbg { display: flex; }
  .hc, .sec, .sv-hero, .sv-grid, .ab-hero, .cn-hero, .cn-lay, .pr-sec, .cov, .br-sec, footer { padding-left: 22px; padding-right: 22px; }
  .cta { margin: 0 22px; flex-direction: column; text-align: center; padding: 46px 26px; }
  .cta-r { align-items: center; }
  .si2 { flex-wrap: wrap; }
  .st { flex: 50%; min-width: 50%; }
  .fg2, .vg, .tg { grid-template-columns: 1fr; }
  .fr { grid-template-columns: 1fr; }
  .ftg { grid-template-columns: 1fr; }
  .fbot { flex-direction: column; gap: 8px; text-align: center; }
  .pr-steps { flex-direction: column; gap: 26px; }
  .pr-steps::before { display: none; }
}
