/* =========================================================
   SHATVIX — PREMIUM WEBSITE CSS
   Design Direction: Modern, friendly B2B aesthetic
   (warm peach/cream + vivid orange, clean grotesk type,
    soft rounded shapes) — inspired by markups.ai
   ========================================================= */


/* =========================================================
   ROOT VARIABLES / DESIGN TOKENS
   ========================================================= */

:root {

  /* ---- Surfaces ---- */
  --peach:        #FBF1E8;   /* page background */
  --peach-2:      #F6E4D5;   /* deeper peach, alt blocks */
  --peach-3:      #FCEEE3;   /* soft tint */
  --card:         #FFFFFF;
  --white:        #FFFFFF;
  --dark:         #1C140F;   /* footer / CTA dark warm */

  /* ---- Ink / Text ---- */
  --ink:          #1F1812;   /* primary text - warm near-black */
  --ink-2:        #6A5D53;   /* secondary warm grey */
  --ink-3:        #9A8C80;   /* muted */

  /* ---- Accent (warm orange) ---- */
  --orange:       #F2541B;   /* primary accent / fills */
  --orange-deep:  #CE410C;   /* hover / small accent text */
  --orange-soft:  #FCE4D6;   /* tint backgrounds / badges */

  /* ---- Lines ---- */
  --border:       #EFDFD0;
  --border-2:     #E4D2BF;

  /* ---- Effects ---- */
  --shadow-soft:  0 22px 55px rgba(70, 35, 12, 0.08);
  --shadow-card:  0 10px 28px rgba(70, 35, 12, 0.05);
  --shadow-btn:   0 8px 22px rgba(242, 84, 27, 0.28);

  /* ---- Radii ---- */
  --radius:       22px;
  --radius-sm:    14px;
  --pill:         999px;

  --max-width:    1240px;
  --transition:   all 0.3s ease;

  /* ---- Fonts ---- */
  --font-display: 'Schibsted Grotesk', system-ui, sans-serif;
  --font-body:    'Hanken Grotesk', system-ui, sans-serif;

  /* =========================================================
     LEGACY VARIABLE ALIASES
     (existing rules reference these names — remap them to the
      new palette so the whole site shifts cohesively)
     ========================================================= */
  --bg-primary:     var(--peach);
  --bg-secondary:   var(--white);
  --text-primary:   var(--ink);
  --text-secondary: var(--ink-2);
  --accent:         var(--orange-deep);
  --accent-hover:   var(--orange-deep);
  --footer-bg:      var(--dark);
  --footer-text:    #E9D9C9;
  --shadow-light:   var(--shadow-card);

  --ivory:    #FFFBF6;
  --cream:    var(--peach);
  --cream2:   var(--peach-2);
  --espresso: var(--ink);
  --espresso2:var(--dark);
  --gold:     var(--orange-deep);
  --gold-lt:  var(--orange);
  --gold-pale:var(--orange-soft);
  --sienna:   var(--orange);
  --sand:     var(--border);
  --sand2:    var(--border-2);
  --text-body:  var(--ink-2);
  --text-muted: var(--ink-3);
}


/* =========================================================
   RESET
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--peach);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

::selection {
  background: var(--orange);
  color: #fff;
}


/* =========================================================
   GLOBAL LAYOUT
   ========================================================= */

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

section {
  padding: 120px 0;
  position: relative;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

em {
  font-style: normal;
}

.hero-content em,
.hero-title em,
.section-title em,
.page-title em {
  color: var(--orange);
  font-style: normal;
}

.hero-title {
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}

.page-title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.section-title {
  font-size: 2.55rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink-2);
  max-width: 760px;
  line-height: 1.6;
}

.section-body {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 720px;
  margin-bottom: 8px;
}

.section-body em {
  font-style: normal;
  color: var(--ink-2);
}

.body-large {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink-2);
}

ul.body-large li {
  margin-bottom: 8px;
}

.small-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}


/* =========================================================
   FEATURE LABEL (eyebrow)
   ========================================================= */

.feature-label,
.section-label span {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange-deep);
  margin-bottom: 18px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.section-label span {
  margin-bottom: 0;
}

.section-label-line {
  width: 34px;
  height: 2px;
  background: var(--orange);
  border-radius: var(--pill);
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(251, 241, 232, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-container {
  height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-links a {
  position: relative;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: var(--pill);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--orange-deep);
}

.nav-links a:hover::after,
.nav-links a.active-link::after {
  width: 100%;
}

.nav-links a.active-link {
  color: var(--orange-deep);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--ink);
  cursor: pointer;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--pill);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(242, 84, 27, 0.36);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: var(--pill);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

/* =========================================================
   ICON
   ========================================================= */


.pillar-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}

.pillar-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

/* soft atmospheric glows */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -8%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle at center, rgba(242, 84, 27, 0.14), rgba(242, 84, 27, 0) 65%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at center, rgba(246, 228, 213, 0.9), rgba(246, 228, 213, 0) 70%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

.hero-eyebrow-line {
  width: 48px;
  height: 2px;
  background: var(--orange);
  border-radius: var(--pill);
  margin: 0 0 26px;
}

.hero-description {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink-2);
  max-width: 720px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s ease forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 5%;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s 1.1s ease forwards;
}

.scroll-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  position: relative;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  opacity: 0.4;
}

.scroll-hint-text {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}

.page-hero {
  padding-top: 180px;
  padding-bottom: 90px;
}


/* =========================================
   HERO STATS
========================================= */

.hero-stats {
  position: absolute;
  bottom: 40px;
  right: 5%;
  display: flex;
  gap: 0;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s ease forwards;
}

.stat-item {
  padding: 18px 30px;
  text-align: center;
}

.stat-item:not(:first-child) {
  border-left: 1px solid var(--border-2);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-num span {
  color: var(--orange);
}

.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin-top: 7px;
}


/* =========================================
   HERO DECORATIVE GEOMETRY (soft shapes)
========================================= */

.hero-geo {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero-geo-ring {
  right: -60px;
  top: 12%;
  width: 540px;
  height: 540px;
  border: 1.5px solid rgba(242, 84, 27, 0.12);
  border-radius: 50%;
  animation: slowSpin 90s linear infinite;
}

.hero-geo-ring2 {
  right: 80px;
  top: 20%;
  width: 360px;
  height: 360px;
  border: 1.5px dashed rgba(228, 210, 191, 0.9);
  border-radius: 50%;
  animation: slowSpin 70s linear infinite reverse;
}

.hero-geo-dot {
  right: 24%;
  top: 24%;
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(242, 84, 27, 0.14);
}

.hero-geo-line {
  left: 5%;
  bottom: 32%;
  width: 1px;
  height: 150px;
  background: linear-gradient(to bottom, transparent, var(--border-2), transparent);
}

.hero-geo-cross {
  right: 32%;
  bottom: 26%;
  width: 30px;
  height: 30px;
  opacity: 0.6;
}

.hero-geo-cross::before,
.hero-geo-cross::after {
  content: '';
  position: absolute;
  background: var(--orange);
  border-radius: var(--pill);
}

.hero-geo-cross::before {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.hero-geo-cross::after {
  top: 50%;
  left: 0;
  height: 2px;
  width: 100%;
  transform: translateY(-50%);
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

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


/* =========================================================
   FEATURE SECTIONS
   ========================================================= */

.feature-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-block {
  margin-bottom: 60px;
}


/* =========================================================
   CARDS
   ========================================================= */

.card {
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--orange-soft);
  box-shadow: var(--shadow-soft);
}

.card p {
  color: var(--ink-2);
}

.card .feature-label {
  margin-bottom: 12px;
}

/* feature-section cards sit on white, give a soft peach fill for contrast */
.feature-section .card {
  background: var(--peach-3);
  border-color: var(--border);
}


/* =========================================================
   GOLD/ACCENT RULE
   ========================================================= */

.gold-rule {
  width: 56px;
  height: 3px;
  background: var(--orange);
  border-radius: var(--pill);
  margin: 22px 0 26px;
}


/* =========================================================
   PODCAST / VIDEO BLOCKS
   ========================================================= */

.video-placeholder {
  width: 100%;
  height: 540px;
  background: var(--peach-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  font-size: 1.2rem;
  margin-top: 44px;
  border-radius: var(--radius);
  overflow: hidden;
}

.video-placeholder2 {
  width: 100%;
  height: 220px;
  background: var(--peach-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  font-size: 1.2rem;
  margin-top: 44px;
  border-radius: var(--radius);
  overflow: hidden;
}

.video-placeholder img,
.video-placeholder2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* =========================================================
   VIDEO GRID (iframes)
   ========================================================= */

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.video-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.video-grid iframe:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}


/* =========================================================
   INSIGHTS GRID
   ========================================================= */

.insight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.insight-card img {
  width: 100% !important;
  height: 240px !important;
  object-fit: cover;
  border-radius: 0 !important;
}

.insight-image {
  height: 240px;
  background: var(--peach-2);
}

.insight-content {
  padding: 30px;
}

.insight-meta {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: var(--pill);
  background: var(--orange-soft);
}

.insight-title {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 14px;
}

.insight-card p {
  color: var(--ink-2);
  font-size: 0.98rem;
}


/* =========================================================
   EVENT GALLERY
   ========================================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  height: 340px;
  background: var(--peach-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  border-radius: 0 !important;
}


/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonial-card {
  background: var(--white);
  padding: 44px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-soft);
}

.testimonial-text {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 26px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--ink);
}

.testimonial-role {
  color: var(--ink-3);
  font-size: 0.9rem;
}


/* =========================================================
   TEAM
   ========================================================= */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.team-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.team-info {
  padding: 32px 34px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.15;
}

.team-role {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 700;
  margin-bottom: 18px;
}

.team-divider {
  width: 34px;
  height: 2px;
  background: var(--orange);
  border-radius: var(--pill);
  margin-bottom: 18px;
}

.team-bio {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 480px;
}


/* =========================================================
   PARTNER LOGOS
   ========================================================= */

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.logo-placeholder {
  height: 100px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.logo-placeholder:hover {
  border-color: var(--orange-soft);
  color: var(--orange-deep);
  transform: translateY(-3px);
}


/* =========================================================
   CONTACT (intro form-wrapper variant — legacy)
   ========================================================= */

.contact-wrapper {
  background: var(--white);
  padding: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}


/* =========================================================
   CONTACT SECTION (#contact)
   ========================================================= */

#contact {
  padding: 120px 0;
  background: var(--peach-2);
  position: relative;
  overflow: hidden;
}

.contact-inner {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: start;
}

.contact-tagline {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 22px 0 22px;
  line-height: 1.15;
}

.contact-tagline span {
  color: var(--orange);
}

.contact-desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 34px;
  max-width: 460px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
}

.contact-detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 700;
  margin-top: 3px;
  width: 92px;
  flex-shrink: 0;
}


/* =========================================================
   FORMS
   ========================================================= */

.contact-form {
  background: var(--white);
  padding: 44px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 26px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group.focused .form-label,
.form-group.focused label {
  color: var(--orange-deep);
}

.form-label,
.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea,
.form-control {
  width: 100%;
  background: var(--peach-3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder,
.form-control::placeholder {
  color: var(--ink-3);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.form-control:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(242, 84, 27, 0.1);
}

.form-textarea,
textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23CE410C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--pill);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  padding: 16px;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-btn);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(242, 84, 27, 0.36);
}

.form-submit:hover::before {
  transform: scaleX(1);
}

.form-submit span {
  position: relative;
  z-index: 1;
}


/* =========================================================
   NEWSLETTER
   ========================================================= */

.newsletter-box {
  background: var(--white);
  padding: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.newsletter-input {
  width: 360px;
  padding: 15px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--pill);
  background: var(--peach-3);
  font-family: var(--font-body);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--orange);
}


/* =========================================================
   CTA SECTION
   ========================================================= */

.cta-section {
  background: var(--dark);
  color: #fff;
  text-align: center;
  border-radius: 0;
}

.cta-section .section-title {
  color: #fff;
}

.cta-section .feature-label {
  color: var(--orange);
}

.cta-section .section-subtitle {
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer,
.footer {
  background: var(--dark);
  padding: 52px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #F4E7D8;
  text-transform: uppercase;
}

.footer-logo-tag {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 4px;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B6A89A;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-copy {
  font-size: 0.72rem;
  color: #8C8075;
  letter-spacing: 0.04em;
}

/* legacy multi-column footer (if present) */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  font-size: 0.85rem;
}


/* =========================================================
   SUCCESS MODAL
   ========================================================= */

.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(28, 20, 15, 0.55);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.success-modal-content {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius);
  max-width: 460px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(28, 20, 15, 0.25);
}

.success-modal-content h3 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.success-modal-content p {
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 28px;
}

.success-modal-content button {
  padding: 13px 30px;
  border: none;
  background: var(--orange);
  color: #fff;
  border-radius: var(--pill);
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: var(--transition);
}

.success-modal-content button:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
}


/* =========================================================
   SCROLL-TO-TOP BUTTON (created via JS)
   ========================================================= */

.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  z-index: 998;
}

.scroll-top-btn.show-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--orange-deep);
  transform: translateY(-3px);
}


/* =========================================================
   ANIMATIONS / REVEALS
   ========================================================= */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* .reveal has no JS hook — keep fully visible by default */
.reveal,
.reveal-delay-2 {
  opacity: 1;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1200px) {
  .hero-title { font-size: 4rem; }
  .page-title { font-size: 3.2rem; }
}

@media (max-width: 992px) {
  section { padding: 100px 0; }

  .hero-title { font-size: 3.4rem; }
  .page-title { font-size: 2.9rem; }
  .section-title { font-size: 2.2rem; }
  .contact-tagline { font-size: 1.9rem; }

  .grid-2,
  .grid-3,
  .grid-4,
  .gallery-grid,
  .footer-grid,
  .team-grid,
  .video-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .logo-grid { grid-template-columns: repeat(2, 1fr); }

  .newsletter-form { flex-direction: column; align-items: center; }
  .newsletter-input { width: 100%; }

  .hero-stats { gap: 0; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }

  .hero {
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 90px;
  }

  .hero-title { font-size: 2.8rem; }
  .page-title { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }

  .hero-description,
  .section-subtitle { font-size: 1rem; }

  /* mobile nav */
  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--peach);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav-links.mobile-active {
    max-height: 360px;
    padding: 12px 5% 20px;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a::after { display: none; }

  .mobile-menu-btn {
    display: block;
    position: relative;
    z-index: 1000;
  }

  .hero-stats {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 48px;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: none;
    opacity: 1;
  }

  .stat-item:first-child { padding-left: 0; }

  .hero-scroll-hint { display: none; }

  .hero-actions { width: 100%; }

  .video-placeholder { height: 300px; }
  .gallery-item { height: 260px; }

  #contact { padding: 80px 0; }

  .contact-wrapper,
  .newsletter-box,
  .testimonial-card,
  .contact-form,
  .card {
    padding: 32px;
  }

  footer, .footer {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .page-title { font-size: 2.1rem; }
  .section-title { font-size: 1.8rem; }
  .contact-tagline { font-size: 1.65rem; }
  .container { width: 92%; }
  .form-row { grid-template-columns: 1fr; }
}
