/* ==========================================================================
   Trophiestation | Premium Dark Theme based on Logo
   ========================================================================== */

:root {
  /* Colors - Deep luxurious dark tones */
  --bg-color: #0d0c0b;
  --surface-color: #151412;
  --text-main: #f5f5f5;
  --text-muted: #9e9c99;
  --accent: #ffffff;
  --border-color: #2a2826;
  
  /* Typography */
  --font-sans: 'Manrope', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  
  /* Layout & Animation */
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1300px;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.1;
}

.section-pad {
  padding: 8rem 5%;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Adds a small refined line next to the eyebrow text */
.eyebrow::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--text-muted);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: rgba(13, 12, 11, 0.85);
  backdrop-filter: blur(12px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
}

/* CSS Trick: Inverts your black logo to white for the dark theme */
.brand-logo {
  height: 35px;
  filter: invert(1); 
  transition: var(--transition);
}

.brand-logo:hover {
  opacity: 0.8;
}

.nav {
  display: flex;
  gap: 2.5rem;
}

.nav a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.nav a:hover {
  color: var(--text-muted);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px; /* Offset for fixed header */
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.design-note {
  font-size: 0.85rem;
  padding-left: 1.5rem;
  border-left: 1px solid var(--border-color);
  margin-bottom: 3rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.button {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition);
}

.button-primary {
  background: var(--accent);
  color: var(--bg-color);
  border: 1px solid var(--accent);
}

.button-primary:hover {
  background: transparent;
  color: var(--accent);
}

.button-secondary {
  color: var(--text-main);
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem 0;
}

.button-secondary:hover {
  border-bottom-color: var(--accent);
}

/* Hero Card (Floating Element) */
.hero-card {
  background: var(--surface-color);
  padding: 4rem;
  border: 1px solid var(--border-color);
  position: relative;
}

.hero-logo-wrap {
  margin-bottom: 3rem;
}

.hero-logo {
  height: 60px;
  filter: invert(1); /* Inverts black logo to white */
}

.card-line {
  height: 1px;
  background: var(--border-color);
  margin-bottom: 2.5rem;
  width: 50px;
}

.card-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  color: var(--text-main);
}

.hero-card li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* ==========================================================================
   Shared Section Styles
   ========================================================================== */
.section-heading {
  max-width: 800px;
  margin-bottom: 5rem;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.text-block p {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 1000px;
  font-family: var(--font-serif);
  line-height: 1.4;
}

.text-block p:first-child {
  color: var(--text-main);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2px; /* Creates the thin border effect between cards */
  background: var(--border-color);
  border: 1px solid var(--border-color);
}

.service-card {
  background: var(--bg-color);
  padding: 4rem 3rem;
  transition: var(--transition);
}

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

.service-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
  display: inline-block;
  margin-bottom: 3rem;
}

.service-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process-list {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.process-list div {
  padding-left: 3rem;
  border-left: 1px solid var(--border-color);
  position: relative;
}

/* Small geometric square replacing the standard dot */
.process-list div::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 10px;
  width: 7px;
  height: 7px;
  background: var(--accent);
}

.process-list strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--text-main);
}

.process-list p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact {
  text-align: center;
  background: var(--surface-color);
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact .eyebrow::before {
  display: none; /* remove line for centered text */
}

.contact h2 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 3rem;
  max-width: 800px;
}

.contact-link {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--text-main);
  text-decoration: none;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
  transition: var(--transition);
  font-family: var(--font-sans);
}

.contact-link:hover {
  border-bottom-color: var(--accent);
  color: var(--text-muted);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 3rem 5%;
  border-top: 1px solid var(--border-color);
  background: var(--bg-color);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Responsive Design (Mobile & Tablets)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero {
    padding-top: 150px;
    padding-bottom: 50px;
  }

  .nav {
    display: none; /* For simplicity on mobile, hide nav or implement burger menu later */
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-card {
    padding: 2.5rem;
  }

  .site-footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    align-items: center;
  }
}

/* ==========================================================================
   Social Links
   ========================================================================== */
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 3rem;
}

.social-links a {
  color: var(--text-main);
  text-decoration: none;
  border: 1px solid var(--border-color);
  padding: 0.85rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--text-main);
  color: var(--bg-color);
  border-color: var(--text-main);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.footer-socials a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-socials a:hover {
  color: var(--text-main);
}

@media (max-width: 600px) {
  .social-links {
    width: 100%;
  }

  .social-links a {
    width: 100%;
    text-align: center;
  }

  .footer-socials {
    flex-direction: column;
    gap: 0.8rem;
  }
}
