/* ============================================================
   Deo Centric Marketing — HTML prototype stylesheet
   Palette:  ink #0E0E0E · charcoal #1B1B1B · gold #C6952F
             soft gold #D9B25F · cream #F5F0E8 · line #E3D9C6
   Fonts:    Cormorant Garamond (headings) · Montserrat (body)
   ============================================================ */

:root {
  --ink: #0E0E0E;
  --charcoal: #1B1B1B;
  --gold: #C6952F;
  --gold-soft: #D9B25F;
  --cream: #F5F0E8;
  --cream-deep: #EDE4D5;
  --line: #E3D9C6;
  --text: #2A2622;
  --text-dim: #6B6157;
  --white: #FFFFFF;
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--ink);
}

p { margin: 0 0 1rem; }

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }

.sr-only,
.skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 12px; left: 12px; width: auto; height: auto;
  clip: auto; background: var(--ink); color: var(--cream);
  padding: 10px 16px; z-index: 1000; border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-solid { background: var(--gold); color: var(--ink); }
.btn-solid:hover { background: var(--gold-soft); }
.btn-outline { background: transparent; color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14, 14, 14, .96);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid rgba(198, 149, 47, .25);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 74px;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem; font-weight: 600; letter-spacing: .04em;
  color: var(--cream);
}
.brand-sub {
  font-size: .58rem; font-weight: 600; letter-spacing: .42em;
  text-transform: uppercase; color: var(--gold); margin-top: 3px;
}

.site-nav { display: flex; align-items: center; }
.nav-menu {
  display: flex; align-items: center; gap: 34px;
  list-style: none; margin: 0; padding: 0;
}
.nav-menu a {
  font-size: .72rem; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: var(--cream);
}
.nav-menu a:hover { color: var(--gold); text-decoration: none; }
.nav-cta { color: var(--gold) !important; padding: 11px 22px; }
.nav-cta:hover { background: var(--gold); color: var(--ink) !important; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px; background: transparent;
  border: 1px solid rgba(245, 240, 232, .3); border-radius: 3px;
  position: relative;
}
.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: ""; position: absolute; left: 50%; width: 20px; height: 2px;
  background: var(--cream); transform: translateX(-50%);
}
.nav-toggle-bar { top: 50%; margin-top: -1px; }
.nav-toggle-bar::before { top: -6px; }
.nav-toggle-bar::after  { top: 6px; }

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(180deg, rgba(14,14,14,.72), rgba(14,14,14,.92)),
    radial-gradient(120% 90% at 78% 12%, #3a2c17 0%, #1a140c 45%, #0E0E0E 100%);
  color: var(--cream);
  padding: clamp(70px, 12vw, 130px) 0 clamp(60px, 10vw, 110px);
}
.eyebrow {
  font-size: .72rem; font-weight: 600; letter-spacing: .34em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 1.4rem;
}
.eyebrow-center { text-align: center; }
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.7rem, 6.6vw, 4.6rem);
  font-weight: 600; letter-spacing: .01em; margin-bottom: 1.6rem;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-lead {
  max-width: 40ch; font-size: 1.02rem; color: rgba(245, 240, 232, .82);
  margin-bottom: 2.4rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 3rem; }
.hero-tag {
  font-family: "Cormorant Garamond", serif; font-size: 1.15rem;
  color: rgba(245, 240, 232, .7); margin: 0;
}
.hero-tag span { color: var(--gold); }
.hero-tag em { display: block; font-size: .95rem; opacity: .8; }

/* ---------- Generic section ---------- */
.section { padding: clamp(56px, 9vw, 100px) 0; }
.section-title {
  text-align: center; font-size: clamp(2rem, 4.4vw, 3rem);
  margin-bottom: 2.5rem;
}

/* ---------- Intro ---------- */
.intro { background: var(--cream); text-align: center; padding-bottom: clamp(30px, 5vw, 50px); }
.script-lead {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 600;
  color: var(--ink); margin-bottom: .3rem;
}
.intro-sub {
  font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: 1.4rem; color: var(--gold); margin: 0;
}

/* ---------- Services ---------- */
.services { background: var(--cream-deep); }
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.service-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 4px; padding: clamp(30px, 4vw, 48px);
}
.service-card h3 { font-size: 2rem; margin-bottom: .6rem; }
.service-card > p { color: var(--text-dim); }
.tick-list { list-style: none; margin: 1.4rem 0 1.8rem; padding: 0; }
.tick-list li {
  position: relative; padding-left: 26px; margin-bottom: .6rem;
  font-size: .95rem;
}
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 12px; height: 6px; border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold); transform: rotate(-45deg);
}
.link-arrow {
  font-size: .74rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase;
}

/* ---------- Featured work ---------- */
.work { background: var(--cream); }
.work-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.work-item {
  aspect-ratio: 3 / 4; border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--charcoal), var(--ink));
  border-radius: 4px; padding: 22px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--cream);
}
.work-name { font-family: "Cormorant Garamond", serif; font-size: 1.15rem; }
.work-type { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.work-note { text-align: center; margin-top: 2rem; color: var(--text-dim); font-style: italic; }

/* ---------- Why ---------- */
.why { background: var(--cream-deep); }
.why-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
  text-align: center;
}
.why-item h3 { font-size: 1.3rem; margin-bottom: .4rem; }
.why-item p { font-size: .9rem; color: var(--text-dim); }

/* ---------- About ---------- */
.about { background: var(--cream); }
.about-inner {
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(30px, 6vw, 70px);
  align-items: center;
}
.about-logo img {
  margin: 0 auto; border: 1px solid var(--line); border-radius: 4px; background: var(--white);
}
.about-text h2 { font-size: clamp(2rem, 4vw, 2.8rem); }

/* ---------- Quote / CTA ---------- */
.quote {
  background:
    linear-gradient(180deg, rgba(14,14,14,.9), rgba(14,14,14,.96)),
    radial-gradient(120% 120% at 50% 0%, #3a2c17 0%, #0E0E0E 60%);
  color: var(--cream); text-align: center;
}
.quote h2 { color: var(--cream); font-size: clamp(2.2rem, 5vw, 3.4rem); }
.quote-sub { max-width: 52ch; margin: 0 auto 2.4rem; color: rgba(245,240,232,.8); }
.quote-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(245, 240, 232, .72); padding: 64px 0 28px; }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
}
.footer-brand .brand-name { color: var(--cream); font-size: 1.6rem; }
.footer-brand .brand-sub { color: var(--gold); }
.footer-tag {
  font-family: "Cormorant Garamond", serif; font-style: italic;
  margin-top: 12px; color: rgba(245, 240, 232, .6);
}
.footer-col h4 {
  color: var(--gold); font-family: "Montserrat", sans-serif;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .55rem; font-size: .9rem; }
.footer-col a { color: rgba(245, 240, 232, .72); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  margin-top: 48px; padding-top: 22px;
  border-top: 1px solid rgba(245, 240, 232, .12);
  font-size: .78rem;
}
.footer-bottom a { color: rgba(245, 240, 232, .6); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--ink); border-bottom: 1px solid rgba(198,149,47,.25);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-menu.is-open { max-height: 420px; }
  .nav-menu li { border-top: 1px solid rgba(245,240,232,.08); }
  .nav-menu a { display: block; padding: 16px 24px; }
  .nav-cta { text-align: center; border: 0; }

  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-logo img { max-width: 300px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .work-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .btn { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}
