:root {
  --color-primary: #1A1A1A;
  --color-secondary: #E5E5E5;
  --color-background: #FFFFFF;
  --color-footer-bg: #F5F5F5;
  --color-button: #1A1A1A;
  --color-section-1: #FFFFFF;
  --color-section-2: #FAFAFA;
  
  --font-main: 'Inter', sans-serif;
  --font-display: 'Oswald', sans-serif;
  
  --radius-sharp: 0px;
  --radius-slight: 4px;
  
  --shadow-offset: 4px 4px 0 #000000;
  --shadow-hover: 2px 2px 0 #000000;
  --border-thick: 2px solid #000000;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Oswald:wght@500;700&display=swap');

body {
  font-family: var(--font-main);
  background-color: var(--color-background);
  color: var(--color-primary);
  line-height: 1.7;
  font-size: 16px;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h1 { font-size: 3.5rem; letter-spacing: -0.03em; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1.5rem;
  max-width: 65ch;
}

a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  transition: all 0.2s ease;
}

a:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  text-decoration: none;
}

/* Container & Sections */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 5rem 0;
  border-bottom: var(--border-thick);
}

.section-alt {
  background-color: var(--color-section-2);
}

/* Header */
.header {
  background-color: var(--color-background);
  border-bottom: var(--border-thick);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  background-color: var(--color-primary);
  color: var(--color-background);
  padding: 2px 8px;
  display: inline-block;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav a:hover {
  background-color: transparent;
  color: var(--color-primary);
}

/* Hero */
.hero {
  padding: 8rem 0 6rem;
  border-bottom: var(--border-thick);
  background-color: var(--color-secondary);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--color-background) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  max-width: 800px;
  margin-bottom: 2rem;
}

.hero-text {
  font-size: 1.25rem;
  max-width: 500px;
  margin-bottom: 3rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: var(--border-thick);
  background-color: var(--color-button);
  color: var(--color-background);
  box-shadow: var(--shadow-offset);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #000;
  background-color: var(--color-button);
  color: var(--color-background);
}

.btn:active {
  transform: translate(4px, 4px);
  box-shadow: none;
}

.btn-secondary {
  background-color: var(--color-background);
  color: var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  border: var(--border-thick);
  background-color: var(--color-background);
  padding: 2rem;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 4px 4px 0 var(--color-primary);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.card-badge {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-background);
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border-radius: var(--radius-slight);
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.input, .textarea {
  width: 100%;
  padding: 1rem;
  border: var(--border-thick);
  background-color: var(--color-background);
  color: var(--color-primary);
  font-family: var(--font-main);
  font-size: 1rem;
  border-radius: var(--radius-sharp);
  box-shadow: 2px 2px 0 #000;
}

.input:focus, .textarea:focus {
  outline: none;
  box-shadow: 2px 2px 0 var(--color-primary), inset 0 0 0 2px var(--color-primary);
}

.textarea {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
.footer {
  background-color: var(--color-footer-bg);
  border-top: var(--border-thick);
  padding: 4rem 0;
  margin-top: auto;
}

.footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: var(--border-thick);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 0.5rem;
}

.footer a {
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover {
  text-decoration: underline;
  background-color: transparent;
}

/* Hero Text Split Layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-split-image {
  border: var(--border-thick);
  background-color: var(--color-primary);
  height: 100%;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-split-image::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: var(--border-thick);
  border-color: var(--color-background);
}

.hero-split-image span {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-background);
  opacity: 0.2;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .hero { padding: 4rem 0; }
  .hero h1 { font-size: 2.5rem; }
  
  .hero-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-split-image {
    min-height: 250px;
  }
  
  .nav ul {
    gap: 1rem;
  }
  
  .header .container {
    flex-direction: column;
    gap: 1rem;
  }
}

/* High Contrast Utility */
.bg-primary { background-color: var(--color-primary) !important; color: var(--color-background) !important; }
.bg-secondary { background-color: var(--color-secondary) !important; }
.text-primary { color: var(--color-primary) !important; }
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1.5rem; }
.w-full { width: 100%; }


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}