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

/* ==============================
   GLOBAL STYLES
   ============================== */

:root {

  /* ==== SPACING (Base 16px) ==== */
  /* xs: 8-12px | s: 12-16px | m: 20-32px | l: 32-64px | xl: 64-128px */
  --space-xs: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);
  --space-s: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
  --space-m: clamp(1.25rem, 1rem + 1vw, 2rem);
  --space-l: clamp(2rem, 1.5rem + 2.5vw, 4rem);
  --space-xl: clamp(4rem, 3rem + 4vw, 8rem);


  /* ==== LAYOUT LIMITS ==== */
  --container-max-width: 1200px;
  --gutter-x: var(--space-m);


  /* ==== TEXT SIZES (Base 16px) ==== */
  /* h1: 28->44px | h2: 22->32px | h3: 19->25px */
  --font-size-h1: clamp(1.75rem, 1.5rem + 1.25vw, 2.75rem);
  --font-size-h2: clamp(1.375rem, 1.25rem + 0.75vw, 2rem);
  --font-size-h3: clamp(1.2rem, 1.1rem + 0.5vw, 1.6rem);

  /* base: 16->18px | small: 13.6->16px */
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-small: clamp(0.85rem, 0.8rem + 0.2vw, 1rem);


  /* ===== TYPOGRAPHY ===== */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;


  /* ===== COLOURS ===== */
  /* Backgrounds */
  /* Primary background for the entire page */
  --color-bg-main: #F2EEEB;
  /* Subtle contrast for cards or section sections */
  --color-bg-secondary: #E8E2DE;
  /* Dark background for footers or hero sections */
  --color-bg-dark: #35040e;

  /* Brand: Reds & Burgundies */
  /* Main brand color for navbars and main buttons */
  --color-primary: #590f1d;
  /* Lighter version for button hover states */
  --color-primary-light: #7A2233;
  /* High-contrast color for Call to Action buttons */
  --color-accent: #731010;
  /* Softer accent for decorative elements or icons */
  --color-accent-soft: #A63F3F;
  /* Premium accent for professional details */
  --color-gold: #c5a059;

  /* Typography */
  /* Main page titles (H1) */
  --color-text-h1: #35040e;
  /* Secondary headers (H2, H3, H4) */
  --color-text-headers: #590f1d;
  /* Standard body text for maximum readability */
  --color-text-body: #1A1A1A;
  /* Text color for dark backgrounds */
  --color-text-inverse: #F2EEEB;
  /* Secondary text or meta information */
  --color-text-muted: #6B6B6B;

  /* UI & Borders */
  /* Neutral color for input fields and dividers */
  --color-border: #D1C7C1;
  /* Optional accent for a premium, professional look */
  --color-gold: #c5a059;


  /* ===== SHADOWS ===== */
  --shadow-sm: 0 2px 8px rgba(89, 15, 29, 0.04);
  --shadow-md: 0 4px 16px rgba(89, 15, 29, 0.08);
  --shadow-lg: 0 8px 32px rgba(89, 15, 29, 0.12);
  --shadow-glow: 0 0 0 3px rgba(197, 160, 89, 0.1);


  /* ===== BORDER RADIOUS ===== */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 100px;


  /* ===== NAV ===== */
  --nav-height: clamp(4.375rem, 4rem + 1vw, 5.625rem);
  --nav-font-size: clamp(0.85rem, 0.83rem + 0.05vw, 0.9375rem);
  --nav-gap: clamp(0.5rem, 0.2rem + 1vw, 1rem);
  --nav-logo-height: clamp(2.5rem, 2.2rem + 1.5vw, 3.75rem);
  --btn-nav-padding-x: clamp(1rem, 0.5rem + 1.5vw, 2rem);


  /* ===== FOOTER ===== */
  /* Standard footer text: 12px -> 13.5px */
  --footer-font-size: clamp(0.75rem, 0.72rem + 0.15vw, 0.84rem);
  /* Section headers: 16px -> 18px (Matches text-base) */
  --footer-title-h3: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  /* Horizontal padding for footer container: 16px -> 20px */
  --footer-padding-x: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
  /* Gap between footer columns and elements: 16px -> 24px */
  --footer-gap: clamp(1rem, 0.8rem + 1vw, 1.5rem);
  /* Main footer logo width: 112px -> 144px */
  --footer-logo-width: clamp(7rem, 6rem + 5vw, 9rem);
  /* Social and contact icon dimensions: 18px -> 24px */
  --footer-icon-size: clamp(1.125rem, 1rem + 0.5vw, 1.5rem);

}

/* ==============================
   RESPONSIVE DESIGN - MOBILE FIRST DESIGN - CSS BASE
   ============================== */

/* Mobile First Design - CSS base: Small mobiles (0 - 480px) */
body {
  /*extra space to no overlap navbar*/
  padding-top: var(--nav-height);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-body);
  background-color: var(--color-bg-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}


/* NAV SECTION */
.main-header {
  width: 100%;
  height: var(--nav-height);

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-primary) 100%);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--gutter-x);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;

  height: var(--nav-height);
  gap: var(--space-m);
  font-size: var(--nav-font-size);
}

/* Logo */
.nav-logo {
  height: var(--nav-logo-height);
  width: auto;
  aspect-ratio: auto 200 / 109;

  image-rendering: -webkit-optimize-contrast;
  transition: transform 0.3s ease;
  filter: brightness(1.1);
}

.nav-logo:hover {
  transform: scale(1.05);
}

/* Links */
.nav-menu {
  display: none;
}

.nav-menu.open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(53, 4, 14, 0.98) 0%, rgba(89, 15, 29, 0.98) 100%);
  backdrop-filter: blur(12px);
  padding: var(--space-m) 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--nav-gap);
  width: 100%;
  align-items: center;

}

.nav-link {
  display: block;
  padding: var(--space-xs) var(--space-s);

  color: var(--color-text-inverse);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-small);
  transition: all 0.3s ease;
  position: relative;
  opacity: 0.9;
  white-space: nowrap;

}

.nav-link:hover {
  opacity: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 80%;
}

/* Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-s);
}

.btn-nav {
  display: none;

  padding: 0.6em var(--btn-nav-padding-x);
  font-weight: 600;
  border-radius: var(--radius-full);

  text-decoration: none;
  white-space: nowrap;
  background: var(--color-gold);
  color: var(--color-bg-dark);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(197, 160, 89, 0.3);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(197, 160, 89, 0.5);
  background: #d4b06a;
}

.nav-hamburger {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--color-text-inverse);
  cursor: pointer;
  padding: 0.5rem;
}


/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, #FDFBF9 0%, #F5F1ED 100%);
  padding: var(--space-xl) 0;
}

.hero-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--gutter-x);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: var(--space-m);
  gap: var(--space-m);

  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);

}

.hero-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.hero-text {
  flex: 1;
  text-align: center;
}

.hero-header h1 {
  font-family: var(--font-display);
  font-size: var(--font-size-h1);
  color: var(--color-text-h1);
  margin-bottom: var(--space-xs);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: var(--font-size-h3);
  color: var(--color-text-headers);
  margin-bottom: var(--space-m);
  font-weight: 500;
  line-height: 1.4;
}

.hero-description p {
  line-height: 1.8;
  margin-bottom: var(--space-m);
  margin-left: auto;
  margin-right: auto;
}

.hero-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-s);
  list-style: none;
  margin-bottom: var(--space-m);
}

.hero-list li {
  font-size: var(--text-small);
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F1ED 100%);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-list li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--color-accent-soft);
}

.btn-hero {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: var(--color-text-inverse);
  border-radius: var(--radius-full);
  padding: 1rem 2.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ===== INTRO SECTION ===== */
.intro-section {
  background: white;
  padding: var(--space-xl) 0;
}

.intro-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--gutter-x);
}

.intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-l);
}

.intro-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(89, 15, 29, 0.08));
}

.intro-text {
  flex: 1;
  background: linear-gradient(135deg, #FDFBF9 0%, #F5F1ED 100%);
  padding: var(--space-l);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
}

.intro-header h2 {
  font-family: var(--font-display);
  font-size: var(--font-size-h2);
  color: var(--color-primary);
  margin-bottom: var(--space-m);
  line-height: 1.3;
}

.intro-text p {
  line-height: 1.8;
  margin-bottom: var(--space-m);
}

.intro-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  margin: var(--space-m) 0;
}

.intro-list li {
  background: white;
  padding: var(--space-s) var(--space-m);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.intro-list li:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.read-more-about-me {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.read-more-about-me:hover {
  gap: 1rem;
}

.read-more-about-me::after {
  content: '→';
}


/* ===== SERVICE SECTION ===== */
.service-section {
  background: linear-gradient(135deg, #F5F1ED 0%, #FDFBF9 100%);
  padding: var(--space-xl) 0;
}

.service-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--gutter-x);
}

.service-content {
  background: white;
  padding: var(--space-l);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.service-header {
  text-align: center;
  margin-bottom: var(--space-l);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-header h2 {
  font-family: var(--font-display);
  font-size: var(--font-size-h2);
  color: var(--color-primary);
  margin-bottom: var(--space-s);
}

.service-header p {
  color: var(--color-text-muted);
}

.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-m);
  list-style: none;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #FDFBF9 0%, #FFFFFF 100%);
  padding: var(--space-m);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-accent) 100%);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.icon-service {
  width: 150px;
  height: 150px;

}

.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--font-size-h3);
  color: var(--color-accent);
  margin-bottom: var(--space-s);
}

.service-card p {
  margin-bottom: var(--space-s);
}

.service-target {
  font-size: var(--text-small);
  color: var(--color-accent);
  font-weight: 600;
  margin-top: var(--space-s);
  padding-top: var(--space-s);
}

/* ===== FREE CONSULTATION SECTION ===== */
.consultation-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.consultation-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.consultation-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--gutter-x);
  position: relative;
  z-index: 1;
}

.consultation-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.consultation-content h2 {
  font-family: var(--font-display);
  font-size: var(--font-size-h2);
  color: var(--color-text-inverse);
  margin-bottom: var(--space-m);
  line-height: 1.3;
}

.consultation-content p {
  color: var(--color-text-inverse);
  line-height: 1.8;
  margin-bottom: var(--space-l);
  opacity: 0.95;
}

.btn-consultation {
  display: inline-block;
  background: white;
  color: var(--color-primary);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-consultation:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* ===== VALUES SECTION ===== */
.values-section {
  background: white;
  padding: var(--space-xl) 0;
}

.values-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--gutter-x);
}

.values-content {
  background: linear-gradient(135deg, #FDFBF9 0%, #F5F1ED 100%);
  padding: var(--space-l);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.values-header {
  text-align: center;
  margin-bottom: var(--space-l);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.values-header h2 {
  font-family: var(--font-display);
  font-size: var(--font-size-h2);
  color: var(--color-primary);
  margin-bottom: var(--space-s);
}

.values-header p {
  color: var(--color-text-muted);
}

.values-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-m);
  list-style: none;
}

.value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  padding: var(--space-l);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.icon-value {
  width: 50px;
  height: 50px;
  margin-bottom: var(--space-s);
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: var(--font-size-h3);
  color: var(--color-accent);
  margin-bottom: var(--space-s);
}


/* ===== REVIEWS SECTION ===== */
.reviews-section {
  background: linear-gradient(135deg, #F5F1ED 0%, #FDFBF9 100%);
  padding: var(--space-xl) 0;
}

.reviews-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--gutter-x);
}

.reviews-content {
  background: white;
  padding: var(--space-l);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.reviews-header {
  text-align: center;
  margin-bottom: var(--space-l);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-header h2 {
  font-family: var(--font-display);
  font-size: var(--font-size-h2);
  color: var(--color-primary);
  margin-bottom: var(--space-s);
}

.reviews-header p {
  color: var(--color-text-muted);
}

.reviews-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-m);
  list-style: none;
  margin-bottom: var(--space-l);
}

.review-card {
  background: linear-gradient(135deg, #FDFBF9 0%, #FFFFFF 100%);
  padding: var(--space-m);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  position: relative;
}

/*.review-card::before {
  content: '"';
  position: absolute;
  top: var(--space-s);
  left: var(--space-m);
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-gold);
  opacity: 0.3;
  line-height: 1;
}*/

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: var(--color-gold);
  font-size: 1.25rem;
  margin-bottom: var(--space-s);
  letter-spacing: 0.1em;
}

.review-text {
  margin: 0;
  padding: 0;
  border: none;
}

.review-text p {
  font-style: italic;
  font-size: var(--text-small);
}

.review-author {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--color-text-headers);
  font-size: var(--text-small);
}

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

.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.reviews-link:hover {
  background: var(--color-accent);
  color: white;
  gap: 1rem;
}

.reviews-link-icon {
  transition: transform 0.3s ease;
}

.reviews-link:hover .reviews-link-icon {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .reviews-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== FOOTER SECTION ===== */
.main-footer {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-primary) 100%);
  color: var(--color-text-inverse);
  padding: var(--space-xl) 0 var(--space-m);
  width: 100%;
  letter-spacing: 0.01em;
}

.footer-container {
  max-width: var(--container-max-width);
  padding: 0;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--footer-gap);
  font-size: var(--footer-font-size);
}

.footer-areas {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 100%;
  gap: var(--footer-gap);
}

.footer-areas h3 {
  font-family: var(--font-display);
  font-size: var(--footer-title-h3);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--space-s);
  color: var(--color-text-inverse);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.footer-areas ul {
  display: flex;
  flex-direction: column;
  align-items: center;

  list-style-type: none;
}

.footer-areas li {
  display: flex;
  justify-content: center;

  padding: 0 0 var(--space-xs) 0;
}

.footer-areas a {
  text-decoration: none;
  transition: color 0.3s ease;
  color: inherit;
  font-size: var(--text-small);
}

.footer-areas a:hover {
  color: var(--color-gold);
  transform: translateX(4px);
}

[class^="footer-area-"] {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/*logo*/
.footer-logo {
  width: var(--footer-logo-width);
  height: auto;
  margin-bottom: var(--space-s);
  image-rendering: -webkit-optimize-contrast;
}

.footer-logo-text {
  line-height: 1.6;
  font-size: var(--text-small);
  padding: 0 0 0 25px;
  opacity: 0.8;
  max-width: 30ch;
}

/*contact*/
.footer-area-contact ul {
  align-items: flex-start;
}

.footer-area-contact li {
  display: flex;
  text-align: left;
}

.footer-area-contact ul li p {
  margin-left: 0.5em;
}

.footer-area-contact p {
  margin: 0;
  line-height: 1.5;
}

.icon-socials,
.icon-contact {
  width: var(--footer-icon-size);
  height: var(--footer-icon-size);
  object-fit: contain;
}

/*socials*/
.footer-area-socials ul {
  flex-direction: row;
  gap: var(--space-m);
}

.footer-area-socials a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.footer-divider {
  width: 80%;
  border: 0;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  margin: var(--space-m) 0;
}

/*copyright*/
.footer-bottom {
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  padding-top: var(--space-m);
  margin-top: var(--space-l);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);

  font-size: var(--text-small);
  opacity: 0.6;
  text-align: center;
}

.footer-credits {
  font-size: calc(var(--text-small) * 0.85);
  opacity: 0.5;
}

.footer-credits a {
  color: inherit;
  text-decoration: underline;
  transition: opacity 0.3s;
}

.footer-credits a:hover {
  opacity: 1;
  color: var(--color-gold);
}

/* ===== STANDARD TABLETS + SMALL SCREENS (768px - 1023px) ===== */
@media (min-width: 768px) {

  /* NAV */
  .nav-hamburger {
    display: none;
  }

  .nav-menu {
    display: flex;
    position: static;
    background: none;
    padding: 0;
    box-shadow: none;
    flex: 1;
    justify-content: center;
  }

  .nav-content {
    gap: var(--space-xs);
  }

  .nav-list {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
  }

  .nav-link {
    padding: 0.5rem 0.5rem;
  }

  .btn-nav {
    display: inline-block;
    padding: 0.6em 1rem;
  }

  /* SERVICE */
  .service-list,
  .values-list {
    grid-template-columns: repeat(2, 1fr);
  }

  /*FOOTER*/
  .footer-areas {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  [class^="footer-area-"] {
    flex: 1 1 40%;
    align-items: center;
    text-align: left;
  }

  [class^="footer-area-"] ul {
    justify-content: flex-start;
  }

  .footer-logo-text {
    display: block;
  }

  .footer-divider {
    display: none;
  }
}

/* ===== LAPTOPS + MEDIUM SIZE SCREENS (1024px - 1279px) ===== */
@media (min-width: 1024px) {

  /*NAV*/
  .nav-content {
    gap: var(--space-m);
  }

  .nav-list {
    gap: var(--nav-gap);
  }

  .nav-link {
    padding: 0.5rem 0.8rem;
    font-size: var(--nav-font-size);
  }

  /* HERO */
  .hero-content {
    display: block;
    overflow: hidden;
    text-align: left;
  }

  .hero-float-img {
    float: left;
    width: 400px;
    height: auto;
    margin-right: var(--space-m);
    margin-bottom: var(--space-s);
    border-radius: var(--radius-md);
  }

  .hero-text {
    text-align: left;
  }

  .hero-header h1,
  .hero-header h2,
  .hero-description p {
    text-align: left;
  }

  .hero-list ul {
    justify-content: flex-start;
  }

  /* INTRO */
  .intro-content {
    flex-direction: row;
    align-items: center;
  }

  .intro-img {
    display: none;
  }

  /* SERVICES */
  .service-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /*FOOTER*/
  [class^="footer-area-"] {
    flex: 1;
  }
}



/* BANNER DE COOKIES - ESTILO SENCILLO */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #F2EEEB; /* Crema */
    border-top: 1px solid #D1C7C1;
    padding: 1.2rem 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: none; /* Se activa por JS */
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.cookie-content p {
    color: #1A1A1A;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-content a {
    color: #590f1d; /* Burdeos */
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.8rem;
}

.btn-cookie {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    transition: 0.3s;
}

.btn-accept {
    background-color: #590f1d; /* Burdeos */
    color: white;
    border: none;
}

.btn-reject {
    background-color: transparent;
    color: #590f1d;
    border: 1px solid #590f1d;
}

.btn-accept:hover { background-color: #400a15; }
.btn-reject:hover { background-color: #E8E2DE; }

/* Móvil */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}



/*********************************** CONTACTO PAGE *********************************/
.contact-main {
  background: linear-gradient(135deg, #F5F1ED 0%, #FDFBF9 100%);
  padding: var(--space-xl) 0;
}

.contact-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--gutter-x);
}

.contact-content {
  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;
  gap: var(--space-l);
}

/* Contact info */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;

  gap: var(--space-m);
}

.contact-info-card {
  background: white;
  padding: var(--space-l);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-primary);
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: var(--font-size-h3);
  color: var(--color-primary);
  margin-bottom: var(--space-m);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-s);
  margin-bottom: var(--space-m);
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.info-content p {
  margin: 0;
  line-height: 1.6;
}

.info-content strong {
  display: block;
  color: var(--color-text-headers);
  margin-bottom: 0.25rem;
}

.info-content a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Schedule */
.schedule-list {
  list-style: none;
  padding: 0;
}

.schedule-list li {
  display: flex;
  justify-content: space-between;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--color-border);
}

.schedule-list li:last-child {
  border-bottom: none;
}

.schedule-day {
  font-weight: 600;
  color: var(--color-text-headers);
}

.schedule-time {
  color: var(--color-text-muted);
}

/* Map */
.map-wrapper {
  background: white;
  padding: var(--space-m);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.map-container {
  width: 100%;
  height: 400px;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-sm);

  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);

  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
  padding: 0;
}


@media (min-width: 1024px) {
  .contact-info-wrapper {
    display: flex;
    flex-direction: row;
  }
}




/*** AVISO LEGAL + POLITICA COOKIES + POLITICA PRIVACIDAD PAGES ***/
.legal-section {
  background: white;
  padding: var(--space-xl) 0;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter-x);
}

.legal-content {
  background: linear-gradient(135deg, #FDFBF9 0%, #F5F1ED 100%);
  padding: var(--space-l);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.legal-header {
  text-align: center;
  margin-bottom: var(--space-l);
  padding-bottom: var(--space-m);
  border-bottom: 2px solid var(--color-border);
}

.legal-header h1 {
  font-family: var(--font-display);
  font-size: var(--font-size-h1);
  color: var(--color-primary);
  margin-bottom: var(--space-s);
}

.legal-header p {
  color: var(--color-text-muted);
  font-size: var(--text-small);
}

.legal-article {
  margin-bottom: var(--space-l);
  background: white;
  padding: var(--space-m);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
}

.legal-article:last-child {
  margin-bottom: 0;
}

.legal-article h2 {
  font-family: var(--font-display);
  font-size: var(--font-size-h2);
  color: var(--color-text-headers);
  margin-bottom: var(--space-m);
}

.legal-article h3 {
  font-size: var(--font-size-h3);
  color: var(--color-accent);
  margin: var(--space-m) 0 var(--space-s) 0;
}

.legal-article p {
  line-height: 1.8;
  margin-bottom: var(--space-s);
}

.legal-article ul {
  margin: var(--space-s) 0;
  padding-left: var(--space-m);
}

.legal-article li {
  margin-bottom: var(--space-xs);
  line-height: 1.8;
}

.legal-data {
  background: var(--color-bg-secondary);
  padding: var(--space-m);
  border-radius: var(--radius-md);
  margin: var(--space-m) 0;
}

.legal-data p {
  margin-bottom: var(--space-xs);
}

.legal-data strong {
  color: var(--color-text-headers);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: var(--space-m);
  transition: gap 0.3s ease;
}

.back-link:hover {
  gap: 1rem;
}

.back-link::before {
  content: '←';
}