/* Gizem Dogan LLC - modern corporate styles */

:root {
  --bg: #f7f5ef;
  --surface: #ffffff;
  --surface-soft: #eee8dd;
  --ink: #101419;
  --ink-2: #39404a;
  --muted: #727984;
  --line: #ded8cc;
  --dark: #101721;
  --dark-2: #172231;
  --dark-3: #243246;
  --gold: #b8924a;
  --gold-2: #d8b56d;
  --sage: #6f8475;
  --blue: #54718a;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 24px 70px -34px rgba(16, 23, 33, .35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

h1, h2, h3, .display, .brand-name {
  color: var(--ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.05;
}

h2 {
  font-size: clamp(34px, 4vw, 54px);
  margin: 0 0 20px;
}

h3 {
  font-size: 24px;
  margin: 0 0 12px;
}

.display {
  max-width: 11ch;
  margin: 12px 0 24px;
  font-size: clamp(48px, 7.4vw, 92px);
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow.light { color: var(--gold-2); }
.light { color: #fff; }

.lede {
  max-width: 58ch;
  margin: 0 0 30px;
  color: var(--ink-2);
  font-size: clamp(17px, 1.5vw, 20px);
}

.lede.light,
.section-lede.light { color: rgba(255,255,255,.74); }

.section-lede {
  max-width: 58ch;
  margin: 0;
  color: var(--ink-2);
  font-size: 17px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 239, .86);
  border-bottom: 1px solid rgba(16, 20, 25, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(16, 23, 33, .16));
}

.brand-mark.sm {
  width: 38px;
  height: 38px;
  filter: none;
}

.brand-name {
  font-size: 21px;
  white-space: nowrap;
}

.brand-name em {
  margin-left: 6px;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .16em;
  vertical-align: 4px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 700;
}

.nav-list a:hover {
  background: rgba(184, 146, 74, .1);
  color: var(--ink);
}

.nav-list .nav-cta {
  margin-left: 6px;
  padding: 0 18px;
  background: var(--dark);
  color: #fff !important;
}

.nav-list .nav-cta:hover {
  background: var(--gold);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--dark); color: #fff; }
.btn-primary:hover { background: var(--gold); color: #fff; }
.btn-ghost { border-color: rgba(16,20,25,.18); color: var(--ink); }
.btn-ghost:hover { border-color: var(--dark); background: var(--dark); color: #fff; }
.btn-light { background: #fff; color: var(--dark); }
.btn-light:hover { background: var(--gold-2); color: var(--dark); }

/* Hero */
.hero {
  position: relative;
  padding: clamp(60px, 7vw, 92px) 0 clamp(36px, 5vw, 64px);
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(247,245,239,.96) 0%, rgba(247,245,239,.9) 48%, rgba(238,232,221,.78) 100%),
    url("/ornament.svg") right 9% top 12% / 360px auto no-repeat,
    var(--bg);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 20, 25, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 20, 25, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .82fr);
  align-items: center;
  gap: clamp(40px, 6vw, 86px);
}

.hero-copy { position: relative; z-index: 1; }
.hero-copy,
.lede,
.prose,
.contact-card,
.brand-card { min-width: 0; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 38px; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-meta li {
  padding: 16px;
  border: 1px solid rgba(16,20,25,.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,.55);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-meta span {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 42px 22px 30px 46px;
  border: 1px solid rgba(184,146,74,.34);
  border-radius: 34px;
  transform: rotate(-4deg);
}

.visual-card {
  position: absolute;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(23,34,49,.98), rgba(16,23,33,.98));
  box-shadow: var(--shadow);
  color: #fff;
}

.visual-card-main {
  inset: 0 0 auto auto;
  width: min(100%, 440px);
  min-height: 430px;
  padding: 34px;
}

.visual-topline {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #74c69d;
  box-shadow: 0 0 0 7px rgba(116,198,157,.12);
}

.visual-card h2 {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(32px, 3.4vw, 46px);
}

.system-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 32px;
}

.system-map span {
  min-height: 58px;
  padding: 17px 15px;
  border: 1px solid rgba(216,181,109,.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.84);
  font-size: 13px;
  font-weight: 800;
}

.visual-summary {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 10px;
  margin-top: 10px;
}

.visual-summary div {
  min-height: 74px;
  padding: 15px;
  border: 1px solid rgba(216,181,109,.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
}

.visual-summary span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,.56);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.visual-summary strong {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
}

.proof-strip {
  background: var(--dark);
  color: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.12);
}

.proof-grid div {
  padding: 28px 30px;
  background: var(--dark);
}

.proof-grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 800;
}

.proof-grid span {
  color: rgba(255,255,255,.66);
  font-size: 14px;
}

/* Sections */
.section {
  padding: clamp(82px, 9vw, 126px) 0;
  border-top: 1px solid var(--line);
}

.section-dark {
  position: relative;
  overflow: hidden;
  border-top: 0;
  background:
    linear-gradient(135deg, rgba(16,23,33,.98), rgba(23,34,49,.98)),
    var(--dark);
  color: rgba(255,255,255,.82);
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 78%);
}

.section-dark > .container { z-index: 1; }
.section-dark h2,
.section-dark h3 { color: #fff; }

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

.section-heading { margin-bottom: 0; }

.section-title-row {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  margin-bottom: 46px;
}

.prose p {
  margin: 0;
  color: var(--ink-2);
}

.prose p + p { margin-top: 16px; }
.section-dark .prose p { color: rgba(255,255,255,.74); }

.values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 60px;
}

.value {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(16,20,25,.03);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.value:hover {
  transform: translateY(-3px);
  border-color: rgba(184,146,74,.55);
  box-shadow: var(--shadow);
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: rgba(184,146,74,.12);
  color: var(--gold);
}

.value-icon svg {
  width: 22px;
  height: 22px;
}

.value h3 {
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.value p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  background: rgba(255,255,255,.13);
}

.service-card {
  min-height: 330px;
  padding: 30px;
  background: rgba(255,255,255,.045);
  transition: background .2s ease;
}

.service-card:hover { background: rgba(255,255,255,.085); }

.service-num {
  margin-bottom: 52px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
}

.service-card h3 {
  font-size: 27px;
}

.service-card p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.62;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(216,181,109,.22);
  border-radius: var(--radius);
  background: rgba(216,181,109,.22);
}

.process-strip div {
  padding: 18px 20px;
  background: rgba(16,23,33,.7);
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 800;
}

.process-strip span {
  margin-right: 10px;
  color: var(--gold-2);
}

/* Brands */
.brands-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 16px;
}

.brand-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform .2s ease, box-shadow .2s ease;
}

.brand-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.brand-card.featured {
  border-color: rgba(184,146,74,.44);
  background:
    linear-gradient(135deg, #fff 0%, #fff 48%, #f1eadc 100%);
}

.brand-card.placeholder {
  background: transparent;
  border-style: dashed;
}

.brand-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  background: url("/logo-mark.svg") center / 92px auto no-repeat;
  opacity: .08;
  pointer-events: none;
}

.brand-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.brand-card h3 {
  font-size: 36px;
}

.brand-card p {
  margin: 0 0 14px;
  color: var(--ink-2);
}

.brand-meta {
  padding-top: 16px;
  margin-top: 20px !important;
  border-top: 1px solid var(--line);
  color: var(--muted) !important;
  font-size: 13px;
  font-weight: 700;
}

/* Contact */
.contact-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
}

.contact-card::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -50px;
  width: 190px;
  height: 190px;
  background: url("/logo-mark.svg") center / contain no-repeat;
  opacity: .07;
}

.contact-card dl {
  position: relative;
  z-index: 1;
  margin: 0;
}

.contact-card dt {
  margin: 0 0 6px;
  color: rgba(255,255,255,.48);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 0 0 22px;
  color: rgba(255,255,255,.92);
}

.contact-card dd:last-child { margin-bottom: 0; }
.contact-card a { color: var(--gold-2); }
.contact-card a:hover { color: #fff; }

/* Footer */
.site-footer {
  padding: 68px 0 34px;
  background: #0c1118;
  color: rgba(255,255,255,.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.11);
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand {
  margin: 0;
  color: #fff;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
}

.footer-brand em {
  margin-left: 6px;
  color: var(--gold-2);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .16em;
  vertical-align: 4px;
}

.footer-addr {
  margin: 0;
  font-size: 14px;
}

.footer-heading {
  margin: 0 0 14px;
  color: rgba(255,255,255,.42);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer a {
  color: rgba(255,255,255,.84);
  font-size: 14px;
}

.site-footer a:hover { color: var(--gold-2); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 26px;
  color: rgba(255,255,255,.44);
  font-size: 13px;
}

.footer-bottom p { margin: 0; }
.disclaimer { max-width: 62ch; }

/* Legal pages */
.legal {
  padding: clamp(66px, 8vw, 112px) 0;
  background: var(--bg);
}

.legal-inner {
  width: min(100% - 48px, 780px);
  margin: 0 auto;
}

.legal h1 {
  margin: 0 0 8px;
  font-size: clamp(42px, 5vw, 62px);
}

.legal .updated {
  margin: 0 0 40px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.legal h2 {
  padding-top: 30px;
  margin: 38px 0 14px;
  border-top: 1px solid var(--line);
  font-size: 26px;
}

.legal h2:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.legal p,
.legal li { color: var(--ink-2); }
.legal ul { padding-left: 22px; }
.legal a {
  color: var(--gold);
  border-bottom: 1px dotted currentColor;
}

/* Legacy ornament class kept for legal/backward compatibility */
.ornament { display: none; }

@media (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .display { max-width: 13ch; }
  .hero-visual {
    min-height: 450px;
    max-width: 560px;
  }

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

@media (max-width: 880px) {
  .grid-2,
  .section-title-row,
  .brands-grid {
    grid-template-columns: 1fr;
  }

  .values,
  .proof-grid,
  .process-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-num { margin-bottom: 30px; }
}

@media (max-width: 720px) {
  .container,
  .legal-inner {
    width: min(100% - 32px, var(--max));
  }

  .nav { min-height: 68px; }
  .brand-name { font-size: 18px; }
  .brand-mark { width: 38px; height: 38px; }
  .nav-toggle { display: flex; }

  .nav:has(.nav-toggle) .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(247,245,239,.98);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav:has(.nav-toggle) .nav-list.open { display: flex; }
  .nav-list a { justify-content: center; }
  .nav-list .nav-cta { margin-left: 0; }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 42px;
  }

  .display { font-size: clamp(42px, 13.4vw, 58px); }
  .hero-copy { padding-right: 10px; }
  .lede {
    max-width: 34ch;
    font-size: 17px;
  }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-visual {
    min-height: 0;
    max-width: none;
    width: 100%;
    order: 2;
  }
  .hero-visual::before { display: none; }
  .visual-card {
    position: relative;
    inset: auto;
  }
  .visual-card-main {
    width: 100%;
    min-height: 0;
    padding: 26px;
  }
  .visual-card h2 { font-size: 38px; }
  .system-map { grid-template-columns: 1fr; margin-top: 28px; }
  .system-map span { min-height: 48px; }
  .visual-summary { grid-template-columns: 1fr; }

  .proof-strip {
    position: relative;
    z-index: 1;
  }

  .section { padding: 68px 0; }
  h2 {
    font-size: clamp(28px, 8.8vw, 36px);
    overflow-wrap: anywhere;
  }
  .value,
  .brand-card,
  .contact-card { padding: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

@media (max-width: 430px) {
  .brand-name em { display: none; }
  .cta-row .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  html { scroll-behavior: auto; }
}
