/* =============================================
   MARKETINGAN S.L. — Main Stylesheet
   Caramel & White Theme
   ============================================= */

:root {
  --caramel: #C8956C;
  --caramel-dark: #A67B52;
  --caramel-light: #E8D4BC;
  --caramel-pale: #F5EBE0;
  --cream: #FAF6F1;
  --white: #FFFFFF;
  --text-dark: #2C2416;
  --text-muted: #6B5E4F;
  --text-light: #9A8B7A;
  --shadow-sm: 0 2px 12px rgba(44, 36, 22, 0.06);
  --shadow-md: 0 8px 32px rgba(44, 36, 22, 0.10);
  --shadow-lg: 0 16px 48px rgba(44, 36, 22, 0.14);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: clip;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--caramel-dark);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--caramel);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.8;
}

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-pipe {
  width: 4px;
  height: 48px;
  background: var(--caramel-light);
  border-radius: 4px;
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
}

.preloader-pipe::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--caramel);
  animation: pipeFlow 1.2s ease-in-out infinite;
}

@keyframes pipeFlow {
  0% { top: -100%; }
  100% { top: 100%; }
}

.preloader-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--caramel-dark);
  letter-spacing: 0.05em;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), height var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  --header-height: 68px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 48px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.logo:hover img {
  transform: scale(1.04) translateY(-1px);
  filter: brightness(1.05);
}

.header.scrolled .logo img {
  height: 42px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--caramel);
  transition: width var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--text-dark);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--caramel);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.header-cta:hover {
  background: var(--caramel-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 149, 108, 0.35);
}

.header-cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.header-cta:hover svg {
  transform: translateX(3px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform var(--transition);
  z-index: 999;
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile a {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--caramel-pale);
  transition: color var(--transition), padding-left var(--transition);
}

.nav-mobile a:hover {
  color: var(--caramel-dark);
  padding-left: 8px;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 36, 22, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 998;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 36, 22, 0.75) 0%,
    rgba(44, 36, 22, 0.45) 50%,
    rgba(200, 149, 108, 0.35) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 720px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.hero-title .line:nth-child(1) { animation-delay: 0.5s; }
.hero-title .line:nth-child(2) { animation-delay: 0.7s; }
.hero-title .line:nth-child(3) { animation-delay: 0.9s; }

.hero-title .accent {
  color: var(--caramel-light);
  font-style: italic;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 1.1s;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 1.3s;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--caramel);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  background: var(--caramel-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(200, 149, 108, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeUp 0.8s ease forwards 1.6s;
  opacity: 0;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--caramel-light), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ---- Highlights Strip ---- */
.highlights {
  background: var(--white);
  padding: 0;
  position: relative;
  margin-top: -1px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--caramel-pale);
}

.highlight-item {
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid var(--caramel-pale);
  transition: background var(--transition);
}

.highlight-item:last-child {
  border-right: none;
}

.highlight-item:hover {
  background: var(--caramel-pale);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--caramel-pale);
  border-radius: 50%;
  color: var(--caramel-dark);
  transition: background var(--transition), transform var(--transition);
}

.highlight-item:hover .highlight-icon {
  background: var(--caramel);
  color: var(--white);
  transform: scale(1.1);
}

.highlight-icon svg {
  width: 22px;
  height: 22px;
}

.highlight-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.highlight-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---- About ---- */
.about {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
  overflow: hidden;
}

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-visual:hover .about-image-main img {
  transform: scale(1.04);
}

.about-float-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 240px;
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-float-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--caramel-dark);
  margin-bottom: 6px;
}

.about-float-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-content .section-desc {
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  gap: 20px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--caramel-pale);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.about-feature:hover {
  border-color: var(--caramel-light);
  box-shadow: var(--shadow-sm);
  transform: translateX(6px);
}

.about-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--caramel-pale);
  border-radius: var(--radius-sm);
  color: var(--caramel-dark);
}

.about-feature-icon svg {
  width: 20px;
  height: 20px;
}

.about-feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Categories ---- */
.categories {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.categories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--caramel-light), transparent);
}

.categories-header {
  text-align: center;
  margin-bottom: 64px;
}

.categories-header .section-desc {
  margin: 0 auto;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  group: category;
  cursor: default;
}

.category-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-card-image img {
  transform: scale(1.08);
}

.category-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 36, 22, 0.5), transparent 60%);
  transition: opacity var(--transition);
}

.category-card-body {
  padding: 28px;
}

.category-card-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--caramel-pale);
  line-height: 1;
  margin-bottom: 8px;
  transition: color var(--transition);
}

.category-card:hover .category-card-num {
  color: var(--caramel-light);
}

.category-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.category-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.category-card-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--caramel-dark);
  z-index: 2;
}

/* ---- Supply Chain ---- */
.supply {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.supply-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg,
    var(--caramel) 0,
    var(--caramel) 1px,
    transparent 1px,
    transparent 20px
  );
  pointer-events: none;
}

.supply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.supply-content .section-desc {
  margin-bottom: 40px;
}

.supply-steps {
  display: grid;
  gap: 0;
  position: relative;
}

.supply-steps::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--caramel-light);
}

.supply-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.supply-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.supply-step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--caramel);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--caramel-dark);
  position: relative;
  z-index: 1;
  transition: background var(--transition), color var(--transition);
}

.supply-step:hover .supply-step-num {
  background: var(--caramel);
  color: var(--white);
}

.supply-step h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.supply-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.supply-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.supply-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.supply-visual-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 12px 20px;
  background: var(--caramel);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ---- Quality ---- */
.quality {
  padding: 100px 0;
  background: var(--white);
}

.quality-header {
  text-align: center;
  margin-bottom: 64px;
}

.quality-header .section-desc {
  margin: 0 auto;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.quality-card {
  padding: 40px 32px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.quality-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--caramel), var(--caramel-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.quality-card:hover {
  border-color: var(--caramel-pale);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.quality-card:hover::before {
  transform: scaleX(1);
}

.quality-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-md);
  color: var(--caramel);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), color var(--transition);
}

.quality-card:hover .quality-card-icon {
  background: var(--caramel);
  color: var(--white);
}

.quality-card-icon svg {
  width: 26px;
  height: 26px;
}

.quality-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.quality-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---- Partners ---- */
.partners {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.partners-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.partners-content .section-desc {
  margin-bottom: 32px;
}

.partners-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--caramel-pale);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.partner-item:hover {
  border-color: var(--caramel);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.partner-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--caramel-pale);
  border-radius: 50%;
  color: var(--caramel-dark);
}

.partner-item-icon svg {
  width: 18px;
  height: 18px;
}

.partner-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.partners-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.partners-visual-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.partners-visual-card:first-child {
  grid-row: span 2;
}

.partners-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform 0.6s ease;
}

.partners-visual-card:hover img {
  transform: scale(1.05);
}

/* ---- Location ---- */
.location {
  padding: 100px 0;
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-details {
  margin-top: 32px;
  display: grid;
  gap: 24px;
}

.location-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.location-detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--caramel-pale);
  border-radius: var(--radius-sm);
  color: var(--caramel-dark);
}

.location-detail-icon svg {
  width: 22px;
  height: 22px;
}

.location-detail h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--caramel-dark);
  margin-bottom: 4px;
}

.location-detail p,
.location-detail a {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.location-detail a:hover {
  color: var(--caramel-dark);
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  background: var(--caramel-pale);
  position: relative;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  filter: saturate(0.85) sepia(0.15);
}

/* ---- CTA ---- */
.cta {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  background: linear-gradient(135deg, var(--caramel-dark) 0%, var(--caramel) 50%, var(--caramel-light) 100%);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: ctaOrb 8s ease-in-out infinite;
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: ctaOrb 10s ease-in-out infinite reverse;
}

@keyframes ctaOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-content .btn-primary {
  background: var(--white);
  color: var(--caramel-dark);
}

.cta-content .btn-primary:hover {
  background: var(--cream);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

/* ---- Footer ---- */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.footer-logo-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--caramel-light);
  margin-bottom: 20px;
}

.footer-about {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--caramel-light);
  margin-bottom: 24px;
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer-contact-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--caramel);
  margin-top: 3px;
}

.footer-contact-item p,
.footer-contact-item a {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a:hover {
  color: var(--caramel-light);
}

.footer-hours .footer-heading {
  margin-bottom: 16px;
}

.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8125rem;
  line-height: 1.4;
}

.footer-hours-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.footer-hours-list .day {
  color: rgba(255, 255, 255, 0.7);
}

.footer-hours-list .time {
  color: var(--caramel-light);
  font-weight: 500;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--caramel-light);
}

.footer-legal-sep {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1;
}

/* ---- Scroll to Top ---- */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--caramel);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(200, 149, 108, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
  transition: transform var(--transition);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top:hover {
  background: var(--caramel-dark);
  box-shadow: 0 10px 32px rgba(200, 149, 108, 0.5);
  transform: translateY(-4px) scale(1);
}

.scroll-top:hover svg {
  transform: translateY(-2px);
}

.scroll-top:active {
  transform: translateY(-1px) scale(0.96);
}

body.has-cookie-banner .scroll-top {
  bottom: 120px;
}

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  padding: 16px;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease, visibility 0.5s ease;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-banner-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--caramel-pale);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cookie-banner-content {
  flex: 1;
  min-width: 0;
}

.cookie-banner-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.cookie-banner-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--caramel-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.cookie-banner-text a:hover {
  color: var(--caramel);
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.cookie-btn-accept {
  background: var(--caramel);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background: var(--caramel-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 149, 108, 0.35);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--text-muted);
  border: 2px solid var(--caramel-pale);
}

.cookie-btn-decline:hover {
  border-color: var(--caramel-light);
  color: var(--text-dark);
  background: var(--cream);
}

/* ---- Legal / Inner Pages ---- */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 64px) 0 64px;
  background: linear-gradient(135deg, var(--caramel-dark) 0%, var(--caramel) 55%, var(--caramel-light) 100%);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: repeating-linear-gradient(
    45deg,
    var(--white) 0,
    var(--white) 1px,
    transparent 1px,
    transparent 24px
  );
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.page-hero .section-label {
  color: rgba(255, 255, 255, 0.85);
  justify-content: center;
}

.page-hero .section-label::before {
  background: var(--caramel-light);
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}

.legal-page {
  padding: 80px 0 100px;
  background: var(--white);
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--caramel-pale);
}

.legal-block {
  margin-bottom: 40px;
}

.legal-block:last-child {
  margin-bottom: 0;
}

.legal-block h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.legal-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block ul {
  list-style: none;
  margin: 12px 0 14px;
  padding: 0;
}

.legal-block ul li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 8px;
}

.legal-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--caramel);
  border-radius: 50%;
  transform: translateY(-50%);
}

.legal-block a {
  color: var(--caramel-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.legal-block a:hover {
  color: var(--caramel);
}

.legal-contact-box {
  margin-top: 16px;
  padding: 24px 28px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--caramel-pale);
}

.legal-contact-box p {
  margin-bottom: 6px;
}

.legal-contact-box p:last-child {
  margin-bottom: 0;
}

/* ---- FAQs Page ---- */
.faqs-page {
  padding: 80px 0 100px;
  background: var(--cream);
}

.faqs-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.faqs-header .section-desc {
  margin: 0 auto;
}

.faqs-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--caramel-pale);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item.open {
  border-color: var(--caramel-light);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--caramel-dark);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--caramel);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  padding: 0 26px 22px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin: 0;
}

.faq-answer-inner a {
  color: var(--caramel-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.faq-answer-inner a:hover {
  color: var(--caramel);
}

.faqs-cta {
  max-width: 820px;
  margin: 56px auto 0;
  padding: 36px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--caramel-pale);
  text-align: center;
}

.faqs-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.faqs-cta p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ---- Contact Page ---- */
.contact-page {
  padding: 80px 0 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}

.contact-info-block {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.contact-info-block .section-desc {
  margin-bottom: 32px;
}

.contact-details-list {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-detail-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--caramel-pale);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-detail-card:hover {
  border-color: var(--caramel-light);
  box-shadow: var(--shadow-sm);
}

.contact-detail-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--caramel-pale);
  border-radius: var(--radius-sm);
  color: var(--caramel-dark);
}

.contact-detail-card-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail-card h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--caramel-dark);
  margin-bottom: 4px;
}

.contact-detail-card p,
.contact-detail-card a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.contact-detail-card a:hover {
  color: var(--caramel-dark);
}

.contact-hours-box {
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--caramel-pale);
}

.contact-hours-box h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--caramel-dark);
  margin-bottom: 14px;
}

.contact-hours-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-hours-box li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--caramel-pale);
  font-size: 0.85rem;
}

.contact-hours-box li:last-child {
  border-bottom: none;
}

.contact-hours-box .day {
  color: var(--text-muted);
}

.contact-hours-box .time {
  color: var(--caramel-dark);
  font-weight: 500;
}

.contact-form-block {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--caramel-pale);
  box-shadow: var(--shadow-sm);
}

.contact-form-block h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form-block > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dark);
}

.form-group label span {
  color: var(--caramel);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1px solid var(--caramel-pale);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--caramel);
  box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #c45c5c;
}

.form-error {
  font-size: 0.75rem;
  color: #c45c5c;
  display: none;
}

.form-group.error .form-error {
  display: block;
}

.contact-form .btn-primary {
  width: fit-content;
  border: none;
  cursor: pointer;
  margin-top: 4px;
}

/* ---- Form Modals ---- */
.form-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(44, 36, 22, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.form-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 1201;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.form-modal.open {
  opacity: 1;
  visibility: visible;
}

.form-modal-box {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--caramel-pale);
  box-shadow: var(--shadow-lg);
  padding: 40px 36px 36px;
  text-align: center;
  transform: scale(0.92) translateY(16px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-modal.open .form-modal-box {
  transform: scale(1) translateY(0);
}

.form-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.form-modal-close:hover {
  background: var(--caramel-pale);
  color: var(--text-dark);
}

.form-modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.form-modal-icon svg {
  width: 32px;
  height: 32px;
}

.form-modal-icon-success {
  background: var(--caramel-pale);
  color: var(--caramel-dark);
}

.form-modal-icon-error {
  background: #f8e8e8;
  color: #b85454;
}

.form-modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.form-modal-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.form-modal-btn {
  border: none;
  cursor: pointer;
  margin: 0 auto;
}

.contact-map-section {
  padding: 64px 0 100px;
  background: var(--cream);
}

.contact-map-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 36px;
}

.contact-map-header .section-desc {
  margin: 0 auto;
}

.contact-map-wrap {
  max-width: 1040px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 420px;
  background: var(--caramel-pale);
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(0.85) sepia(0.15);
}

/* ---- Delivery Page ---- */
.delivery-intro {
  padding: 80px 0;
  background: var(--cream);
}

.delivery-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.delivery-intro-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.delivery-intro-visual img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.delivery-intro-visual:hover img {
  transform: scale(1.04);
}

.delivery-options {
  padding: 80px 0;
  background: var(--white);
}

.delivery-options-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.delivery-options-header .section-desc {
  margin: 0 auto;
}

.delivery-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.delivery-option-card {
  padding: 36px 28px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.delivery-option-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--caramel), var(--caramel-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.delivery-option-card:hover {
  border-color: var(--caramel-pale);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.delivery-option-card:hover::after {
  transform: scaleX(1);
}

.delivery-option-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-md);
  color: var(--caramel);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.delivery-option-icon svg {
  width: 24px;
  height: 24px;
}

.delivery-option-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.delivery-option-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.delivery-coverage {
  padding: 80px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.delivery-coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.delivery-zone-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.delivery-zone-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--caramel-pale);
  transition: border-color var(--transition), transform var(--transition);
}

.delivery-zone-item:hover {
  border-color: var(--caramel);
  transform: translateX(6px);
}

.delivery-zone-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: var(--caramel);
  border-radius: 50%;
}

.delivery-zone-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.delivery-coverage-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.delivery-coverage-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.delivery-coverage-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 10px 18px;
  background: var(--caramel);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.delivery-handling {
  padding: 80px 0;
  background: var(--white);
}

.delivery-handling-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.delivery-handling-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.delivery-handling-visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.delivery-handling-points {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.delivery-handling-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.delivery-handling-point-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--caramel-pale);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--caramel-dark);
}

.delivery-handling-point h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.delivery-handling-point p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.delivery-factors {
  padding: 80px 0;
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.75);
}

.delivery-factors-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}

.delivery-factors-header .section-label {
  color: var(--caramel-light);
  justify-content: center;
}

.delivery-factors-header .section-label::before {
  background: var(--caramel-light);
}

.delivery-factors-header .section-title {
  color: var(--white);
}

.delivery-factors-header .section-desc {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto;
}

.delivery-factors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.delivery-factor-card {
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}

.delivery-factor-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 149, 108, 0.35);
}

.delivery-factor-card svg {
  width: 28px;
  height: 28px;
  color: var(--caramel-light);
  margin-bottom: 14px;
}

.delivery-factor-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.delivery-factor-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

.delivery-collection {
  padding: 80px 0;
  background: var(--cream);
}

.delivery-collection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.delivery-collection-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.delivery-collection-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.delivery-collection-steps {
  counter-reset: collect-step;
  display: grid;
  gap: 0;
  margin-top: 28px;
}

.delivery-collection-step {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--caramel-pale);
}

.delivery-collection-step:last-child {
  border-bottom: none;
}

.delivery-collection-step::before {
  counter-increment: collect-step;
  content: counter(collect-step, decimal-leading-zero);
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--caramel-pale);
  line-height: 1;
  padding-top: 2px;
}

.delivery-collection-step h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.delivery-collection-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- Products Page ---- */
.products-intro {
  padding: 80px 0;
  background: var(--cream);
}

.products-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.products-intro-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.products-intro-visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.products-intro-visual:hover img {
  transform: scale(1.04);
}

.products-intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.products-stat {
  padding: 20px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--caramel-pale);
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.products-stat:hover {
  border-color: var(--caramel-light);
  box-shadow: var(--shadow-sm);
}

.products-stat-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--caramel-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.products-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

.products-catalogue {
  padding: 80px 0;
  background: var(--white);
}

.products-catalogue-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.products-catalogue-header .section-desc {
  margin: 0 auto;
}

.products-catalogue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.product-range-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--caramel-pale);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.product-range-card:hover {
  border-color: var(--caramel-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-range-card-image {
  overflow: hidden;
}

.product-range-card-image img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-range-card:hover .product-range-card-image img {
  transform: scale(1.06);
}

.product-range-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-range-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--caramel-dark);
  background: var(--caramel-pale);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
  width: fit-content;
}

.product-range-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.product-range-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.product-range-list {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-range-list span {
  font-size: 0.7rem;
  padding: 4px 10px;
  background: var(--white);
  border-radius: 50px;
  color: var(--text-muted);
  border: 1px solid var(--caramel-pale);
}

.products-specs {
  padding: 80px 0;
  background: var(--cream);
}

.products-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.products-specs-cards {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.products-spec-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--caramel-pale);
  transition: border-color var(--transition), transform var(--transition);
}

.products-spec-card:hover {
  border-color: var(--caramel);
  transform: translateX(6px);
}

.products-spec-card-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--caramel-pale);
  border-radius: var(--radius-sm);
  color: var(--caramel-dark);
}

.products-spec-card-icon svg {
  width: 20px;
  height: 20px;
}

.products-spec-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.products-spec-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.products-specs-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.products-specs-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.products-ordering {
  padding: 80px 0;
  background: var(--white);
}

.products-ordering-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.products-ordering-header .section-desc {
  margin: 0 auto;
}

.products-ordering-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.products-ordering-flow::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--caramel-light);
  z-index: 0;
}

.products-order-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.products-order-step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 2px solid var(--caramel);
  border-radius: 50%;
  color: var(--caramel-dark);
  transition: background var(--transition), color var(--transition);
}

.products-order-step:hover .products-order-step-icon {
  background: var(--caramel);
  color: var(--white);
}

.products-order-step-icon svg {
  width: 28px;
  height: 28px;
}

.products-order-step h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.products-order-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.products-trade {
  padding: 80px 0;
  background: var(--text-dark);
}

.products-trade-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.products-trade-content .section-label {
  color: var(--caramel-light);
}

.products-trade-content .section-label::before {
  background: var(--caramel-light);
}

.products-trade-content .section-title {
  color: var(--white);
}

.products-trade-content .section-desc {
  color: rgba(255, 255, 255, 0.65);
}

.products-trade-benefits {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.products-trade-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: background var(--transition), border-color var(--transition);
}

.products-trade-benefit:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 149, 108, 0.3);
}

.products-trade-benefit svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--caramel-light);
}

.products-trade-benefit span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.products-trade-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.products-trade-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ---- About Page ---- */
.about-mission {
  padding: 80px 0;
  background: var(--cream);
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-mission-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-mission-visual img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-mission-visual:hover img {
  transform: scale(1.04);
}

.about-mission-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 10px 18px;
  background: var(--caramel);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-pillars {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.about-pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--caramel-pale);
  transition: border-color var(--transition), transform var(--transition);
}

.about-pillar:hover {
  border-color: var(--caramel-light);
  transform: translateX(6px);
}

.about-pillar-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--caramel-pale);
  border-radius: 50%;
  color: var(--caramel-dark);
}

.about-pillar-icon svg {
  width: 18px;
  height: 18px;
}

.about-pillar h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.about-pillar p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-facility {
  padding: 80px 0;
  background: var(--white);
}

.about-facility-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.about-facility-header .section-desc {
  margin: 0 auto;
}

.about-facility-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
}

.about-facility-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  grid-row: span 2;
}

.about-facility-main img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.about-facility-card {
  padding: 32px 28px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--caramel-pale);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-facility-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-md);
  color: var(--caramel);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.about-facility-card-icon svg {
  width: 22px;
  height: 22px;
}

.about-facility-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.about-facility-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.about-values {
  padding: 80px 0;
  background: var(--text-dark);
}

.about-values-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.about-values-header .section-label {
  color: var(--caramel-light);
  justify-content: center;
}

.about-values-header .section-label::before {
  background: var(--caramel-light);
}

.about-values-header .section-title {
  color: var(--white);
}

.about-values-header .section-desc {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-value-card {
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.about-value-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(200, 149, 108, 0.35);
  transform: translateY(-6px);
}

.about-value-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--caramel-pale);
  line-height: 1;
  margin-bottom: 16px;
}

.about-value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.about-value-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

.about-clients {
  padding: 80px 0;
  background: var(--cream);
}

.about-clients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-clients-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-clients-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-clients-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.about-client-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--caramel-pale);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.about-client-item:hover {
  border-color: var(--caramel);
  box-shadow: var(--shadow-sm);
}

.about-client-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--caramel);
}

.about-client-item span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
}

.about-presence {
  padding: 80px 0;
  background: var(--white);
}

.about-presence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-presence-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-presence-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-presence-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
}

.about-presence-caption h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.about-presence-caption p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.about-presence-points {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.about-presence-point {
  padding-left: 20px;
  border-left: 3px solid var(--caramel);
}

.about-presence-point h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.about-presence-point p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-standards {
  padding: 80px 0;
  background: var(--cream);
}

.about-standards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-standards-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-standards-visual img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.about-standards-list {
  display: grid;
  gap: 0;
  margin-top: 24px;
}

.about-standards-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--caramel-pale);
}

.about-standards-item:last-child {
  border-bottom: none;
}

.about-standards-item svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--caramel);
  margin-top: 2px;
}

.about-standards-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.about-standards-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- Services Page ---- */
.services-page {
  padding: 80px 0 100px;
  background: var(--cream);
}

.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.services-header .section-desc {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--caramel-pale);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--caramel-light);
}

.service-card-image {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--caramel-dark);
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--caramel);
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  align-self: flex-start;
}

.service-card-btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.service-card-btn:hover {
  background: var(--caramel);
  color: var(--white);
  transform: translateY(-2px);
}

.service-card-btn:hover svg {
  transform: translateX(4px);
}

/* ---- Service Modal ---- */
.service-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(44, 36, 22, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.service-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 1201;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.service-modal.open {
  opacity: 1;
  visibility: visible;
}

.service-modal-box {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: calc(100vh - 48px);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--caramel-pale);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.92) translateY(16px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-modal.open .service-modal-box {
  transform: scale(1) translateY(0);
}

.service-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), color var(--transition);
}

.service-modal-close:hover {
  background: var(--white);
  color: var(--text-dark);
}

.service-modal-image-wrap {
  flex-shrink: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.service-modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-modal-content {
  padding: 32px 36px 36px;
  overflow-y: auto;
}

.service-modal-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
  padding-right: 36px;
}

.service-modal-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.service-modal-body p {
  margin-bottom: 14px;
}

.service-modal-body p:last-child {
  margin-bottom: 0;
}

.service-modal-body ul {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
}

.service-modal-body li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.875rem;
  line-height: 1.65;
}

.service-modal-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--caramel);
  border-radius: 50%;
}

.service-modal-cta {
  margin-top: 28px;
  border: none;
  text-decoration: none;
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-item:nth-child(2) {
    border-right: none;
  }

  .highlight-item:nth-child(3),
  .highlight-item:nth-child(4) {
    border-top: 1px solid var(--caramel-pale);
  }

  .about-grid,
  .supply-grid,
  .partners-inner,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-float-card {
    right: 16px;
    bottom: 16px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quality-grid .quality-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

  .partners-visual {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > :first-child {
    grid-column: span 2;
  }

  .about-content,
  .supply-content,
  .partners-content,
  .location-info,
  .categories-header,
  .quality-header {
    text-align: center;
  }

  .about-content .section-desc,
  .supply-content .section-desc,
  .partners-content .section-desc,
  .location-info .section-desc,
  .categories-header .section-desc,
  .quality-header .section-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .section-label {
    justify-content: center;
  }

  .contact-info-block,
  .contact-map-header {
    text-align: center;
  }

  .contact-info-block .section-desc,
  .contact-map-header .section-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .delivery-intro-grid,
  .delivery-coverage-grid,
  .delivery-handling-grid,
  .delivery-collection-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .delivery-options-grid {
    grid-template-columns: 1fr 1fr;
  }

  .delivery-factors-grid {
    grid-template-columns: 1fr 1fr;
  }

  .delivery-intro-content,
  .delivery-coverage-content,
  .delivery-handling-content,
  .delivery-collection-content,
  .delivery-options-header,
  .delivery-factors-header {
    text-align: center;
  }

  .delivery-intro-content .section-desc,
  .delivery-coverage-content .section-desc,
  .delivery-handling-content .section-desc,
  .delivery-collection-content .section-desc,
  .delivery-options-header .section-desc,
  .delivery-factors-header .section-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .delivery-options-header .section-label,
  .delivery-factors-header .section-label,
  .delivery-intro-content .section-label,
  .delivery-coverage-content .section-label,
  .delivery-handling-content .section-label,
  .delivery-collection-content .section-label {
    justify-content: center;
  }

  .delivery-coverage-visual,
  .delivery-collection-visual {
    order: -1;
  }

  .products-intro-grid,
  .products-specs-grid,
  .products-trade-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .products-catalogue-grid {
    grid-template-columns: 1fr;
  }

  .products-ordering-flow {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .products-ordering-flow::before {
    display: none;
  }

  .products-intro-content,
  .products-catalogue-header,
  .products-specs-content,
  .products-ordering-header,
  .products-trade-content {
    text-align: center;
  }

  .products-intro-content .section-desc,
  .products-catalogue-header .section-desc,
  .products-specs-content .section-desc,
  .products-ordering-header .section-desc,
  .products-trade-content .section-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .products-intro-content .section-label,
  .products-catalogue-header .section-label,
  .products-specs-content .section-label,
  .products-ordering-header .section-label,
  .products-trade-content .section-label {
    justify-content: center;
  }

  .products-intro-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-specs-visual,
  .products-intro-visual {
    order: -1;
  }

  .about-mission-grid,
  .about-clients-grid,
  .about-presence-grid,
  .about-standards-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-facility-grid {
    grid-template-columns: 1fr;
  }

  .about-facility-main {
    grid-row: auto;
    min-height: 320px;
  }

  .about-facility-main img {
    min-height: 320px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-mission-content,
  .about-facility-header,
  .about-values-header,
  .about-clients-content,
  .about-presence-content,
  .about-standards-content {
    text-align: center;
  }

  .about-mission-content .section-desc,
  .about-facility-header .section-desc,
  .about-values-header .section-desc,
  .about-clients-content .section-desc,
  .about-presence-content .section-desc,
  .about-standards-content .section-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .about-mission-content .section-label,
  .about-facility-header .section-label,
  .about-values-header .section-label,
  .about-clients-content .section-label,
  .about-presence-content .section-label,
  .about-standards-content .section-label {
    justify-content: center;
  }

  .about-clients-visual,
  .about-mission-visual,
  .about-presence-visual,
  .about-standards-visual {
    order: -1;
  }

  .about-pillar:hover {
    transform: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .service-card:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-desktop,
  .header-cta-desktop {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-bg img {
    transform: none;
    animation: none;
  }

  .reveal-left,
  .reveal-right {
    transform: translateY(32px);
  }

  .reveal-left.visible,
  .reveal-right.visible {
    transform: translateY(0);
  }

  .supply-step {
    transform: translateY(20px);
  }

  .supply-step.visible {
    transform: translateY(0);
  }

  .hero-content {
    padding: 60px 0;
  }

  .hero-scroll {
    display: none;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .highlight-item {
    border-right: none;
    border-bottom: 1px solid var(--caramel-pale);
  }

  .highlight-item:last-child {
    border-bottom: none;
  }

  .about-image-main img {
    height: 320px;
  }

  .about-float-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
    max-width: 100%;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .quality-grid {
    grid-template-columns: 1fr;
  }

  .quality-grid .quality-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  .partners-list {
    grid-template-columns: 1fr;
  }

  .partners-visual {
    grid-template-columns: 1fr;
  }

  .partners-visual-card:first-child {
    grid-row: auto;
  }

  .supply-visual img {
    height: 320px;
  }

  .cta-inner {
    padding: 48px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .location-details {
    align-items: center;
  }

  .location-detail {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .footer-brand,
  .footer-contact,
  .footer-hours {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-about {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-contact-item svg {
    margin-top: 0;
  }

  .footer-hours-list {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .about,
  .categories,
  .supply,
  .quality,
  .partners,
  .location {
    padding: 72px 0;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
  }

  .scroll-top svg {
    width: 20px;
    height: 20px;
  }

  body.has-cookie-banner .scroll-top {
    bottom: 160px;
  }

  .cookie-banner {
    padding: 12px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 20px;
  }

  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  .page-hero {
    padding: calc(var(--header-height) + 48px) 0 48px;
  }

  .legal-page {
    padding: 56px 0 72px;
  }

  .legal-intro {
    margin-bottom: 36px;
    padding-bottom: 36px;
  }

  .legal-block h2 {
    font-size: 1.4rem;
  }

  .faqs-page {
    padding: 56px 0 72px;
  }

  .faqs-header {
    margin-bottom: 40px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 0.9rem;
  }

  .faq-answer-inner p {
    padding: 0 20px 18px;
  }

  .faqs-cta {
    margin-top: 40px;
    padding: 28px 20px;
  }

  .contact-page {
    padding: 56px 0 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-info-block {
    position: static;
    text-align: center;
  }

  .contact-info-block .section-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-detail-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-form-block {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .contact-map-section {
    padding: 48px 0 72px;
  }

  .contact-map-wrap {
    min-height: 320px;
  }

  .contact-map-wrap iframe {
    min-height: 320px;
  }

  .form-modal-box {
    padding: 32px 24px 28px;
  }

  .form-modal-title {
    font-size: 1.3rem;
  }

  .delivery-options-grid,
  .delivery-factors-grid {
    grid-template-columns: 1fr;
  }

  .delivery-intro,
  .delivery-options,
  .delivery-coverage,
  .delivery-handling,
  .delivery-factors,
  .delivery-collection {
    padding: 56px 0;
  }

  .delivery-intro-visual img,
  .delivery-handling-visual img {
    height: 280px;
  }

  .delivery-coverage-visual img,
  .delivery-collection-visual img {
    height: 260px;
  }

  .delivery-zone-item:hover {
    transform: none;
  }

  .products-intro,
  .products-catalogue,
  .products-specs,
  .products-ordering,
  .products-trade {
    padding: 56px 0;
  }

  .products-intro-stats {
    grid-template-columns: 1fr;
  }

  .product-range-card {
    grid-template-columns: 1fr;
  }

  .product-range-card-image img {
    min-height: 180px;
    max-height: 200px;
  }

  .products-ordering-flow {
    grid-template-columns: 1fr;
  }

  .products-intro-visual img,
  .products-specs-visual img,
  .products-trade-visual img {
    height: 260px;
  }

  .products-spec-card:hover {
    transform: none;
  }

  .about-mission,
  .about-facility,
  .about-values,
  .about-clients,
  .about-presence,
  .about-standards {
    padding: 56px 0;
  }

  .about-clients-list {
    grid-template-columns: 1fr;
  }

  .about-mission-visual img,
  .about-clients-visual img,
  .about-presence-visual img,
  .about-standards-visual img {
    height: 260px;
  }

  .services-page {
    padding: 56px 0 72px;
  }

  .services-header {
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card-body {
    padding: 24px 20px 28px;
  }

  .service-card-btn {
    width: 100%;
    justify-content: center;
  }

  .service-modal-content {
    padding: 24px 20px 28px;
  }

  .service-modal-title {
    font-size: 1.35rem;
  }

  .service-modal-cta {
    width: 100%;
    justify-content: center;
  }
}
