:root{
  --bg:#ffffff;
  --ink:#0b0b0c;
  --muted:#55565c;
  --soft:#f7f7f9;
  --line:rgba(0,0,0,.10);

  --black:#050505;

  /* Metallic gold */
  --goldA:#fff2c6;
  --goldB:#e3c36a;
  --goldC:#b8872a;

  --radius: 18px;
  --radius2: 26px;
  --shadow: 0 18px 45px rgba(0,0,0,.08);
  --shadow2: 0 10px 30px rgba(0,0,0,.10);

  --max: 1120px;
}

*{ box-sizing: border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family:"Comfortaa", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
}

img{ max-width:100%; height:auto; display:block; }
a{ color: inherit; text-decoration:none; }
p{ margin:0 0 18px; color: var(--muted); }

.container{
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section{ padding: 96px 0; }
.section.airy{ padding: 110px 0; }
.section.soft{ background: var(--soft); }

.kicker{
  letter-spacing:.18em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(0,0,0,.65);
}

.h1, .h2, .h3{
  font-family:"Petit Formal Script", serif;
  font-weight: 400;
  letter-spacing:.01em;
  margin: 10px 0 14px;
}
.h1{ font-size: clamp(40px, 5vw, 70px); line-height: 1.06; }
.h2{ font-size: clamp(28px, 3.4vw, 46px); line-height: 1.12; }
.h3{ font-size: 22px; line-height: 1.2; }

.lead{
  font-size: 18px;
  color: rgba(0,0,0,.68);
  max-width: 68ch;
}

.subhead{
  font-size: 17px;
  color: rgba(0,0,0,.62);
  max-width: 68ch;
}

.note, .handwritten{
  font-family: "Handlee", cursive;
  font-size: 18px;
  color: rgba(0,0,0,.70);
  margin-top: 18px;
}

.center{ text-align:center; }
.center-row{ display:flex; justify-content:center; margin-top: 26px; }

/* Header */
.site-header{
  position: sticky;
  top:0;
  z-index: 50;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 230px;
}
.brand-logo{ height: 42px; width:auto; }
.brand-title{
  font-family:"Petit Formal Script", serif;
  color:#fff;
  font-size: 18px;
  line-height: 1.1;
}
.brand-tag{
  color: rgba(255,255,255,.72);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 11px;
  margin-top: 3px;
}

.nav{
  display:flex;
  align-items:center;
  gap: 18px;
}
.nav a{
  color: rgba(255,255,255,.86);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 10px;
  border-radius: 999px;
}
.nav a:hover{ background: rgba(255,255,255,.08); color:#fff; }
.nav a.active{ background: rgba(255,255,255,.10); color:#fff; }

.nav-toggle{
  display:none;
  border: 1px solid rgba(255,255,255,.22);
  background: transparent;
  color: white;
  padding: 10px 14px;
  border-radius: 12px;
  cursor:pointer;
  letter-spacing:.12em;
  text-transform: uppercase;
}

/* Mobile drawer */
.nav-drawer{
  display:none;
  background: #0b0b0c;
  border-top: 1px solid rgba(255,255,255,.10);
}
.nav-drawer-inner{
  padding: 18px 0 26px;
  display:grid;
  gap: 12px;
}
.drawer-link{
  color: rgba(255,255,255,.86);
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
}
.drawer-link.active{
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  font-family:"Comfortaa", sans-serif;
  font-weight: 700;
  letter-spacing:.08em;
  text-transform: uppercase;
  font-size: 12px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-small{ padding: 10px 14px; font-size: 11px; }
.btn-block{ width: 100%; }

.btn-gold{
  color: #121212;
  background: linear-gradient(135deg, var(--goldA), var(--goldB), var(--goldC));
  box-shadow: 0 12px 30px rgba(184,135,42,.18);
}
.btn-gold:hover{ box-shadow: 0 16px 40px rgba(184,135,42,.26); }

.btn-glow{
  position: relative;
}
.btn-glow::after{
  content:"";
  position:absolute;
  inset: -6px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,242,198,.55), rgba(184,135,42,.0) 60%);
  filter: blur(10px);
  opacity: .9;
  z-index: -1;
}

.btn-outline{
  background: transparent;
  border-color: rgba(0,0,0,.18);
  color: rgba(0,0,0,.82);
}
.btn-outline:hover{
  border-color: rgba(0,0,0,.32);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
}

.text-link{
  color: rgba(0,0,0,.78);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Hero */
.hero{
  position: relative;
  min-height: 78vh;
  display:grid;
align-items: start;
padding-bottom: 90px 72px 0;
}
.hero-media{
  position:absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.00) 0%,
      rgba(255,255,255,0.18) 45%,
      rgba(255,255,255,0.55) 100%
    ),
    url("../img/hero-dms-studio.jpg") center/cover no-repeat;
}

.hero-content{ position: relative; z-index: 2; }

.hero-card{
  width: min(980px, 92%);
  margin: 60vh auto 0;   /* THIS is the magic */
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 48px 56px;
  backdrop-filter: blur(6px);
}

@media (max-width: 768px){
  .hero-card{
    margin-top: 40vh;
    width: 94%;
    padding: 36px 28px;
  }
}


.hero-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  justify-content: center;
}

/* Page hero */
.page-hero{
  padding: 92px 0 70px;
}

/* Layout helpers */
.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items:start;
}

.section-head{ margin-bottom: 42px; }

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

.card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius2);
  padding: 28px 26px;
  box-shadow: 0 12px 34px rgba(0,0,0,.06);
}
.card p{ margin-bottom: 16px; }

.stat-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.stat{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius2);
  padding: 22px 20px;
  background: #fff;
}
.stat-num{
  font-family:"Petit Formal Script", serif;
  font-size: 22px;
  margin-bottom: 6px;
}
.stat-label{
  color: rgba(0,0,0,.62);
  font-size: 14px;
}

/* Carousel */
.carousel{
  position: relative;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: var(--radius2);
  padding: 24px 56px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 36px rgba(0,0,0,.06);
}
.carousel-track{
  display:flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 6px 0;
}
.carousel-track::-webkit-scrollbar{ display:none; }

.carousel-track{
  max-width: 100%;
}

.carousel-track::-webkit-scrollbar{
  display: none;
}

.logo-card{
  flex: 0 0 auto; /* prevents flex from shrinking items + ensures overflow */
}

.chip{
  flex: 0 0 auto;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: linear-gradient(180deg, #ffffff, #fafafa);
  color: rgba(0,0,0,.78);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
}

.carousel-btn{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  cursor:pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  font-size: 20px;
  line-height: 1;
}
.carousel-btn:hover{ box-shadow: 0 14px 30px rgba(0,0,0,.14); }
.carousel-btn[data-prev]{ left: 12px; }
.carousel-btn[data-next]{ right: 12px; }

/* Services blocks */
.service-block{ margin-top: 10px; }
.service-title{ margin-bottom: 34px; }

.service-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card{
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius2);
  padding: 28px 26px;
  box-shadow: 0 12px 34px rgba(0,0,0,.06);
}

.list{
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(0,0,0,.64);
}
.list li{ margin-bottom: 10px; }
.steps strong{ color: rgba(0,0,0,.82); }

/* CTA */
.cta{
  background:
    radial-gradient(circle at 20% 10%, rgba(255,242,198,.55), rgba(255,255,255,0) 50%),
    radial-gradient(circle at 90% 40%, rgba(227,195,106,.35), rgba(255,255,255,0) 55%),
    #fff;
}
.cta-inner{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: var(--radius2);
  padding: 44px 40px;
  box-shadow: var(--shadow);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 26px;
}
.cta-actions{ display:flex; flex-wrap:wrap; gap: 12px; }

/* Form */
.form{
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius2);
  padding: 34px 28px;
  box-shadow: 0 16px 44px rgba(0,0,0,.08);
}
.form-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.field{ display:grid; gap: 8px; }
.field span{
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(0,0,0,.62);
}
.field input, .field select, .field textarea{
  font-family:"Comfortaa", sans-serif;
  font-size: 15px;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: rgba(184,135,42,.65);
  box-shadow: 0 0 0 4px rgba(227,195,106,.22);
}
.field-wide{ grid-column: 1 / -1; }

.form-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

/* Footer */
.site-footer{
  background: var(--black);
  color: rgba(255,255,255,.88);
  padding: 56px 0 22px;
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 22px;
}
.footer-brand{
  display:flex;
  gap: 16px;
  align-items:flex-start;
  max-width: 720px;
}
.footer-logo{ height: 56px; width:auto; }
.footer-title{
  font-family:"Petit Formal Script", serif;
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
}
.footer-text{
  color: rgba(255,255,255,.72);
  margin-bottom: 6px;
  font-size: 14px;
}

.footer-links{
  display:flex;
  flex-direction: column;
  gap: 10px;
  align-items:flex-end;
}
.footer-links a{
  color: rgba(255,255,255,.82);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}
.footer-links a:hover{ color:#fff; }

.footer-bottom{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.62);
  font-size: 12px;
  letter-spacing: .06em;
}

/* Responsive */
@media (max-width: 980px){
  .split{ grid-template-columns: 1fr; }
  .card-grid{ grid-template-columns: 1fr; }
  .service-grid{ grid-template-columns: 1fr; }
  .cta-inner{ flex-direction: column; align-items:flex-start; }
  .footer-inner{ flex-direction: column; align-items:flex-start; }
  .footer-links{ align-items:flex-start; }
}

@media (max-width: 780px){
  .nav{ display:none; }
  .nav-toggle{ display:inline-flex; }
  .form-grid{ grid-template-columns: 1fr; }
  .hero{ padding: 72px 0 60px; }
  .hero-card{ padding: 28px 22px; }
}

/* Logo/image carousel cards */
.carousel-track.logos{
  padding: 10px 0;
}

.logo-card{
  flex: 0 0 auto;
  width: 220px;
  height: 220px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.10);
  background: linear-gradient(180deg, #ffffff, #fafafa);
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
  display: grid;
  place-items: center;
  padding: 18px;
}

.logo-card img{
  width: 100%;
  height: 100%;
  object-fit: contain; /* keeps logos from cropping */
  filter: saturate(1.02);
  opacity: .95;
}

/* Optional: if you use "project images" instead of logos, switch contain -> cover by adding class */
.logo-card.cover img{
  object-fit: cover;
  border-radius: 12px;
}

/* Mobile sizing */
@media (max-width: 780px){
  .logo-card{
    width: 180px;
    height: 110px;
  }
}


section {
  padding: 140px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

p {
  max-width: 680px;
  line-height: 1.8;
}

header nav a,
footer {
  color: var(--gold);
}

.logo {
  height: 70px;
}

.services-grid {
  gap: 64px;
}

/* ===============================
   SERVICES PAGE — LUXURY POLISH
   =============================== */

/* More vertical air between sections */
.section.airy{
  padding-top: 160px;
  padding-bottom: 160px;
}

.section.airy.soft{
  padding-top: 180px;
  padding-bottom: 180px;
}

/* Center + calm service headers */
.service-title{
  max-width: 720px;
  margin-bottom: 72px;
}

.service-title .h2{
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.service-title .subhead{
  line-height: 1.8;
  opacity: 0.9;
}

/* Service grid spacing = breathing room */
.service-grid{
  gap: 56px;
}

/* Individual service cards feel lighter + taller */
.service-card{
  padding: 44px 42px;
  border-radius: 18px;
}

/* Lists feel less cramped */
.service-card .list{
  margin-top: 20px;
  line-height: 1.9;
}

.service-card .list li{
  margin-bottom: 10px;
}

/* Buttons breathe more */
.service-card .btn{
  margin-top: 24px;
}

/* Handwritten notes feel intentional, not jammed */
.note.handwritten{
  margin-top: 56px;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* CTA section feels grand, not rushed */
.section.cta{
  padding-top: 200px;
  padding-bottom: 200px;
}

/* Step list spacing */
.steps li{
  margin-bottom: 16px;
}

/* Mobile refinement */
@media (max-width: 768px){
  .section.airy,
  .section.airy.soft{
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .service-grid{
    gap: 36px;
  }

  .service-card{
    padding: 34px 28px;
  }
}

/* ===============================
   SERVICES — HEADING UPSCALE
   =============================== */

/* Bigger, more editorial service section headings */
.service-title .h2{
  font-size: clamp(2.4rem, 3.2vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: 0.015em;
  margin-bottom: 22px;
}

/* Subhead feels calmer + refined */
.service-title .subhead{
  font-size: 1.05rem;
  max-width: 680px;
  line-height: 1.85;
  opacity: 0.9;
}

/* ===============================
   SERVICES — GOLD DIVIDER LINES
   =============================== */

/* Add thin luxury divider BETWEEN service sections */
.section.airy:not(.cta)::after{
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin: 140px auto 0;
  background: linear-gradient(
    to right,
    rgba(212,175,55,0),
    rgba(212,175,55,0.7),
    rgba(212,175,55,0)
  );
}

/* Softer divider on light sections */
.section.airy.soft::after{
  opacity: 0.6;
}

/* No divider after the last section */
.section.airy:last-of-type::after{
  display: none;
}

/* === SERVICES: THIN GOLD DIVIDERS BETWEEN SECTIONS (VISIBLE) === */
.section.airy:not(.cta)::after{
  content:"";
  display:block;
  width: 92px;
  height: 1px;
  margin: 120px auto 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0),
    rgba(184,135,42,.55),
    rgba(0,0,0,0)
  );
}

/* Slightly softer on soft sections */
.section.airy.soft::after{ opacity: .75; }


/* ===============================
   MOBILE REFINEMENT
   =============================== */

@media (max-width: 768px){
  .service-title .h2{
    font-size: 2.1rem;
  }

  .section.airy:not(.cta)::after{
    margin-top: 100px;
    width: 56px;
  }
}


/* ===============================
   HEADER — BIGGER + MORE LUXE
   =============================== */

.site-header{
  padding: 26px 0;               /* taller header */
}

.header-inner{
  align-items: center;
}

.brand-logo{
  height: 84px;                  /* bigger logo */
}

.brand-title{
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.brand-tag{
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* Nav spacing feels calmer */
.nav{
  gap: 28px;
}

.nav a{
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

/* Gold button more balanced */
.nav .btn{
  padding: 10px 18px;
}


/* ===============================
   FOOTER — CLEANER LAYOUT
   =============================== */

.site-footer{
  padding: 100px 0 60px;
}

.footer-inner{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.footer-brand{
  max-width: 420px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.footer-logo{
  height: 100px;
}

.footer-title{
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.footer-text{
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.8;
}

.footer-links{
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.95rem;
}

.footer-bottom{
  text-align: center;
  margin-top: 80px;
  font-size: 0.85rem;
  opacity: 0.7;
}


@media (max-width: 768px){

  .footer-inner{
    flex-direction: column;
    gap: 50px;
  }

  .footer-brand{
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo{
    height: 84px;
  }

}
.site-footer{
  border-top: 1px solid rgba(184,135,42,.3);
}

/* HEADER CLEAN */
.site-header {
  background: #000;
  padding: 18px 0;
  position: relative;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* GOLD OUTLINE BUTTON */
.nav-toggle {
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
  padding: 8px 14px;
  font-size: 18px;
  cursor: pointer;
  transition: all .3s ease;
}

.nav-toggle:hover {
  background: #d4af37;
  color: #000;
}

/* SIDE DRAWER */
.nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #000;
  padding: 80px 30px;
  transition: right .4s ease;
  z-index: 999;
}

.nav-drawer.open {
  right: 0;
}

.nav-drawer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav-drawer a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: color .3s ease;
}

.nav-drawer a:hover {
  color: #d4af37;
}

/* FORCE MENU BUTTON TO SHOW (override old rules) */
.nav-toggle{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
  padding: 8px 14px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  border-radius: 999px;
}
.nav-toggle:hover{
  background: #d4af37;
  color: #000;
}

.nav-drawer-inner{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* GOLD X */
.nav-close{
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
  font-size: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .3s ease;
}

.nav-close:hover{
  background: #d4af37;
  color: #000;
}
