/* =========================================
   CSS Custom Properties (Design Tokens)
   ========================================= */
:root {
  --color-primary: #1a1a1a;
  --color-secondary: #333333;
  --color-light-bg: #f5f5f5;
  --color-gold: #C5A258;
  --color-gold-hover: #B08D3E;
  --color-text-dark: #1a1a1a;
  --color-text-body: #444444;
  --color-white: #ffffff;
}

/* =========================================
   CSS Reset
   ========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

/* =========================================
   Base Typography
   ========================================= */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-body);
  background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6, .logo, .footer-logo {
  font-family: 'Playfair Display', serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--color-text-dark);
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================================
   Button Styles
   ========================================= */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.85;
}

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

.btn-teal:hover {
  background-color: var(--color-gold-hover);
  opacity: 1;
}

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

.btn-coral:hover {
  background-color: var(--color-gold-hover);
  opacity: 1;
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-white);
  padding: 0 2rem;
  height: 70px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text-dark);
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--color-primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
}

/* =========================================
   Footer
   ========================================= */
footer {
  background-color: var(--color-text-dark);
  color: var(--color-white);
  padding: 3rem 0 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-logo {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: var(--color-gold);
}

footer h4 {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  color: var(--color-white);
}

footer p,
footer a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  line-height: 1.7;
}

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

.footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 1.25rem 0;
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
  background-color: var(--color-light-bg);
  padding: 4rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.hero-text h1 {
  font-size: 3rem;
  color: var(--color-text-dark);
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  color: var(--color-text-body);
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px;
}

.hero-portrait {
  position: relative;
  z-index: 2;
  width: 300px;
  height: 400px;
  background: var(--color-light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-text-body);
}

.hero-splash {
  position: absolute;
  background: #e0e0e0;
  border-radius: 50%;
  width: 350px;
  height: 350px;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  z-index: 1;
}

.hero-blob {
  position: absolute;
  background: #d0d0d0;
  border-radius: 50%;
}

.hero-blob-1 {
  width: 70px;
  height: 70px;
  top: 10%;
  right: 5%;
  z-index: 3;
}

.hero-blob-2 {
  width: 55px;
  height: 55px;
  bottom: 12%;
  left: 8%;
  z-index: 3;
}

/* =========================================
   Split Section
   ========================================= */
.split {
  display: flex;
  width: 100%;
}

.split-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
}

.split-left {
  background-color: var(--color-light-bg);
}

.split-right {
  background-color: var(--color-white);
}

.split-image {
  width: 100%;
  height: 250px;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-body);
}

.split-card {
  background-color: var(--color-white);
  padding: 2rem;
  margin-top: 1.5rem;
}

/* =========================================
   Newsletter Section
   ========================================= */
.newsletter {
  background-color: var(--color-primary);
  padding: 4rem 0;
  text-align: center;
  color: var(--color-white);
}

.newsletter h2 {
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.newsletter p {
  color: var(--color-white);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.newsletter-input {
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  border: none;
  min-width: 300px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
}

/* =========================================
   Container Utility
   ========================================= */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* =========================================
   Cookie Consent Banner
   ========================================= */
.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hidden {
  display: none !important;
}

.cookie-overlay.hidden {
  display: none;
}

.cookie-modal {
  background: var(--color-white);
  border-radius: 12px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.cookie-modal h3 {
  margin-bottom: 1rem;
}

.cookie-modal p {
  margin-bottom: 1.25rem;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.cookie-options label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* =========================================
   Active Nav Link
   ========================================= */
.nav-links a.active {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 2px;
}

/* =========================================
   Page Hero (Service Pages)
   ========================================= */
.page-hero {
  background-color: var(--color-light-bg);
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--color-text-body);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   Services Section
   ========================================= */
.services {
  padding: 4rem 0;
  max-width: 100%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-image {
  background: #e0e0e0;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1rem;
  font-weight: 600;
}

.service-card h3 {
  padding: 1.25rem 1.25rem 0.25rem;
  margin-bottom: 0;
}

.service-card p {
  padding: 0 1.25rem 1rem;
}

.service-card .btn {
  margin: 0 1.25rem 1.5rem;
}

/* =========================================
   About Page
   ========================================= */
.about-content {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-image {
  background: #e0e0e0;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
}

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

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

.quote {
  font-style: italic;
  border-left: 4px solid var(--color-gold);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: var(--color-text-body);
}

/* =========================================
   Credentials Section
   ========================================= */
.credentials {
  padding: 4rem 0;
  background: var(--color-light-bg);
  text-align: center;
}

.credentials h2 {
  margin-bottom: 2.5rem;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.credential-item {
  padding: 2rem 1.5rem;
}

.credential-icon {
  width: 80px;
  height: 80px;
  background: var(--color-light-bg);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-body);
}

/* =========================================
   B2B Page
   ========================================= */
.b2b-services {
  padding: 4rem 0;
}

.b2b-services h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.b2b-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.b2b-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.b2b-card h3 {
  margin-bottom: 0.75rem;
}

.b2b-card p {
  margin-bottom: 1.5rem;
}

.b2b-cta {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 4rem 0;
}

.b2b-cta h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.b2b-cta p {
  color: var(--color-white);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   Contact Page
   ========================================= */
.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: inherit;
}

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

.contact-info {
  padding-left: 1rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.info-item {
  margin-bottom: 1.25rem;
}

.map-placeholder {
  background: #e0e0e0;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  border-radius: 6px;
  margin-top: 1.5rem;
}

/* =========================================
   Pricing Page
   ========================================= */
.pricing-section {
  padding: 5rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.pricing-card--featured {
  border: 2px solid var(--color-gold);
  transform: scale(1.05);
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-gold);
  margin: 1rem 0 1.5rem;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid #eee;
}

/* =========================================
   Legal Pages
   ========================================= */
.page-hero {
  padding: 4rem 2rem;
  text-align: center;
  background-color: var(--color-light-bg);
}

.legal-content {
  padding: 5rem 0;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--color-text-body);
}

/* =========================================
   Hamburger Button (desktop: hidden)
   ========================================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-text-dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* =========================================
   Responsive — Mobile (max-width: 768px)
   ========================================= */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar {
    position: relative;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    padding: 0.75rem 1rem;
    display: block;
  }

  .nav-cta {
    display: block;
    text-align: center;
    margin: 0.5rem 1rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    max-width: 250px;
    margin: 0 auto;
  }

  .split {
    flex-direction: column;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .b2b-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }
}

/* =========================================
   Language Switcher
   ========================================= */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 1.5rem;
}

.lang-link {
  text-decoration: none;
  color: var(--color-text-dark);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.lang-link.lang-active {
  font-weight: 700;
}

.lang-separator {
  color: var(--color-text-body);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .lang-switcher {
    justify-content: center;
    margin-left: 0;
    margin-top: 1rem;
  }
}
