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

:root {
  --black: #0c0b09;
  --white: #fafaf8;
  --warm: #f5f2ed;
  --gold: #a8854a;
  --gold-light: #c9a96e;
  --mid: #6b6258;
  --light: #c8c0b6;
  --border: #e4ddd4;
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.1;
}

.eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -0.01em;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
}
.btn-primary:hover { background: var(--gold); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--black); }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  z-index: 200;
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 1px 24px rgba(0,0,0,0.07); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.1;
  color: var(--black);
}

.nav-logo span {
  display: block;
  font-size: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s;
}

.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  font-size: 0.72rem !important;
  letter-spacing: 0.14em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: all 0.3s;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5vw 6rem 5vw;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--mid);
  max-width: 420px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--black);
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 0.3rem;
}

.hero-visual {
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.hero-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 3px;
  opacity: 0.75;
}

.mosaic-cell {
  background: #1a1a1a;
  overflow: hidden;
}

.mosaic-cell:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.mosaic-cell:nth-child(2) { grid-column: 2; grid-row: 1; }
.mosaic-cell:nth-child(3) { grid-column: 3; grid-row: 1 / 3; }
.mosaic-cell:nth-child(4) { grid-column: 2; grid-row: 2; }
.mosaic-cell:nth-child(5) { grid-column: 1; grid-row: 3; }
.mosaic-cell:nth-child(6) { grid-column: 2 / 4; grid-row: 3; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168,133,74,0.15) 0%, transparent 60%);
  z-index: 1;
}

/* SECTION BASE */
section { position: relative; }

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

.section-pad { padding: 7rem 0; }
.section-pad-sm { padding: 5rem 0; }

/* DIVIDER */
.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* TICKER / MARQUEE */
.marquee-wrap {
  background: var(--black);
  color: var(--white);
  padding: 1.1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0 2.5rem;
  color: rgba(255,255,255,0.7);
}

.marquee-track span.dot {
  color: var(--gold);
  padding: 0;
  letter-spacing: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* HOW WE HELP */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.how-text h2 { margin-bottom: 1.5rem; }

.how-text p {
  color: var(--mid);
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-item {
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(168,133,74,0.1);
}

.service-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 0.9rem;
  color: var(--gold);
}

.service-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.service-item p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.5;
}

/* CITIES */
.cities-section {
  background: var(--warm);
  text-align: center;
}

.cities-list {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  line-height: 2.2;
  max-width: 900px;
  margin: 1.5rem auto 0;
}

.cities-list span { color: var(--gold); margin: 0 0.5rem; }

/* PROMISE */
.promise-section {
  background: var(--black);
  color: var(--white);
}

.promise-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.promise-label {
  color: var(--gold-light);
}

.promise-section h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.promise-section p {
  color: rgba(255,255,255,0.65);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.promise-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  color: var(--white);
  padding: 2.5rem;
  border-left: 2px solid var(--gold);
  position: relative;
}

/* CLIENTS */
.clients-section { background: var(--white); }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--border);
}

.client-cell {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--mid);
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}

.client-cell:hover { background: var(--warm); color: var(--black); }
.client-cell:nth-child(5n) { border-right: none; }

/* CTA BAND */
.cta-band {
  background: var(--gold);
  padding: 5rem 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  font-size: 0.97rem;
}

.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover { background: var(--black); color: var(--white); }

/* FOOTER */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer-contact-line {
  font-size: 0.82rem;
  margin-bottom: 0.3rem;
}

.footer-contact-line a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contact-line a:hover { color: var(--gold-light); }

.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold-light); }

/* PAGE HERO (inner pages) */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: var(--warm);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); }

/* FOR COMPANIES PAGE */
.services-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
  background: var(--border);
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}

.service-card:hover { background: var(--warm); }

.service-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.2rem;
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.65;
}

/* ABOUT PAGE */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.about-portrait {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.portrait-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--warm);
  overflow: hidden;
  position: relative;
}

.portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2520 100%);
}

.portrait-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  font-weight: 300;
  color: rgba(168,133,74,0.4);
  letter-spacing: -0.05em;
}

.portrait-caption {
  margin-top: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}

.about-text h2 { margin-bottom: 1.2rem; }

.about-text p {
  font-size: 0.97rem;
  color: var(--mid);
  margin-bottom: 1.2rem;
  line-height: 1.75;
}

.about-text strong { color: var(--black); font-weight: 500; }

.notable-list {
  margin: 2rem 0;
  padding: 2rem;
  background: var(--warm);
  border-left: 2px solid var(--gold);
}

.notable-list p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--black) !important;
  line-height: 1.7;
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--mid); margin-bottom: 2rem; font-size: 0.97rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-text {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.6;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.2rem;
}

.contact-form {
  background: var(--warm);
  padding: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }

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

.form-consent {
  font-size: 0.78rem;
  color: var(--mid);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* GALLERY PAGE */
.gallery-redirect {
  text-align: center;
  padding: 6rem 0;
}

.gallery-redirect h2 { margin-bottom: 1rem; }
.gallery-redirect p { color: var(--mid); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* MOBILE NAV */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 2rem 5vw;
  z-index: 199;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}

/* PROCESS SECTION */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.process-step { position: relative; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.65;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { height: 360px; }
  .hero-content { padding: 4rem 5vw; }
  .how-grid { grid-template-columns: 1fr; gap: 3rem; }
  .promise-inner { grid-template-columns: 1fr; gap: 2rem; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-full { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 2rem; }
  .service-list { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 600px) {
  nav { padding: 0 1.5rem; }
  .container { padding: 0 1.5rem; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid .client-cell:nth-child(2n) { border-right: none; }
  .clients-grid .client-cell:nth-child(5n) { border-right: 1px solid var(--border); }
  .contact-form { padding: 2rem 1.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; }
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
