/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&family=Inter:wght@300;400;500&display=swap');

:root {
  --bg: #f4efe6;
  --text: #1e1b16;
  --muted: rgba(30, 27, 22, 0.65);
  --btn: #3a2b12;
  --line: rgba(30, 27, 22, 0.10);
  --card: rgba(255, 255, 255, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

/* WOW helpers */
.hover-tilt{
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}

.hover-tilt:hover{
  box-shadow: 0 20px 55px rgba(0,0,0,0.08);
}

.glass-float{
  animation: floaty 6.5s ease-in-out infinite;
}

@keyframes floaty{
  0%,100%{ transform: translateY(0px); }
  50%{ transform: translateY(-8px); }
}

/* =========================
   Global titles
========================= */
.section-title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
}

.section-subtitle {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(30, 27, 22, 0.55);
  line-height: 1.6;
  max-width: 680px;
}

.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   ABOUT HERO
========================= */
.about-hero {
  padding: 45px 10px 85px;
  position: relative;
  overflow: hidden;
}

.about-hero-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 520px;
}

.about-watermark {
  position: absolute;
  top: 30px;
  right: -10px;
  font-family: "Playfair Display", serif;
  font-size: clamp(120px, 18vw, 220px);
  opacity: 0.05;
  letter-spacing: 6px;
  pointer-events: none;
}

.crumbs {
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(30, 27, 22, 0.55);
  margin-bottom: 14px;
}

.about-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4.3vw, 60px);
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 0.95;
  margin-bottom: 14px;
}

.about-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(30, 27, 22, 0.55);
  max-width: 540px;
  margin-bottom: 18px;
}

.about-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-dark {
  text-decoration: none;
  background: #241c18;
  color: #fff;
  padding: 12px 18px;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-light {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(30, 27, 22, 0.12);
  color: rgba(30, 27, 22, 0.8);
  padding: 12px 18px;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-metrics--center{
  max-width: 980px;   /* change to 900-1100 if you want */
  margin: 0 auto;     /* THIS centers it */
}

.about-metrics{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
  width: 100%;
}


.metric {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(30, 27, 22, 0.10);
  height: 100px;
  padding: 14px 14px;
  border-radius: 16px;
}

.metric-num {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.metric-text {
  font-size: 12px;
  margin-top: 2px;
  color: rgba(30, 27, 22, 0.55);
}

/* Right hero image */
.about-hero-right {
  position: relative;
  display: grid;
  place-items: center;
}

.about-frame {
  width: min(440px, 92%);
  height: 340px;
  border-radius: 42px;
  overflow: hidden;
  background: rgba(30, 27, 22, 0.06);
  border: 1px solid rgba(30, 27, 22, 0.10);
  position: relative;
}

.about-frame::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 32px;
  border: 1px solid rgba(30, 27, 22, 0.08);
  pointer-events: none;
}

.about-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating badges */
.badge {
  position: absolute;
  background: rgba(255,255,255,0.90);
  border-radius: 14px;
  padding: 10px 12px;
  min-width: 120px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(30,27,22,0.10);
}

.badge span {
  font-size: 11px;
  color: rgba(30, 27, 22, 0.55);
}

.ring {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 600;
  color: rgba(30, 27, 22, 0.85);
  border: 3px solid rgba(139, 90, 43, 0.35);
}

.badge-top {
  left: 0;
  top: -20px;
}

.badge-bottom {
  right: 0;
  bottom: 35px;
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials {
  padding: 45px 0;
}

.test-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.test-card {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(30, 27, 22, 0.10);
  border-radius: 18px;
  padding: 18px 18px;
}

.stars {
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: rgba(139, 90, 43, 0.9);
}

.test-card p {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(30, 27, 22, 0.60);
  margin-bottom: 14px;
}

.test-user {
  display: flex;
  gap: 10px;
  align-items: center;
}

.test-dot {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(30, 27, 22, 0.10);
}

.test-user h4 {
  font-size: 12px;
}

.test-user span {
  font-size: 11px;
  color: rgba(30, 27, 22, 0.50);
}

/* =========================
   STORY
========================= */
.story {
  padding: 90px 10px;
}

.story-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.story-text {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(30, 27, 22, 0.55);
  max-width: 640px;
}

.story-highlight {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.hl-line {
  width: 3px;
  height: 62px;
  background: rgba(139, 90, 43, 0.35);
  border-radius: 99px;
  margin-top: 4px;
}

.story-highlight p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(30, 27, 22, 0.70);
  max-width: 520px;
}

/* right cards */
.story-card {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(30, 27, 22, 0.10);
  border-radius: 18px;
  padding: 18px 18px;
}

.story-card h3 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 12px;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 10px;
}

.checklist li {
  font-size: 12px;
  color: rgba(30, 27, 22, 0.58);
  line-height: 1.55;
  position: relative;
  padding-left: 18px;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(139, 90, 43, 0.8);
  font-weight: 700;
}

.story-mini {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.mini-item {
  background: rgba(30, 27, 22, 0.04);
  border: 1px solid rgba(30, 27, 22, 0.08);
  border-radius: 18px;
  padding: 14px 14px;
}

.mini-item h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.mini-item p {
  font-size: 12px;
  color: rgba(30, 27, 22, 0.55);
  line-height: 1.6;
}

/* =========================
   VALUES
========================= */
.values {
  padding: 90px 0;
  background: rgba(30, 27, 22, 0.03);
}

.values-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(30, 27, 22, 0.10);
  border-radius: 18px;
  padding: 18px 18px;
  min-height: 170px;
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0,0,0,0.04);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: rgba(139, 90, 43, 0.85);
  margin-bottom: 12px;
}

.value-card h3 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  margin-bottom: 6px;
}

.value-card p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(30, 27, 22, 0.55);
}

/* =========================
   TIMELINE
========================= */
.timeline {
  padding: 90px 10px;
}

.timeline-head {
  margin-bottom: 28px;
}

.timeline-wrap {
  position: relative;
}

.timeline-line {
  height: 1px;
  background: rgba(30, 27, 22, 0.10);
  margin: 18px 0 30px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.milestone {
  position: relative;
  padding-top: 14px;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(139, 90, 43, 0.65);
  border-radius: 50%;
  margin-bottom: 10px;
}

.milestone h3 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  margin-bottom: 6px;
}

.milestone p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(30, 27, 22, 0.55);
}

/* =========================
   FAQ
========================= */
.faq {
  padding: 95px 0;
  background: rgba(30, 27, 22, 0.03);
}

.faq-list {
  margin-top: 35px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(30, 27, 22, 0.10);
  border-radius: 18px;
  padding: 14px 16px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  color: rgba(30, 27, 22, 0.85);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 16px;
  color: rgba(30, 27, 22, 0.55);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(30, 27, 22, 0.55);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 950px) {

  .about-hero-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .badge-top { top: -15px; }
  .badge-bottom { right: 10px; bottom: 0px; }

  .story-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-grid {
    grid-template-columns: 1fr 1fr;
  }

  .test-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .values-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .about-metrics {
    grid-template-columns: 1fr;
  }
}

/* Motion reduced */
@media (prefers-reduced-motion: reduce){
  *{
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .cursor-glow{ display: none !important; }
}
