/* ---------- ROOT VARIABLES ---------- */
:root {
  --gold: #e0cd93;
  --dark: #111;
  --cream: #f8f3e6;
  --white: #ffffff;
  --max-width: 1200px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-sm: 0 10px 25px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.14);
  --transition: all 0.35s ease;
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Outfit", sans-serif;
  --font-accent: "Comfortaa", cursive;
}

/* ---------- GLOBAL RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

html,
body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* sensible text wrapping */
p,
h1,
h2,
h3,
h4,
span,
li,
a {
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

nav {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 22px 5%;
  z-index: 20;
}

nav section {
  padding: 0;
}

nav ul {
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

nav li:first-child {
  margin-right: auto;
}

nav img {
  height: 38px;
}

nav a {
  text-decoration: none;
  color: white;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
  transition: var(--transition);
}

nav a:hover {
  color: #c5a059;
  letter-spacing: 3.5px;
}

nav li.nav-active a {
  color: #c5a059;
  font-weight: 600;
}

/* Sidebar mobile */
.side-bar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  padding: 40px 20px;
  background: rgba(18, 18, 18, 0.922);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
  z-index: 1000;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
}

.side-bar li:first-child {
  margin-bottom: 40px;
  align-self: flex-end;
}

.side-bar.active {
  right: 0;
}

.side-bar a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
  transition: 0.25s;
}

.side-bar a:hover {
  opacity: 1;
  color: var(--gold);
  padding-left: 10px;
}
.side-bar a.nav-active {
  color: #c5a059;
  font-weight: 600;
}

/* overlay for sidebar */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  z-index: 998;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.sidebar-overlay.active {
  display: block;
  opacity: 1;
}

.menu-btn {
  display: none;
}

/* make nav compact on narrow screens */
@media (max-width: 850px) {
  nav {
    padding: 16px 4%;
  }
  .hideOnMobile {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  nav ul {
    gap: 12px;
  }
}

/* ---------- HERO SECTION ---------- */

.about-hero {
  height: clamp(46vh, 65vh, 80vh);
  position: relative;
  background: url("images/kitchen1.jpg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  overflow: hidden;
  padding: 0 2%;
}

/* overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* hero content sits above overlay */
.about-hero .hero-content {
  position: relative;
  z-index: 10;
  padding-top: clamp(40px, 6vh, 80px); /* safety no overlap with nav */
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
  padding-left: 12px;
  padding-right: 12px;
}

.about-hero h1 {
  font-family: var(--font-accent);
  font-size: clamp(1.8rem, 6vw, 3.6rem);
  letter-spacing: 8px;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0;
}

.about-hero p {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.6vw, 1.15rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 12px;
  opacity: 0.95;
}

/* ---------- SHARED STYLES ---------- */

.decorative-heading {
  text-align: center;
  margin-bottom: 60px;
}

.decorative-heading span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.btn-minimal {
  background: transparent;
  border: 1px solid var(--dark);
  padding: 12px 30px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 20px;
}

.btn-minimal:hover {
  background: var(--gold);
  border: none;
  color: white;
}

/* ---------- CONTENT WRAPPER ---------- */
.content-wrapper {
  overflow: visible;
  padding-bottom: 80px;
}

/* ---------- PHILOSOPHY SECTION ---------- */

.philosophy {
  padding: 80px 5%;
}

.phil-grid {
  max-width: var(--max-width);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.phil-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 400;
}

.phil-text p {
  margin-bottom: 18px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.6);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
}

.phil-img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: cover;
}

/* ---------- TEAM SECTION ---------- */

.team {
  background: var(--cream);
  padding: 80px 5%;
}

.team-flex {
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
}

/* cards layout */
.member-cards {
  display: flex;
  gap: 25px;
  flex: 1.2;
  min-width: 220px;
  flex-wrap: wrap;
}

.member-cards .card {
  background: white;
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  flex: 1 1 220px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  min-width: 180px;
}

.member-cards .card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.member-cards .card img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
  display: block;
}

.member-cards h3 {
  font-family: var(--font-heading);
  letter-spacing: 2px;
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.member-cards span {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

/* quote column */
.team-quote {
  flex: 0.8;
  min-width: 220px;
}

.team-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 25px;
  color: var(--dark);
}

/* ---------- JOURNEY SECTION (CLEAN VERSION) ---------- */

.journey {
  padding: 80px 5%;
  background: var(--white);
}

.journey-container {
  max-width: 600px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
  box-sizing: border-box;
}

.timeline {
  border-left: 2px solid rgba(224, 205, 147, 0.4);
  padding-left: 40px;
  position: relative;
}

.milestone {
  margin-bottom: 50px;
  position: relative;
}

.milestone:last-child {
  margin-bottom: 0;
}

/* gold dot */
.milestone::before {
  content: "";
  position: absolute;
  left: -52px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px white;
}

.m-year {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.milestone p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

.timeline p {
  max-width: 100%;
}

/* ---------- FINAL CALL TO ACTION ---------- */

.final-call {
  background: var(--white);
  padding: 80px 5%;
  display: flex;
  justify-content: center;
}

.cta-content {
  background: linear-gradient(135deg, #e0cd93 0%, #c5a059 100%);
  padding: 60px 28px;
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  box-sizing: border-box;
}

.cta-content p {
  font-family: var(--font-accent);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin-bottom: 30px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
}

.cta-content .btn-gold {
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 14px 34px;
  font-family: var(--font-body);
  letter-spacing: 3px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  transition: var(--transition);
}

.cta-content .btn-gold:hover {
  background: #333;
  transform: translateY(-3px);
}

/* ---------- BLACK FOOTER ---------- */

.about-footer {
  padding: 40px 5% 30px;
  text-align: center;
  background: #000000;
  color: var(--white);
}

.footer-logo img {
  height: 45px;
  margin-bottom: 30px;
  filter: brightness(0) invert(1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer-socials {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer-socials a {
  color: var(--gold);
  font-size: 1.3rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  opacity: 0.7;
  text-transform: uppercase;
  color: var(--white);
}

/* ---------- RESPONSIVE ADJUSTMENTS ---------- */

/* tablet-ish */
@media (max-width: 1000px) {
  .phil-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .team-flex {
    gap: 40px;
    flex-direction: column;
  }
  .member-cards {
    justify-content: center;
  }
  .phil-text h2 {
    font-size: clamp(1.5rem, 3.2vw, 2rem);
  }
}

/* compact mobile */
@media (max-width: 600px) {
  nav {
    padding: 12px 4%;
  }
  .about-hero {
    height: clamp(36vh, 46vh, 52vh);
    padding: 0 4%;
  }
  .about-hero .hero-content {
    padding-top: 24px;
  }
  .decorative-heading {
    margin-bottom: 30px;
  }
  .phil-text h2 {
    font-size: 1.4rem;
  }
  .phil-text p,
  .member-cards h3 {
    font-size: 0.95rem;
  }
  .phil-img img {
    max-height: 300px;
  }
  .team-flex {
    gap: 20px;
  }
  .member-cards .card {
    padding: 18px;
  }
  .timeline {
    padding-left: 28px;
  }
  .milestone::before {
    left: -44px;
    top: 8px;
  }
  .m-year {
    font-size: 1.3rem;
  }
  .journey-container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .cta-content {
    padding: 40px 20px;
  }
}

/* extra small phones */
@media (max-width: 420px) {
  .about-hero h1 {
    letter-spacing: 6px;
  }
  .about-hero p {
    letter-spacing: 2px;
  }
  nav a {
    font-size: 0.68rem;
  }
  .decorative-heading span {
    letter-spacing: 3px;
  }
  .member-cards {
    gap: 12px;
  }
  .member-cards .card {
    flex-basis: 100%;
  }
  .team-quote blockquote {
    font-size: 1.2rem;
  }
}

/* ensure focus accessibility states */
a:focus,
button:focus {
  outline: 2px dashed var(--gold);
  outline-offset: 3px;
}
