:root {
  --cream: #f7dec3;
  --cream-2: #ffe9d0;
  --paper: #fffaf2;
  --espresso: #442c22;
  --espresso-2: #2d1c17;
  --cocoa: #6e4b3d;
  --muted: #7d6256;
  --cyan: #30b6e6;
  --red: #f34d54;
  --gold: #d89d5c;
  --green: #5f7844;
  --shadow: 0 26px 70px rgba(45, 28, 23, .18);
  --radius: 32px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--espresso-2);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 7%, rgba(255,255,255,.62), transparent 30%),
    radial-gradient(circle at 90% 2%, rgba(48,182,230,.15), transparent 22%),
    linear-gradient(135deg, #f6d8ba 0%, #fee7cc 45%, #f4d0ad 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(45deg, rgba(68,44,34,.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(68,44,34,.04) 25%, transparent 25%);
  background-size: 18px 18px;
  z-index: -2;
}

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

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

.container {
  width: min(var(--max), calc(100% - 38px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 50;
}

.nav-shell {
  width: min(1220px, calc(100% - 30px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 16px 12px 22px;
  border: 1px solid rgba(68,44,34,.14);
  border-radius: 999px;
  background: rgba(255, 250, 242, .82);
  box-shadow: 0 18px 44px rgba(68,44,34,.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 20px;
  background: #fff;
  padding: 4px;
}

.brand-text strong {
  display: block;
  font-size: 1.04rem;
  letter-spacing: .08em;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #52382d;
  font-weight: 800;
  font-size: .92rem;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--espresso), var(--espresso-2));
  padding: 14px 20px;
  box-shadow: 0 14px 32px rgba(68,44,34,.24);
}

.btn {
  padding: 16px 24px;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), #de343d 45%, var(--espresso));
  box-shadow: 0 18px 36px rgba(222, 52, 61, .25);
}

.btn-secondary {
  color: var(--espresso);
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(68,44,34,.16);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 136px 0 64px;
  display: grid;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  right: -170px;
  top: 80px;
  width: 520px;
  height: 760px;
  background: var(--espresso);
  border-radius: 52% 48% 43% 57% / 24% 31% 69% 76%;
  opacity: .16;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr .93fr;
  gap: 54px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 900;
  font-size: clamp(3.55rem, 7.4vw, 7.8rem);
  line-height: .88;
  letter-spacing: -.065em;
  color: var(--espresso);
  max-width: 790px;
}

.hero-copy p {
  margin: 30px 0 0;
  max-width: 640px;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.75;
  color: #5f453b;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-strip {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 700px;
  border: 1px solid rgba(68,44,34,.13);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,250,242,.72);
  box-shadow: 0 16px 40px rgba(68,44,34,.1);
}

.trust-item {
  padding: 18px;
  border-right: 1px solid rgba(68,44,34,.1);
}

.trust-item:last-child { border-right: 0; }

.trust-item strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.38rem;
  color: var(--espresso);
}

.trust-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .83rem;
  font-weight: 800;
}

.slider-card {
  position: relative;
  min-height: 650px;
  border-radius: 46px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255,250,242,.96), rgba(255,231,207,.9)),
    radial-gradient(circle at 30% 0%, rgba(255,255,255,.9), transparent 40%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(68,44,34,.12);
  overflow: hidden;
}

.slider-card::before {
  content: "";
  position: absolute;
  inset: auto -90px -140px auto;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: var(--espresso);
}

.slider-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 56px;
  width: 100%;
  height: 92px;
  background: var(--espresso);
  border-radius: 55% 45% 0 0;
  opacity: .96;
}

.hero-slide {
  position: absolute;
  inset: 24px;
  display: grid;
  align-content: center;
  opacity: 0;
  transform: translateX(28px) scale(.985);
  transition: opacity .55s ease, transform .55s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.slide-image-wrap {
  position: relative;
  z-index: 1;
  height: 420px;
  border-radius: 36px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.86), rgba(248,222,195,.1) 62%),
    linear-gradient(135deg, rgba(68,44,34,.12), rgba(255,255,255,.18));
  overflow: hidden;
}

.slide-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 26px rgba(45,28,23,.2));
}

.slide-copy {
  position: relative;
  z-index: 3;
  margin-top: 20px;
  padding: 22px 24px 86px;
  color: #fff;
}

.slide-copy h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: .96;
}

.slide-copy p {
  margin: 12px 0 0;
  max-width: 420px;
  color: rgba(255,255,255,.83);
  line-height: 1.55;
  font-weight: 800;
}

.slider-controls {
  position: absolute;
  z-index: 10;
  left: 28px;
  right: 28px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.arrow-row { display: flex; gap: 10px; }

.slider-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.13);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
}

.dots {
  display: inline-flex;
  gap: 8px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.45);
  cursor: pointer;
}

.dot.active {
  width: 30px;
  border-radius: 999px;
  background: #fff;
}

section {
  padding: 86px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  max-width: 750px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.6rem, 5.2vw, 5.4rem);
  line-height: .92;
  letter-spacing: -.045em;
  color: var(--espresso);
}

.section-head p {
  margin: 0;
  max-width: 380px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  min-height: 315px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(68,44,34,.12);
  border: 1px solid rgba(68,44,34,.12);
  isolation: isolate;
}

.product-card img {
  width: 100%;
  height: 196px;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  background: linear-gradient(135deg, #f9dec2, #ffe8ce);
  transition: transform .45s ease;
}

.product-card:hover img {
  transform: scale(1.06);
}

.product-body {
  padding: 18px;
}

.product-body h3 {
  margin: 0;
  color: #fff;
  background: var(--espresso);
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: .88rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.product-body p {
  margin: 13px 0 0;
  color: #63483d;
  font-weight: 800;
  line-height: 1.5;
  font-size: .92rem;
}

.feature-band {
  position: relative;
  overflow: hidden;
  background: var(--espresso);
  color: #fff;
  border-radius: 48px;
  padding: 54px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  box-shadow: var(--shadow);
}

.feature-band::before {
  content: "";
  position: absolute;
  left: -80px;
  top: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(48,182,230,.24);
}

.feature-band h2 {
  position: relative;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  line-height: .9;
  letter-spacing: -.04em;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.process-card {
  position: relative;
  padding: 24px;
  min-height: 170px;
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--espresso);
  background: var(--cream-2);
  font-weight: 950;
}

.process-card h3 {
  margin: 18px 0 8px;
  font-size: 1.25rem;
}

.process-card p {
  margin: 0;
  color: rgba(255,255,255,.74);
  font-weight: 700;
  line-height: 1.55;
}

.gallery-wrap {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
}

.gallery-main,
.gallery-side {
  border-radius: 42px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(68,44,34,.12);
  box-shadow: 0 18px 44px rgba(68,44,34,.1);
}

.gallery-main img,
.gallery-side img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  padding: 18px;
  background: linear-gradient(135deg, #f9dec2, #ffe8ce);
}

.gallery-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0;
}

.gallery-side img {
  min-height: 250px;
  border-bottom: 1px solid rgba(68,44,34,.1);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 28px;
  padding: 24px;
  border-radius: 48px;
  background: rgba(255,250,242,.82);
  border: 1px solid rgba(68,44,34,.12);
  box-shadow: var(--shadow);
}

.contact-info {
  padding: 32px;
}

.contact-info h2 {
  margin: 0;
  color: var(--espresso);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 6vw, 6.3rem);
  line-height: .9;
  letter-spacing: -.05em;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 22px;
  background: #fff7ed;
  color: #573d32;
  font-weight: 850;
  line-height: 1.55;
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--espresso);
  color: #fff;
}

.enquiry-box {
  padding: 32px;
  border-radius: 34px;
  background: var(--espresso);
  color: #fff;
}

.enquiry-box h3 {
  margin: 0;
  font-size: 1.65rem;
}

.form-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 15px 16px;
  color: #fff;
  background: rgba(255,255,255,.08);
  font: inherit;
  outline: none;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder { color: rgba(255,255,255,.64); }

.form-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 38px 0 50px;
  color: #6d5045;
  font-weight: 800;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.mobile-menu {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--espresso);
  color: #fff;
  font-size: 1.35rem;
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: 104px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border-radius: 28px;
    background: rgba(255,250,242,.96);
    box-shadow: var(--shadow);
  }

  .main-nav.open { display: flex; }

  .mobile-menu { display: grid; place-items: center; }

  .nav-cta { display: none; }

  .hero {
    padding-top: 126px;
  }

  .hero-grid,
  .feature-band,
  .gallery-wrap,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .slider-card {
    min-height: 590px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, var(--max)); }

  .site-header { top: 10px; }

  .nav-shell {
    min-height: 66px;
    padding: 8px 10px 8px 14px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand-text strong { font-size: .88rem; }
  .brand-text span { display: none; }

  .hero-copy h1 {
    font-size: clamp(3rem, 17vw, 4.9rem);
  }

  .trust-strip,
  .process-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(68,44,34,.1);
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 16px;
  }

  .slider-card {
    min-height: 540px;
    border-radius: 34px;
  }

  .slide-image-wrap {
    height: 310px;
  }

  .slide-copy {
    padding: 18px 18px 78px;
  }

  section { padding: 62px 0; }

  .feature-band,
  .contact-card,
  .contact-info,
  .enquiry-box {
    padding: 24px;
    border-radius: 32px;
  }
}
