* { box-sizing: border-box; }

body {
    margin: 0;
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #111;
    background: #fff;
}

h1, h2, h3, .section-title {
  font-family: "Bebas Neue", Inter, system-ui, sans-serif;
  letter-spacing: 1px;
}

.hero-content h1 {
  font-family: "Bebas Neue", Inter, system-ui, sans-serif;
  letter-spacing: 2px;
}

main {
    padding-top: 76px;
}

.home main {
    padding-top: 0;
}


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px; /* or 1600px if you want it very wide */
    margin: 0 auto;
    padding: 0 28px;
}


/* --- HEADER (overlay + scroll shrink) --- */
.header {
    position: fixed;            /* fixed = stays while you scroll */
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;

    /* TOP OF PAGE LOOK */
    background: transparent;
    transition: background 200ms ease, padding 200ms ease, box-shadow 200ms ease, backdrop-filter 200ms ease;
}

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

    /* TALLER AT TOP */
    padding: 26px 0;
    transition: padding 200ms ease;
}

.brand {
    text-decoration: none;
    color: #fff;               /* white on hero */
    font-weight: 800;
    letter-spacing: 0.5px;
}

.nav a {
    text-decoration: none;
    color: rgba(255,255,255,0.95); /* white links on hero */
    margin-left: 18px;
    font-weight: 600;
    font-size: 22px;
    transition: color 200ms ease;
}

.nav a:hover {
    text-decoration: underline;
}

/* --- SCROLLED STATE --- */
.header.header--scrolled {
    background: rgba(20, 20, 20, 0.85); /* dark grey overlay */
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.header.header--scrolled .header-inner {
    padding: 12px 0;  /* SHRINK height */
}

.header.header--scrolled .brand,
.header.header--scrolled .nav a {
    color: rgba(255,255,255,0.95);
}

/* --- HAMBURGER BUTTON --- */
.nav-toggle {
  display: none;            /* hidden on desktop */
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
}

.nav-toggle:focus {
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: 3px;
}

.nav-toggle-bar {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: rgba(255,255,255,0.95);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

/* keep hamburger visible when scrolled */
.header.header--scrolled .nav-toggle-bar {
  background: rgba(255,255,255,0.95);
}

/* --- MOBILE MENU BEHAVIOR --- */
@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;  /* show hamburger on mobile */
  }

  /* hide links by default */
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    display: none;
    flex-direction: column;
    gap: 0;

    background: rgba(20, 20, 20, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 14px 18px;
  }

  .nav a {
    margin-left: 0;
    padding: 12px 6px;
    font-size: 18px;
  }

  /* when menu is open */
  .header.nav-open .nav {
    display: flex;
  }

  /* optional: animate hamburger into an "X" */
  .header.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .header.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .header.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Prevent page scroll when mobile menu is open */
    body.nav-lock {
      overflow: hidden;
    }
      
    .header-inner {
      padding-right: 24px; /* gives breathing room on the right */
    }
  
}

@media (max-width: 900px) {
  .nav {
    padding: 14px 22px;
  }
}

.nav-toggle {
  margin-right: 18px; /* <-- move hamburger left */
}


.footer {
    border-top: 1px solid #e6e6e6;
    margin-top: 60px;
    padding: 24px 0;
    background: #fafafa;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.muted { color: #666; }
.section { padding: 50px 0; }


/* --- HERO SLIDER --- */
.hero {
    width: 100%;
}

.hero-swiper {
    width: 100%;
    height: 520px;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    margin: 0 0 10px;
    font-size: 44px;
    line-height: 1.1;
}

.hero-content p {
    margin: 0 0 18px;
    font-size: 18px;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background: #ffffff;
    color: #111;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.7);
    color: #fff;
    background: rgba(0,0,0,0.15);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.12);
}

/* Slightly smaller hero on phones */
@media (max-width: 700px) {
    .hero-swiper { height: 420px; }
    .hero-content h1 { font-size: 34px; }
}

.hero-swiper {
    width: 100%;
    height: calc(100vh - 70px); /* subtract approx header height */
    min-height: 620px;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
    text-align: center;
    margin: 0 auto;
}

.hero-content h1 {
    margin: 0 0 14px;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content p {
    margin: 0 0 22px;
    font-size: clamp(16px, 2vw, 28px);
    color: rgba(255,255,255,0.92);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.55)
    );
}

.hero-content {
    padding-top: 90px; /* pushes text below nav */
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;  /* centers the buttons */
}

.brand-logo {
  height: 150px;
  width: auto;
  display: block;
    transition: height 200ms ease;
}

.header.header--scrolled .brand-logo {
  height: 60px;           /* smaller after scroll */
}


/* --- HOMEPAGE SECTIONS --- */
.section {
  padding: 70px 0;
}

.section-title {
  font-size: 34px;
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.section-subtitle {
  margin: 0 0 28px;
  color: #555;
  font-size: 18px;
  max-width: 850px;
}

.section-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.card {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: #555;
  line-height: 1.45;
}

.section-dark {
  background: #101010;
  color: #fff;
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.75);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.feature {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.04);
}

.feature h3 {
  margin: 0 0 8px;
}

.feature p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.45;
}

.gallery {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
}

.section-light {
  background: #f7f7f7;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.step {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(0,0,0,0.08);
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-cta {
  background: #101010;
  color: #fff;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.cta-inner p {
  color: rgba(255,255,255,0.78);
  margin: 8px 0 0;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* dark outline button */
.btn-outline-dark {
  border: 1px solid rgba(0,0,0,0.25);
  background: transparent;
  color: #111;
}

/* responsive */
@media (max-width: 900px) {
  .cards, .features, .steps {
    grid-template-columns: 1fr;
  }

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

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.section--whatwedo {
  position: relative;
  overflow: hidden;
}

.section--whatwedo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(214,178,94,0.14), transparent 55%),
    radial-gradient(circle at 80% 40%, rgba(255,255,255,0.12), transparent 60%),
    radial-gradient(circle at 50% 90%, rgba(0,0,0,0.07), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section--whatwedo > * {
  position: relative;
  z-index: 1;
}


/* --- WHY SECTION BACKGROUND --- */
.section--why {
  position: relative;
  overflow: hidden;
  color: #fff;

  /* pick ONE of these background options */
  background:
    url("/storage/app/media/knife-cutting-board-sharpening.jpg") center/cover no-repeat;
}

/* gradient overlay so text stays readable */
.section--why::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(0,0,0,0.85) 20%,
      rgba(0,0,0,0.65) 45%,
      rgba(0,0,0,0.85) 100%
    );
  z-index: 0;
}

/* subtle gold glow accent (optional but looks premium) */
.section--why::after {
  content: "";
  position: absolute;
  inset: -120px -200px;
  background:
    radial-gradient(circle at 15% 30%, rgba(214,178,94,0.22), transparent 55%),
    radial-gradient(circle at 85% 70%, rgba(214,178,94,0.10), transparent 60%);
  z-index: 0;
  pointer-events: none;
}

/* keep actual content above the overlays */
.section--why > .container {
  position: relative;
  z-index: 1;
}

/* make feature cards look more "glass" on dark */
.section--why .feature {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 40px rgba(0,0,0,0.30);
}

.section--why .feature p {
  color: rgba(255,255,255,0.80);
}






/* --- SIMPLE PAGE HERO --- */
.page-hero {
  padding: 140px 0 60px;
  background: #0e0e0e;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(214,178,94,0.25), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.10), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-title {
  margin: 0 0 12px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-subtitle {
  margin: 0;
  max-width: 850px;
  font-size: 18px;
  color: rgba(255,255,255,0.82);
}

/* --- ABOUT TWO COLUMN --- */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-top: 10px;
}

.about-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

/* checklist */
.checklist {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.check {
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 600;
}

/* responsive */
@media (max-width: 900px) {
  .page-hero {
    padding: 120px 0 50px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .about-photo img {
    height: 320px;
  }
}













@media (max-width: 600px) {
  .container {
    padding-left: 20px;
    padding-right: 28px;
  }
}




:root {
  --swiper-theme-color: #d6b25e;
}







