.aboutHero {
  position: relative;
  height: 440px;
  margin-top: 64px;
  overflow: hidden;
  background: var(--bg-light); /* optional beige background behind image */
}

.aboutHero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aboutHero h1 {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Cormorant", serif;
  font-size: 76px;
  font-style: italic;
  font-weight: 500;
  color: #fff;
}

.aboutIntroSection {
  position: relative;
  overflow: hidden;
  padding: 65px 8% 80px;
  background:
    radial-gradient(circle at 2% 70%, rgba(255,153,102,0.55), transparent 40%),
    radial-gradient(circle at 97% 90%, rgba(255,189,135,0.3), transparent 35%),
    var(--bg-light);
  text-align: center;
}

.aboutFloatDrink {
  position: absolute;
  height: auto;
  object-fit: contain;
  z-index: 3;
  pointer-events: none;
}

.aboutFloatLeft {
  width: 155px;
  left: 6.5%;
  top: 170px;
}

.aboutFloatRight {
  width: 150px;
  right: 8%;
  top: 105px;
}

.aboutIntroInner {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin: 0 auto;
}

.aboutIntroInner > h2 {
  font-family: "Cormorant", serif;
      font-size: var(--title-md);
  font-weight: 500;
  margin-bottom: 32px;
}

.aboutIntroInner > h2 span {
  font-style: italic;
}

.aboutIntroLogo {
  width: 250px;
  height: auto;
  object-fit: contain;
  margin-bottom:30px;
}

.aboutIntroText {
  max-width: 820px;
  margin: 0 auto 70px;
}

.aboutIntroText p {
  font-size: var(--text-sm);
  line-height: 1.5;
  margin-bottom: 22px;
}

.aboutStartedGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  text-align: left;
}

.aboutStartedImg {
  height: 300px;
  overflow: hidden;
}

.aboutStartedImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aboutStartedText h2 {
  font-family: "Cormorant", serif;
    font-size: var(--title-md);
  font-weight: 500;
  margin-bottom: 18px;
}

.aboutStartedText h2 span {
  font-style: italic;
}

.aboutStartedText p {
  font-size: var(--text-sm);
  line-height: 1.5;
  margin-bottom: 18px;
}

.movingStrip {
  background: var(--brown-main);
  overflow: hidden;
  width: 100%;
}

.marquee {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marqueeTrack {
  display: flex;
  width: max-content;
  animation: scrollStrip 35s linear infinite;
}

.marqueeItem {
  display: flex;
  align-items: center;
  gap: 46px;
  padding: 14px 40px;
  flex-shrink: 0;
}

.marqueeItem span {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--beige-text);
  white-space: nowrap;
}

.marqueeItem img {
  width: 60px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.dot {
  font-size: 20px;
  opacity: 0.9;
}

@keyframes scrollStrip {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

.aboutMiddleBg {
  background:
    radial-gradient(circle at 18% 18%, rgba(242, 207, 178, 0.78), transparent 30%),
    radial-gradient(circle at 88% 58%, rgba(242, 207, 178, 0.58), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(242, 207, 178, 0.5), transparent 32%),
    var(--bg-light);
}

.visionMissionSection {
  padding: 50px 8% 60px;
  background: transparent;
  text-align: center;
}

.visionMissionSection h2,
.ownersSection h2 {
  font-family: "Cormorant", serif;
  font-size: var(--title-md);
  font-weight: 500;
  margin-bottom: 42px;
}

.visionMissionGrid {
  max-width: 980px;
  height: 350px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.aboutOverlayCard {
  position: relative;
  overflow: hidden;
  width: 46%;
  height: 285px;
  border-radius: var(--radius-main);
  transition: width 0.45s ease, height 0.45s ease, transform 0.45s ease;
  z-index: 1;
}

.aboutOverlayCard:hover {
  width: 56%;
  height: 330px;
  transform: scale(1.02);
  z-index: 3;
}

.aboutOverlayCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aboutCardDefaultText {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant", serif;
  font-size: var(--title-md);
  color: #fff;
}

.aboutOverlayDark {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0,0,0,0.2);
  transition: background 0.35s ease;
}

.aboutOverlayText {
  position: absolute;
  inset: 0;
  z-index: 4;
  padding: 34px;
  color: #fff;
  opacity: 0;
  transform: translateY(18px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.aboutOverlayText h3 {
  font-family: "Cormorant", serif;
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 12px;
}

.aboutOverlayText p {
  max-width: 420px;
  font-size: var(--text-sm);
  line-height: 1.45;
}

.aboutOverlayCard:hover .aboutOverlayDark {
  background: rgba(0,0,0,0.58);
}

.aboutOverlayCard:hover .aboutOverlayText {
  opacity: 1;
  transform: translateY(0);
}

.aboutOverlayCard:hover .aboutCardDefaultText {
  opacity: 0;
}

.commitmentsSection {
  padding: 5px 8%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
}

.commitmentsSection h2 {
  font-family: "Cormorant", serif;
    font-size: var(--title-md);
  font-weight: 500;
  line-height: 1.05;
  text-align: center;
}

.commitmentsSection h2 span {
  font-style: italic;
}

.commitmentsGrid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.commitmentItem {
  width: 140px;
  height: 105px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 5px 14px rgba(110,55,27,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.commitmentItem img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 8px;
}

.commitmentItem p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.ownersSection {
  position: relative;
  overflow: hidden;
  padding: 55px 8% 105px;
  background: transparent;
  text-align: center;
}

.ownersSection h2 span {
  font-style: italic;
}

.ownerDashLine {
  position: absolute;
  left: -8%;
  right: -8%;
  top: 54%;
  height: 160px;
  border-top: 4px dashed var(--brown-main);
  border-radius: 45% 55% 50% 50%;
  transform: rotate(-5deg);
  opacity: 0.9;
}

.ownersGrid {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
}

.ownerFlipCard {
  height: 310px;
  perspective: 1100px;
}

.ownerFlipInner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.75s ease;
  transform-style: preserve-3d;
}

.ownerFlipCard:hover .ownerFlipInner {
  transform: rotateY(180deg);
}

.ownerCard {
  position: absolute;
  inset: 0;
  height: 310px;
  backface-visibility: hidden;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 6px 16px rgba(110,55,27,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ownerFront img {
  width: 200px;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.ownerFront h3 {
  font-size: var(--text-sm);
  font-weight: 700;
}

.ownerBack {
  transform: rotateY(180deg);
  padding: 32px 24px;
}

.ownerBack p {
  font-size: var(--text-sm);
  line-height: 1.45;
  margin-bottom: 22px;
}

.ownerBack a {
  background: var(--btn-orange);
  color: var(--btn-orange-text);
  border: 2px solid var(--btn-orange);
  border-radius: var(--btn-radius);
  padding: 10px 26px;
  font-size: var(--text-xs);
  font-weight: 700;
  text-decoration: none;
}

.ownerBack a:hover {
  background: transparent;
  color: var(--btn-orange);
}

.aboutCtaSection {
  padding: 75px 8%;
  background: var(--bg-soft);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}

.aboutCtaImage {
  height: 280px;
  max-width: 520px;
  justify-self: end;
  overflow: hidden;
}

.aboutCtaImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aboutCtaText h2 {
  font-family: "Cormorant", serif;
    font-size: var(--title-md);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 24px;
}

.aboutCtaText h2 span {
  font-style: italic;
}

.aboutCtaButtons {
  display: flex;
  gap: 14px;
}
.aboutCtaButtons a {
  min-width: 140px;
  padding: 11px 28px;

  border-radius: var(--btn-radius);
  border: 3px solid var(--btn-orange); /* ✅ updated */

  font-size: var(--text-xs);
  font-weight: 700;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
  box-sizing: border-box;
}
/* PRIMARY = solid → hollow */
.aboutCtaButtons a.primary {
  background: var(--btn-orange);
  color: var(--btn-orange-text);
}

.aboutCtaButtons a.primary:hover {
  background: transparent;
  color: var(--btn-orange);
}

/* SECONDARY = hollow → solid */
.aboutCtaButtons a.secondary {
  background: transparent;
  color: var(--btn-orange);
}

.aboutCtaButtons a.secondary:hover {
  background: var(--btn-orange);
  color: var(--btn-orange-text);
}

.aboutFooter {
  background: var(--brown-main);
  padding-top: 80px;
}

@media screen and (max-width: 1100px) {
  .aboutHero {
    height: 300px;
  }

  .aboutStartedGrid {
    gap: 40px;
  }

  .visionMissionGrid {
    height: 330px;
  }

  .ownersGrid {
    gap: 28px;
  }

  .commitmentsSection {
    flex-direction: column;
  }

  .aboutCtaSection {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .aboutCtaImage {
    justify-self: center;
  }

  .aboutCtaButtons {
    justify-content: center;
  }
}

@media screen and (max-width: 600px) {
  .aboutHero {
    height: 190px;
    margin-top: 0;
  }

  .aboutHero h1 {
    font-size: 42px;
  }

  .aboutHero::after {
    height: 45px;
  }

  .aboutIntroSection {
    padding: 38px 26px 50px;
  }

  .aboutFloatDrink {
    display: block;
    opacity: 0.95;
  }

  .aboutFloatLeft {
    width: 54px;
    left: 14px;
    top: 150px;
  }

  .aboutFloatRight {
    width: 58px;
    right: 14px;
    top: 132px;
  }

  .aboutIntroInner > h2 {
    font-size: 32px;
    margin-bottom: 22px;
  }

  .aboutIntroLogo {
    width: 110px;
    margin-bottom: 20px;
  }

  .aboutIntroText {
    margin-bottom: 42px;
  }

  .aboutIntroText p {
    font-size: 15px;
    line-height: 1.45;
  }

  .aboutStartedGrid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .aboutStartedImg {
    width: 250px;
    height: 150px;
    margin: 0 auto;
  }

  .aboutStartedText h2 {
    font-size: 28px;
  }

  .aboutStartedText p {
    font-size: 15px;
    line-height: 1.45;
  }

  .visionMissionSection {
    padding: 55px 26px 35px;
  }

  .visionMissionSection h2,
  .ownersSection h2 {
    font-size: 34px;
  }

  .visionMissionGrid {
    height: auto;
    flex-direction: column;
  }

  .aboutOverlayCard,
  .aboutOverlayCard:hover {
    width: 100%;
    height: 250px;
    transform: none;
  }

  .aboutOverlayDark {
    background: rgba(0,0,0,0.55);
  }

  .aboutOverlayText {
    opacity: 1;
    transform: translateY(0);
  }

  .aboutCardDefaultText {
    display: none;
  }

  .aboutOverlayText h3 {
    font-size: 34px;
  }

  .aboutOverlayText p {
    font-size: 15px;
  }

  .commitmentsSection {
    padding: 34px 0;
    overflow: hidden;
  }

  .commitmentsSection h2 {
    font-size: 32px;
  }

  .commitmentsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 18px 25px; /* row and column gaps */
  justify-items: center;
  align-items: center;
}

  .commitmentItem {
    flex: 0 0 110px;
    height: 86px;
    border-radius: 18px;
  }

  .commitmentItem img {
    width: 36px;
    height: 36px;
  }

  .commitmentItem p {
    font-size: 15px;
  }

  .aboutCtaSection {
    padding: 60px 26px;
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .aboutCtaImage {
    order: 2;
    height: 150px;
    width: 250px;
    justify-self: center;
  }

  .aboutCtaText {
    order: 1;
  }

  .aboutCtaText h2 {
    font-size: 28px;
  }

  .aboutCtaButtons {
    justify-content: center;
  }

  .aboutCtaOutline,
  .aboutCtaOrange {
    min-width: 100px;
    padding: 9px 18px;
    font-size: 10px;
  }

  .aboutFooter {
    padding-top: 58px;
  }
}

/* ================= OWNERS SECTION MOBILE FLIPCARD BACK LINKEDIN ================= */
@media screen and (max-width: 600px) {

  .ownersSection {
    padding: 45px 26px 75px;
  }

  .ownerDashLine {
    top: 48%;
  }

  /* Grid layout for 3 cards */
  .ownersGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
    justify-items: center;
  }

  .ownersGrid .ownerFlipCard:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  /* Flipcard size */
  .ownerFlipCard {
    width: 100%;
    max-width: 220px;
    height: 260px;
    perspective: 900px;
  }

  .ownerFlipInner {
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
  }

  /* Disable hover rotation on mobile */
  .ownerFlipCard:hover .ownerFlipInner {
    transform: none;
  }

  /* Card faces */
  .ownerCard {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 26px;
    box-shadow: 0 6px 16px rgba(110,55,27,0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
  }

  /* Front: image + name only */
  .ownerFront img {
    width: 135px;
    height: 145px;
    object-fit: contain;
    margin-bottom: 8px;
  }

  .ownerFront h3 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .ownerFront a {
    display: none; /* remove LinkedIn from front */
  }

  /* Back: bio + LinkedIn */
  .ownerBack {
    transform: rotateY(180deg);
    padding: 20px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .ownerBack h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .ownerBack p {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .ownerBack a {
    display: inline-flex; /* show LinkedIn on back */
    font-size: 12px;
    padding: 6px 16px;
    background: var(--btn-orange);
    color: var(--btn-orange-text);
    border: 2px solid var(--btn-orange);
    border-radius: var(--btn-radius);
    text-decoration: none;
    font-weight: 700;
  }

  .ownerBack a:hover {
    background: transparent;
    color: var(--btn-orange);
  }

  /* Optional: allow tap to flip on mobile */
  .ownerFlipCard:active .ownerFlipInner {
    transform: rotateY(180deg);
  }
}