/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

/* BODY = VERLAG */
body, p, li, input, button, a {
  font-family: 'Verlag', 'Source Sans 3', Georgia, sans-serif;
}

body {
  margin: 0;
  color: #333;
  line-height: 1.7;
  background: #f5ede0;
}

/* HEADLINES = CLARENDON */
h1, h2, h3, h4 {
  font-family: 'Clarendon', 'Playfair Display', Georgia, serif;
  letter-spacing: 0.5px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 24px 20px;
  z-index: 10;
}

.logo {
  width: 180px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: url("images/oven.jpg") center / cover no-repeat;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.80) 0%,
    rgba(0, 0, 0, 0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 24px;
}

.hero h1 {
  font-family: 'Clarendon', 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: 0.5px;
}

.hero p {
  font-size: clamp(15px, 2vw, 19px);
  margin: 0 0 36px;
  opacity: 0.92;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Verlag', 'Source Sans 3', Georgia, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn.primary {
  background: #8b1e2d;
  color: #fff;
}

.btn.primary:hover {
  background: #6a1621;
}

.btn.secondary {
  background: transparent;
  border: 2px solid #d4a84b;
  color: #d4a84b;
}

.btn.secondary:hover {
  background: #d4a84b;
  color: #1a0a00;
}

/* ============================================================
   SPLIT SECTIONS
   ============================================================ */
.split {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 90px 10%;
  background: #f5ede0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split img {
  width: 45%;
  flex-shrink: 0;
  border-radius: 4px;
  object-fit: cover;
  max-height: 420px;
}

.split-text {
  flex: 1;
}

.split-text h2 {
  font-family: 'Clarendon', 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  color: #1a0a00;
  margin: 0 0 18px;
  line-height: 1.2;
}

.split-text p {
  font-size: 17px;
  color: #444;
  margin: 0 0 24px;
}

/* Arrow bullet list */
.arrow-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.arrow-list li {
  font-size: 16px;
  color: #333;
  padding: 6px 0;
}

.arrow-list li::before {
  content: "► ";
  color: #8b1e2d;
  font-size: 13px;
}

/* ============================================================
   FULL-WIDTH IMAGE SECTION
   ============================================================ */
.full-image {
  position: relative;
  overflow: hidden;
}

.full-image img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

.full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.15) 60%,
    transparent 100%
  );
}

.overlay-text {
  position: absolute;
  bottom: 60px;
  left: 10%;
  color: #fff;
  z-index: 2;
}

.overlay-text h2 {
  font-family: 'Clarendon', 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3.5vw, 42px);
  margin: 0;
  line-height: 1.25;
}

.overlay-text h2.italic {
  font-style: italic;
  font-weight: 400;
}

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.who-serve {
  background: #f5ede0;
  text-align: center;
  padding: 70px 20px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.who-serve h2 {
  font-family: 'Clarendon', 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 34px);
  color: #1a0a00;
  margin: 0 0 28px;
}

.serve-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #333;
  text-transform: uppercase;
}

.serve-list span {
  padding: 0 22px;
}

.serve-list .divider {
  color: #aaa;
  padding: 0;
  font-weight: 300;
  font-size: 20px;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process {
  background: #6b1225;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.process h2 {
  font-family: 'Clarendon', 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  margin: 0 0 40px;
  letter-spacing: 1px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 50px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 16px;
}

.step-num {
  font-family: 'Clarendon', 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #e8c47a;
}

/* ============================================================
   FORM SECTION
   ============================================================ */
.form-section {
  background: #f5ede0;
  padding: 80px 20px 100px;
  text-align: center;
}

.form-section h2 {
  font-family: 'Clarendon', 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  color: #1a0a00;
  margin: 0 0 36px;
}

.form-section form {
  max-width: 820px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.form-row.full input {
  flex: 1;
}

.form-row.thirds input {
  flex: 1;
}

.form-row.submit-row {
  justify-content: center;
  margin-top: 8px;
}

.form-section input {
  padding: 13px 16px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fff;
  width: 100%;
  font-family: 'Verlag', 'Source Sans 3', Georgia, sans-serif;
  color: #333;
  transition: border-color 0.2s;
}

.form-section input:focus {
  outline: none;
  border-color: #8b1e2d;
}

.form-section input::placeholder {
  color: #999;
}

.form-section .btn.primary {
  font-size: 16px;
  padding: 15px 40px;
}

/* ============================================================
   STICKY CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #8b1e2d;
  text-align: center;
  padding: 16px 20px;
  z-index: 100;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.25);
}

.sticky-cta a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  font-family: 'Clarendon', 'Playfair Display', Georgia, serif;
}

.sticky-cta a:hover {
  text-decoration: underline;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #3d0b14;
  color: #d4b896;
  text-align: center;
  padding: 28px 20px 60px; /* extra bottom padding clears sticky CTA */
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* ============================================================
   FADE-IN ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
    padding: 60px 6%;
    gap: 36px;
  }

  .split img {
    width: 100%;
    max-height: 320px;
  }

  .overlay-text {
    left: 6%;
    bottom: 36px;
  }

  .serve-list {
    gap: 8px 0;
    font-size: 14px;
  }

  .serve-list .divider {
    display: none;
  }

  .serve-list span {
    width: 45%;
    text-align: center;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .form-row.thirds {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 28px;
  }
}
