:root {
  /* Color Palette - Extracted from target site */
  --background: 40 20% 98%;
  --foreground: 220 15% 18%;
  --card: 0 0% 100%;
  --card-foreground: 220 15% 18%;
  --popover: 0 0% 100%;
  --popover-foreground: 220 15% 18%;
  --primary: 220 12% 22%;
  --primary-foreground: 40 20% 97%;
  --secondary: 40 12% 94%;
  --secondary-foreground: 220 12% 22%;
  --muted: 40 8% 92%;
  --muted-foreground: 220 8% 46%;
  --accent: 35 18% 40%;
  --accent-foreground: 40 20% 97%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 40 10% 88%;
  --input: 40 10% 88%;
  --ring: 220 12% 22%;
  --radius: 0.375rem;

  /* Custom Stone Colors */
  --stone-warm: 35 20% 50%;
  --stone-light: 40 15% 96%;
  --stone-medium: 40 8% 85%;
  --charcoal: 220 10% 28%;
  --charcoal-light: 220 8% 38%;

  /* Fonts */
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Source+Sans+3:wght@300;400;500;600;700&display=swap");

/* Custom Page Styles */
/* About Page Specific Styles */
.about-section {
  padding: 6rem 0;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.about-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

.section-divider {
  width: 60px;
  height: 2px;
  background-color: #bfa08a;
  margin: 1.5rem auto;
}

.section-divider-left {
  width: 60px;
  height: 2px;
  background-color: #bfa08a;
  margin: 1.5rem 0;
}

.direct-source-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.direct-source-content h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.direct-source-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
}

.direct-source-text p {
  margin-bottom: 2rem;
}

.direct-source-image img {
  border-radius: 4px;
  width: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.advantage-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.advantage-card {
  background: white;
  padding: 3rem 2rem;
  border: 1px solid #eee;
  border-radius: 2px;
  text-align: left;
}

.advantage-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-heading);
}

.advantage-card p {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.7;
}

.strengths-container {
  max-width: 1000px;
  margin: 0 auto;
}

.strength-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: #f6f6f6;
  padding: 1.2rem 2.5rem;
  margin-bottom: 0.8rem;
  border-radius: 2px;
}

.strength-item i {
  color: #888;
  width: 18px;
}

.strength-item span {
  font-weight: 500;
  color: #333;
}

/* Page Hero Specific Styles */
.page-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('hero-all-opt.webp') center/cover no-repeat !important;
  color: white !important;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 90px 1rem 0 1rem;
}

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

.page-hero p {
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

.collections-container {
  padding: 6rem 0;
  text-align: center;
}

.collections-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.collection-card {
  background-color: #f6f6f6;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.collection-card:hover {
  background-color: #efefef;
}

.collection-card i {
  color: #888;
  width: 18px;
}

.collection-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

.features-detailed {
  padding: 6rem 0 8rem;
  border-top: 1px solid #efefef;
}

.features-detailed-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.feature-detail-card {
  padding: 1rem;
}

.feature-detail-icon {
  margin-bottom: 2rem;
  color: #333;
}

.feature-detail-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.feature-detail-card ul {
  list-style: none;
  padding: 0;
}

.feature-detail-card ul li {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.25rem;
}

.feature-detail-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #999;
}

/* Media Queries for Custom Styles */
@media (max-width: 1024px) {
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collections-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 992px) {
  .features-detailed-grid {
    grid-template-columns: 1fr !important;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .direct-source-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .advantage-grid,
  .collections-grid {
    grid-template-columns: 1fr !important;
  }

  .about-header h2 {
    font-size: 2.2rem;
  }

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


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

html {
  scroll-behavior: smooth;
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Components */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1000;
  border-bottom: 1px solid hsl(var(--border) / 0.5);
  height: 110px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav a {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

nav a:hover,
nav a.active {
  color: hsl(var(--accent));
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: hsl(var(--foreground));
  margin: 5px 0;
  transition: 0.3s;
}

/* Why Us Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-icon {
  font-size: 1.5rem;
  color: hsl(var(--accent));
  margin-bottom: 1.5rem;
}

.divider {
  width: 60px;
  height: 2px;
  background-color: hsl(var(--accent));
  margin: 1.5rem auto;
}

/* European Distribution Section */
.eu-dist {
  background-color: #333942;
  /* Darker grey as seen in image */
  color: white;
}

.eu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.eu-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.eu-item i {
  color: white;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

/* Footer */
footer {
  background-color: #2a2f36;
  color: white;
  padding: 5rem 0 2rem;
}

footer .logo {
  color: white;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: hsl(var(--accent-foreground));
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul a:hover {
  color: hsl(var(--accent));
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Utility Classes */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn:hover {
  background-color: hsl(var(--accent));
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: hsl(var(--primary));
  color: hsl(var(--primary));
}

.btn-outline:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

/* Home Page Hero Styles */
.home-hero-title {
  font-size: 4.5rem;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.home-hero-desc {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  font-family: var(--font-body);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.home-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.home-hero-btn-primary {
  background-color: #8c735a;
  border-color: #8c735a;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 1rem 2.5rem;
}

.home-hero-btn-outline {
  background-color: transparent;
  border: 1px solid white;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 1rem 2.5rem;
}

.home-hero-btn-outline:hover {
  background-color: white;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    transition: 0.3s;
    padding: 2rem;
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }

  .mobile-toggle {
    display: block;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .home-hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    padding: 0 1rem;
  }

  .home-hero-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .home-hero-buttons {
    flex-direction: column;
    padding: 0 1.5rem;
    gap: 1rem;
  }

  .eu-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .contact-header {
    display: none !important;
  }
}