:root {
  --bg: #05040a;
  --bg-alt: #0e0b16;
  --bg-light: #faf6f0;
  --accent: #f99b1d;
  --accent-deep: #e2482c;
  --accent-soft: #ffe0a3;
  --primary: #0b5bb5;
  --text: #1c1b20;
  --muted: #6b6a73;
  --card: #ffffff;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --shadow-soft: 0 20px 45px rgba(15, 14, 26, 0.2);
  --shadow-subtle: 0 12px 25px rgba(0, 0, 0, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 72px 0 0; /* leave space for fixed header */
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #fff3d7 0, #fff 40%, #fdf4ea 80%);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

video {
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 20px;
  min-width: 0;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  width: 100%;
  min-width: 0;
  backdrop-filter: blur(18px);
  background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.7),
      transparent
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
  min-width: 0;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-shrink: 0;
}

.logo-image {
  height: 42px;
  width: auto;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-name {
  font-weight: 600;
  font-size: 1.02rem;
}

.logo-tagline {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Mobile menu toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.nav-toggle:hover,
.nav-toggle:focus {
  background: rgba(11, 91, 181, 0.08);
  outline: none;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 0.9rem;
}

.nav a {
  position: relative;
  padding-block: 4px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transition: width 0.2s ease-out;
}

.nav a:hover::after {
  width: 100%;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    filter 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 22px 40px rgba(226, 116, 39, 0.4);
}

.btn-small {
  padding: 8px 18px;
  font-size: 0.82rem;
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 4px;
  font-size: 0.86rem;
  color: var(--primary);
}

.ghost-link::after {
  content: "↗";
  font-size: 0.8rem;
}

/* HERO */
.hero {
  width: 100%;
  min-width: 0;
  padding: 40px 0 70px;
}

.hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: center;
  min-width: 0;
}

.hero-copy,
.hero-media {
  min-width: 0;
}

.eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
}

.hero h1 {
  margin: 8px 0 14px;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.05;
  font-family: "Playfair Display", serif;
}

.highlight {
  background: linear-gradient(120deg, var(--accent), var(--accent-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 460px;
  font-size: 0.95rem;
  color: var(--muted);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 10px;
  font-size: 0.8rem;
}

.hero-stats .stat-number {
  display: block;
  font-weight: 600;
  color: var(--accent-deep);
}

.hero-stats .stat-label {
  color: var(--muted);
}

.hero-media {
  position: relative;
}

.hero-card {
  background: radial-gradient(circle at top, #fffaf0, #ffe1b5);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.main-packshot img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 10px);
}

.hero-note {
  position: absolute;
  right: -4px;
  bottom: -12px;
  padding: 10px 16px;
  background: #ffffff;
  font-size: 0.78rem;
  color: var(--muted);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
}

/* SECTIONS */
.section {
  width: 100%;
  min-width: 0;
  padding: 70px 0;
}

.section-light {
  background: var(--bg-light);
}

.section-accent {
  background: linear-gradient(
    135deg,
    rgba(249, 155, 29, 0.06),
    rgba(11, 91, 181, 0.04)
  );
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin: 8px 0 12px;
}

.section-header p {
  font-size: 0.94rem;
  color: var(--muted);
}

/* PRODUCTS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  min-width: 0;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.product-media {
  padding: 10px;
  background: radial-gradient(circle at top, #fff7e2, #ffe3b9);
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: auto;
}

.product-media-placeholder {
  display: grid;
  place-items: center;
  padding: 24px 10px;
  background: radial-gradient(circle at top, #fff3d0, #ffeedd);
  color: #b76a16;
  font-weight: 600;
  font-size: 0.9rem;
}

.product-body {
  padding: 16px 18px 18px;
  font-size: 0.88rem;
}

.product-body h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.product-body p {
  margin: 0 0 10px;
  color: var(--muted);
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pill-list li {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(249, 155, 29, 0.09);
  color: #b86819;
  font-size: 0.76rem;
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  min-width: 0;
}

.process-grid h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  margin-top: 8px;
}

.process-grid > div p {
  font-size: 0.94rem;
  color: var(--muted);
}

.steps {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(249, 155, 29, 0.4);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-deep);
}

.step h3 {
  margin: 0 0 4px;
  font-size: 0.98rem;
}

.step p {
  margin: 0;
  font-size: 0.86rem;
}

.process-panel {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.process-highlight {
  background: radial-gradient(circle at top left, #ffe8c8, #ffd6b9);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-subtle);
  font-size: 0.9rem;
}

.process-highlight h3 {
  margin-top: 0;
  margin-bottom: 6px;
}

/* HERITAGE */
.heritage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: 40px;
  align-items: flex-start;
  min-width: 0;
}

.heritage-grid h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
}

.heritage-grid p {
  font-size: 0.94rem;
  color: var(--muted);
}

.heritage-grid p + p {
  margin-top: 10px;
}

/* AREAS SERVED – Local SEO */
.areas-list {
  max-width: 720px;
  margin: 0 auto;
}
.areas-intro {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.65;
}
.areas-intro a {
  color: var(--primary);
  font-weight: 500;
}

/* MEDIA GRID */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.media-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  background: #000;
}

.media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-watch-link {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  text-align: center;
}
.media-watch-link a {
  color: var(--primary);
  font-weight: 500;
}

/* WATCH PAGE – video as primary content for indexing */
section.watch-page {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.watch-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 0.5rem;
  text-align: center;
}
.watch-description {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}
.watch-player {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #000;
}
.watch-player video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.watch-back {
  text-align: center;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.watch-back a + a {
  margin-left: 0.25rem;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
  min-width: 0;
}

.contact-grid h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-top: 8px;
}

.contact-grid p {
  font-size: 0.94rem;
  color: var(--muted);
}

.contact-info {
  margin-top: 14px;
  font-size: 0.88rem;
}

.contact-phone {
  margin: 0 0 4px;
  font-weight: 500;
}

.contact-phone a {
  color: var(--primary);
  font-weight: 600;
}

.contact-address {
  margin: 0;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.contact-map {
  margin-top: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  background: #f2f3f6;
  min-height: 220px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  box-shadow: none;
  border: 1px solid rgba(11, 91, 181, 0.3);
}

.btn-outline:hover {
  background: rgba(11, 91, 181, 0.06);
  box-shadow: none;
}

.contact-form {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 22px 20px 20px;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.form-row label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
}

.form-row input,
.form-row textarea {
  border-radius: 10px;
  border: 1px solid rgba(12, 13, 33, 0.08);
  padding: 10px 12px;
  font-size: 16px; /* avoids iOS zoom on focus */
  font-family: inherit;
  resize: vertical;
  background: #fafafa;
  min-height: 44px;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(11, 91, 181, 0.25);
  background: #ffffff;
}

.form-note {
  margin-top: 8px;
  font-size: 0.76rem;
  color: var(--muted);
}

/* FOOTER */
.site-footer {
  width: 100%;
  min-width: 0;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  background: #fffdf9;
  font-size: 0.8rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.footer-credit {
  opacity: 0.9;
}

.nav-backdrop {
  display: none;
}

/* RESPONSIVE – tablet and below */
@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
    z-index: 31;
    position: relative;
  }

  .nav-backdrop {
    display: block; /* override global hide on mobile */
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 29;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .nav-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(280px, 85vw);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 80px 24px 24px;
    background: #fff;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    z-index: 30;
    transform: translateX(100%);
    transition: transform 0.25s ease, visibility 0.25s ease;
    visibility: hidden;
  }

  body.nav-open .nav {
    transform: translateX(0);
    visibility: visible;
  }

  .nav a {
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav a::after {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .hero-media {
    order: -1;
  }

  .hero-note {
    position: static;
    margin-top: 12px;
    text-align: center;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .process-grid,
  .heritage-grid,
  .media-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .section {
    padding: 48px 0;
  }

  .section-header h2,
  .process-grid h2,
  .heritage-grid h2,
  .contact-grid h2 {
    font-size: 1.5rem;
  }

  .hero {
    padding: 24px 0 48px;
  }
}

/* Mobile – small phones */
@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .container {
    padding-inline: 16px;
    width: 100%;
    max-width: 100%;
  }

  .section,
  .hero {
    width: 100%;
    min-width: 0;
  }

  .header-inner {
    padding-block: 12px;
  }

  .logo-image {
    height: 36px;
  }

  .logo-name {
    font-size: 0.9rem;
  }

  .logo-tagline {
    font-size: 0.7rem;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
    margin: 6px 0 10px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin: 18px 0;
  }

  .hero-actions .btn,
  .hero-actions .ghost-link {
    justify-content: center;
    min-height: 44px;
    padding: 12px 20px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
  }

  .product-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .product-body {
    padding: 14px 16px 16px;
  }

  .media-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .media-item video {
    min-height: 200px;
    object-fit: cover;
  }

  .section {
    padding: 36px 0;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-header h2 {
    font-size: 1.35rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding-block: 16px;
  }

  .contact-form {
    padding: 18px 16px 16px;
  }

  .btn {
    min-height: 44px;
    padding: 12px 24px;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .container {
    padding-inline: 14px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .section-header h2,
  .process-grid h2,
  .heritage-grid h2 {
    font-size: 1.25rem;
  }
}

/* Prevent horizontal scroll on mobile */
html {
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

