/* ===========================
   Variables — Centered Single Column
   =========================== */
:root {
  --text-heading: #1A1A1A;
  --text-body: #808080;
  --text-light: #B0B0B0;
  --accent: #C17F4E;
  --accent-light: #D4956A;
  --bg: #FFFFFF;
  --bg-alt: #FAFAF8;
  --border: #EAEAEA;
  --dark: #141414;
  --nav-height: 80px;
  --content-width: 960px;
  --wide-width: 1200px;
  --radius: 3px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===========================
   Reset
   =========================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-body);
  line-height: 1.75;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--text-heading);
  font-weight: 500;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font-family: inherit; font-size: inherit; border: none; outline: none; }

.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 32px;
}

.container-wide {
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===========================
   Scroll Reveal
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   Header
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(234,234,234,0.5);
}

.header .container-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.5px;
  transition: color 0.4s ease;
}

.logo span {
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  transition: color 0.4s ease;
}

.header.scrolled .logo { color: var(--text-heading); }
.header.scrolled .logo span { color: var(--accent); }

.nav-links { display: flex; gap: 36px; }

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: rgba(255,255,255,0.6);
  transition: color 0.4s ease;
}

.nav-links a:hover,
.nav-links a.active { color: #fff; }

.header.scrolled .nav-links a { color: var(--text-light); }
.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active { color: var(--text-heading); }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.mobile-toggle span { display: block; width: 24px; height: 1.5px; background: #fff; transition: var(--transition); }
.header.scrolled .mobile-toggle span { background: var(--text-heading); }

/* ===========================
   Hero — Full Image + Centered Text
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  animation: heroZoom 20s ease forwards;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 25, 20, 0.46);
}

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

.hero-content .overline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255, 245, 230, 0.55);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease 0s forwards;
}

.hero-content h1 {
  font-size: 4.2rem;
  font-weight: 400;
  letter-spacing: -1px;
  color: #FFF5E6;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease 0.1s forwards;
}

.hero-content h1 span {
  color: var(--accent-light);
  font-style: italic;
}

.hero-content .accent-line {
  width: 48px;
  height: 1.5px;
  background: rgba(255, 245, 230, 0.35);
  margin: 0 auto 24px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 245, 230, 0.72);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.85;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease 0.25s forwards;
}

.hero-content .btn-hero {
  display: inline-block;
  padding: 15px 44px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  border-radius: var(--radius);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-heading);
  border: none;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease 0.35s forwards;
}

.hero-content .btn-hero:hover {
  background: #fff;
  transform: translateY(-2px);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   Story Split Layout
   =========================== */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-split-image {
  height: 460px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.06);
}

.story-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-split-image:hover img {
  transform: scale(1.03);
}

.story-split-text .overline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
}

.story-split-text h2 {
  font-size: 2.6rem;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.story-split-text .accent-line {
  width: 40px;
  height: 1.5px;
  background: var(--accent);
  margin-bottom: 24px;
}

.story-split-text p {
  font-size: 0.95rem;
  line-height: 1.95;
  margin-bottom: 14px;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-block;
  padding: 15px 44px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-dark {
  background: var(--text-heading);
  color: var(--bg);
}

.btn-dark:hover { background: #333; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--text-heading);
  border: 1px solid var(--border);
}

.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ===========================
   Section
   =========================== */
.section {
  padding: 110px 0;
}

/* ===========================
   Products — Alternating List
   =========================== */
.product-list-item {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.product-list-item:first-child {
  border-top: 1px solid var(--border);
}

.product-list-item:nth-child(even) {
  direction: rtl;
}

.product-list-item:nth-child(even) > * {
  direction: ltr;
}

.pli-image {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.pli-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pli-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.12) 0%, transparent 40%);
  opacity: 0;
  transition: opacity var(--transition);
}

.pli-image:hover img {
  transform: scale(1.05);
}

.pli-image:hover::after {
  opacity: 1;
}

.pli-image .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 2px;
  z-index: 2;
}

.pli-info .cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 10px;
}

.pli-info h3 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 14px;
}

.pli-info p {
  font-size: 0.92rem;
  margin-bottom: 16px;
  line-height: 1.9;
}

.pli-info .price {
  font-size: 1.05rem;
  color: var(--text-heading);
  font-weight: 600;
}

/* ===========================
   Story — Centered
   =========================== */
.story-centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.story-centered .overline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
}

.story-centered h2 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.story-centered .accent-line {
  width: 40px;
  height: 1.5px;
  background: var(--accent);
  margin: 0 auto 24px;
}

.story-centered p {
  font-size: 0.95rem;
  line-height: 1.95;
  margin-bottom: 14px;
}

/* ===========================
   Features — Numbered with Top Border
   =========================== */
.features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 72px;
}

.fl-item {
  padding: 28px 0;
  border-top: 2px solid var(--accent);
}

.fl-item .num {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}

.fl-item h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.fl-item p {
  font-size: 0.88rem;
  line-height: 1.85;
}

/* ===========================
   Promise Strip
   =========================== */
.promise-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
  padding: 52px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ps-item .icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.ps-item h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
  font-weight: 600;
}

.ps-item p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: 64px 0 0;
}

.footer-inner {
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .logo { color: #fff; margin-bottom: 16px; display: inline-block; }
.footer-brand .logo span { color: rgba(255,255,255,0.35); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.3); line-height: 1.8; }

.footer h4 {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 20px;
}

.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.35); }
.footer ul li a:hover { color: #fff; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.footer-contact-item .ic { color: var(--accent); width: 16px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: #fff; }

/* ===========================
   Responsive — Tablet
   =========================== */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 3.4rem; }
  .wide-image img { height: 380px; }
  .story-split { gap: 40px; }
  .story-split-image { height: 380px; }
  .product-list-item { gap: 36px; }
  .pli-image { height: 340px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================
   Responsive — Mobile
   =========================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px;
    gap: 24px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: flex; }

  .hero-content h1 { font-size: 2.4rem; }
  .section { padding: 64px 0; }

  .wide-image { margin-top: 48px; }
  .wide-image img { height: 260px; }

  .story-split { grid-template-columns: 1fr; gap: 32px; }
  .story-split-image { height: 280px; }

  .product-list-item {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 0;
  }
  .product-list-item:nth-child(even) { direction: ltr; }
  .pli-image { height: 280px; }
  .pli-info h3 { font-size: 1.5rem; }

  .story-centered h2 { font-size: 2.2rem; }
  .features-list { grid-template-columns: 1fr; gap: 0; }
  .fl-item { border-top: 1px solid var(--border); }
  .fl-item:first-child { border-top: 2px solid var(--accent); }
  .promise-strip { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===========================
   Header Light (for pages without hero image)
   =========================== */
.header-light {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.header-light .logo { color: var(--text-heading); }
.header-light .logo span { color: var(--accent); }
.header-light .nav-links a { color: var(--text-light); }
.header-light .nav-links a:hover,
.header-light .nav-links a.active { color: var(--text-heading); }
.header-light .mobile-toggle span { background: var(--text-heading); }

/* ===========================
   Hero Light (no background image)
   =========================== */
.hero-light {
  background: var(--bg-alt);
  padding: 160px 0 80px;
  text-align: center;
}

.hero-light .overline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-light h1 {
  font-size: 3.4rem;
  font-weight: 400;
  letter-spacing: -1px;
  color: var(--text-heading);
  margin-bottom: 16px;
}

.hero-light .accent-line {
  width: 48px;
  height: 1.5px;
  background: var(--accent);
  margin: 0 auto 24px;
}

.hero-light p {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ===========================
   Wide Banner (full-width image with overlay)
   =========================== */
.wide-banner {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.wide-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.wide-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.6);
}

.wide-banner-content {
  position: relative;
  z-index: 2;
}

.wide-banner-content h2 {
  font-size: 2.6rem;
  font-weight: 400;
  color: #FFF5E6;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.wide-banner-content p {
  font-size: 1rem;
  color: rgba(255, 245, 230, 0.7);
  max-width: 520px;
  line-height: 1.85;
}

/* ===========================
   Testimonials
   =========================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--text-body);
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===========================
   Contact Grid
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.92rem;
  color: var(--text-heading);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23808080' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.form-message {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  margin-top: 16px;
}

.form-message.success {
  background: #f0faf0;
  color: #2d7a2d;
  border: 1px solid #c3e6c3;
}

.form-message.error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

/* Contact Info Card */
.contact-info-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
}

.contact-info-card h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 28px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  font-size: 1.2rem;
  color: var(--accent);
  width: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item h4 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===========================
   FAQ Grid
   =========================== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.faq-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.faq-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.faq-card p {
  font-size: 0.88rem;
  line-height: 1.85;
}

/* ===========================
   Privacy Content
   =========================== */
.privacy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
}

.privacy-section {
  margin-bottom: 48px;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-section h2 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.privacy-section p {
  font-size: 0.92rem;
  line-height: 1.9;
  margin-bottom: 12px;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.privacy-section ul {
  margin: 12px 0 16px 20px;
  list-style: disc;
}

.privacy-section ul li {
  font-size: 0.92rem;
  line-height: 1.9;
  margin-bottom: 8px;
  padding-left: 4px;
}

.privacy-section a {
  color: var(--accent);
}

.privacy-section a:hover {
  color: var(--accent-light);
}

/* ===========================
   Responsive — Tablet (new page styles)
   =========================== */
@media (max-width: 1024px) {
  .testimonial-grid { gap: 24px; }
  .contact-grid { gap: 40px; }
  .wide-banner { height: 360px; }
  .wide-banner-content h2 { font-size: 2.2rem; }
}

/* ===========================
   Responsive — Mobile (new page styles)
   =========================== */
@media (max-width: 768px) {
  .hero-light { padding: 130px 0 60px; }
  .hero-light h1 { font-size: 2.4rem; }

  .wide-banner { height: 320px; }
  .wide-banner-content h2 { font-size: 1.8rem; }

  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }

  .privacy-content { padding: 0 20px; }
  .privacy-section h2 { font-size: 1.3rem; }
}
