/* assets/css/about.css
   Palette comes from styles.css:
   --copper: #8B4513;
   --dark-copper: #6B3410;
   --light-gray: #f8f8f8;
   --white: #ffffff;
   --black: #1a1a1a;
   --gold: #d4af37;
*/

/* =========================
   HERO SECTION
   (Top banner with brand story)
========================= */

.about-hero {
  position: relative;
  color: var(--white);
  background: var(--black);
  margin-top: 90px;
  /* so it's below fixed header */
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(139, 69, 19, 0.3);
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  filter: brightness(0.7);
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 40%,
      rgba(139, 69, 19, 0.3) 0%,
      rgba(26, 26, 26, 0.9) 70%);
}

.about-hero__content {
  position: relative;
  z-index: 2;
  padding: 4rem 5%;
  max-width: 600px;
  text-shadow: 0 30px 60px rgba(26, 26, 26, 0.9);
  animation: aboutFadeUp 0.8s ease both;
}

.about-hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.about-hero__title {
  color: var(--copper);
  font-weight: 300;
  font-size: clamp(2rem, 1.2rem + 2vw, 2.8rem);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  text-shadow: 3px 3px 0px rgba(139, 69, 19, 0.3), 0 30px 60px rgba(26, 26, 26, 0.9);
  position: relative;
}

.about-hero__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100px;
  height: 3px;
  background: var(--copper);
  box-shadow: 0 3px 10px rgba(139, 69, 19, 0.5);
}

.about-hero__subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  max-width: 480px;
}

/* simple fade-up motion similar vibe to home.css fadeInUp */
@keyframes aboutFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   SHARED SECTION TITLES
========================= */

.about-section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--copper);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.about-section-eyebrow--gold {
  color: var(--gold);
}

.about-section-title {
  font-size: clamp(1.4rem, 1rem + 1vw, 1.8rem);
  color: var(--copper);
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-bottom: 0.75rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.about-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--copper);
  box-shadow: 0 2px 6px rgba(139, 69, 19, 0.3);
}

.about-section-title--light {
  color: var(--copper);
  text-shadow: 0 20px 40px rgba(26, 26, 26, 0.9);
}

.about-section-title--light::after {
  background: var(--copper);
  box-shadow: 0 2px 6px rgba(139, 69, 19, 0.4);
}

/* =========================
   BRAND STORY / CRAFT
========================= */

.about-story {
  background: var(--white);
  padding: 3rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .about-story__inner {
    grid-template-columns: 1fr;
  }
}

.about-story__text {
  max-width: 600px;
}

.about-story__lead {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.8);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.about-story__body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.7);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.about-story__image-box {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--black);
  border: 2px solid rgba(139, 69, 19, 0.3);
  box-shadow: 0 30px 60px rgba(139, 69, 19, 0.25);
}

.about-story__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.9);
}

.about-story__stamp {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(26, 26, 26, 0.7);
  border: 2px solid var(--copper);
  box-shadow:
    0 20px 40px rgba(26, 26, 26, 0.9),
    0 0 30px rgba(139, 69, 19, 0.4);
  backdrop-filter: blur(4px);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  line-height: 1.4;
  text-shadow: 0 20px 40px rgba(26, 26, 26, 0.9);
}

.about-story__stamp-main {
  font-weight: 600;
  color: var(--copper);
  display: block;
  letter-spacing: 0.15em;
  text-shadow: 2px 2px 0px rgba(139, 69, 19, 0.3);
}

.about-story__stamp-sub {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

/* =========================
   MILESTONES / TIMELINE
   (Light luxury timeline)
========================= */

.milestones {
  padding: 3rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

/* we keep class name milestones--dark from the page,
   but the look is now light and on-brand */
.milestones--dark {
  background: var(--light-gray);
  color: var(--black);
  border-top: 1px solid rgba(139, 69, 19, 0.15);
  border-bottom: 1px solid rgba(139, 69, 19, 0.15);
  box-shadow: 0 20px 60px rgba(139, 69, 19, 0.08) inset;
}

.milestones__head {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.milestones__intro {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.7);
  letter-spacing: 0.03em;
}

/* same tone now since bg is light */
.milestones__intro--light {
  color: rgba(26, 26, 26, 0.7);
  text-shadow: none;
}

/* TIMELINE WRAPPER */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0 3rem;
}

.timeline__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(to bottom,
      rgba(139, 69, 19, 0) 0%,
      rgba(139, 69, 19, 0.6) 20%,
      rgba(139, 69, 19, 0.6) 80%,
      rgba(139, 69, 19, 0) 100%);
  box-shadow:
    0 0 10px rgba(139, 69, 19, 0.5),
    0 0 30px rgba(139, 69, 19, 0.2);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 3rem;
}

.timeline-item--left .timeline-item__card {
  grid-column: 1 / 2;
  text-align: right;
  padding-right: 2rem;
}

.timeline-item--left .timeline-item__dot {
  grid-column: 2 / 3;
  justify-self: flex-start;
}

.timeline-item--right .timeline-item__card {
  grid-column: 2 / 3;
  text-align: left;
  padding-left: 2rem;
}

.timeline-item--right .timeline-item__dot {
  grid-column: 1 / 2;
  justify-self: flex-end;
}

@media (max-width: 700px) {
  .timeline {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .timeline__line {
    left: 1rem;
    transform: none;
  }

  .timeline-item {
    grid-template-columns: auto 1fr;
    column-gap: 1rem;
  }

  .timeline-item--left .timeline-item__card,
  .timeline-item--right .timeline-item__card {
    grid-column: 2 / 3;
    text-align: left;
    padding: 0;
  }

  .timeline-item--left .timeline-item__dot,
  .timeline-item--right .timeline-item__dot {
    grid-column: 1 / 2;
    justify-self: center;
  }
}

/* TIMELINE DOT (milestone point) */
.timeline-item__dot {
  position: relative;
  width: 20px;
  height: 20px;
  align-self: start;
  background: radial-gradient(circle at 50% 50%,
      var(--copper) 0%,
      var(--dark-copper) 70%);
  border: 2px solid var(--gold);
  box-shadow:
    0 0 15px rgba(139, 69, 19, 0.6),
    0 10px 20px rgba(139, 69, 19, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-item__dot-core {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow:
    0 0 10px rgba(212, 175, 55, 0.8),
    0 0 20px rgba(212, 175, 55, 0.4);
}

/* TIMELINE CARD (milestone detail) */
.timeline-item__card {
  background: var(--white);
  border: 2px solid var(--copper);
  border-radius: 4px;
  padding: 1rem 1.25rem 1rem;
  min-width: 0;
  max-width: 360px;
  color: var(--black);
  box-shadow:
    0 30px 60px rgba(139, 69, 19, 0.12),
    0 8px 20px rgba(139, 69, 19, 0.08);
  text-shadow: none;
  background-image: radial-gradient(circle at 10% 10%, rgba(139, 69, 19, 0.05) 0%, transparent 60%);
  transition: all 0.3s ease;
}

.timeline-item__card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 35px 70px rgba(139, 69, 19, 0.15),
    0 12px 30px rgba(139, 69, 19, 0.1);
  border-color: var(--gold);
}

.timeline-item__year {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.timeline-item__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--copper);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.timeline-item__text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(26, 26, 26, 0.75);
  letter-spacing: 0.03em;
}

/* =========================
   CONTACT / LOCATION
========================= */

.contact-block {
  background: var(--white);
  padding: 3rem 5% 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-block__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-block__inner {
    grid-template-columns: 1fr;
  }
}

/* LEFT SIDE CARD (contact info / social) */
.contact-card {
  background: radial-gradient(circle at 10% 10%,
      rgba(26, 26, 26, 1) 0%,
      rgba(26, 26, 26, 0.95) 60%,
      rgba(26, 26, 26, 1) 100%);
  color: var(--white);
  border-radius: 6px;
  padding: 2rem;
  border: 2px solid var(--copper);
  box-shadow:
    0 40px 80px rgba(139, 69, 19, 0.3),
    0 0 60px rgba(139, 69, 19, 0.15);
  text-shadow: 0 20px 40px rgba(26, 26, 26, 1);
}

.contact-card__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-card__title {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--copper);
  margin-bottom: 0.75rem;
  text-shadow: 2px 2px 0px rgba(139, 69, 19, 0.3);
}

.contact-card__addr {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}

.contact-card__rows {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

/* the square icon on the left */
.contact-row__icon {
  flex-shrink: 0;
  background: rgba(139, 69, 19, 0.2);
  border: 2px solid var(--copper);
  box-shadow:
    0 20px 40px rgba(26, 26, 26, 1),
    0 0 30px rgba(139, 69, 19, 0.3);
  color: var(--copper);
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  display: block;
}

.contact-row__label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.contact-row__value {
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.03em;
}

/* social area inside the card */
.contact-socials--card {
  border-top: 2px solid var(--copper);
  padding-top: 1.5rem;
}

.contact-socials__label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.contact-socials__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.social-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  position: relative;
}

.social-link:hover {
  color: var(--copper);
}

.social-icon {
  background: rgba(139, 69, 19, 0.15);
  border: 2px solid var(--copper);
  color: var(--copper);
  width: 32px;
  height: 32px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow:
    0 20px 40px rgba(26, 26, 26, 1),
    0 0 30px rgba(139, 69, 19, 0.3);
  transition: all 0.2s ease;
}

.social-link:hover .social-icon {
  background: var(--copper);
  color: var(--white);
  box-shadow:
    0 20px 40px rgba(139, 69, 19, 0.5),
    0 0 30px rgba(139, 69, 19, 0.4);
}

.social-icon__svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  display: block;
}

/* RIGHT SIDE (map / showroom block) */
.contact-map__box {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 300px;
  background: var(--black);
  border: 2px solid var(--copper);
  box-shadow:
    0 30px 60px rgba(139, 69, 19, 0.25),
    0 80px 120px rgba(139, 69, 19, 0.15);
}

.contact-map__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.8);
}

/* floating info card on map */
.contact-map__overlay-card {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(26, 26, 26, 0.85);
  border: 2px solid var(--copper);
  box-shadow:
    0 30px 60px rgba(26, 26, 26, 1),
    0 0 30px rgba(139, 69, 19, 0.3);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 1rem;
  border-radius: 4px;
  width: calc(100% - 2rem);
  max-width: 280px;
  text-shadow: 0 20px 40px rgba(26, 26, 26, 1);
}

.contact-map__heading {
  color: var(--copper);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 0px rgba(139, 69, 19, 0.3);
}

.contact-map__addr {
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.contact-map__cta-row {
  display: grid;
  gap: 0.5rem;
}

.contact-map__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  text-decoration: none;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-transform: uppercase;

  background: var(--copper);
  color: var(--white);
  border-radius: 4px;
  padding: 0.6rem 0.75rem;

  box-shadow:
    0 20px 40px rgba(139, 69, 19, 0.6),
    0 0 20px rgba(139, 69, 19, 0.3);
  transition: all 0.2s ease;
}

.contact-map__cta--dark {
  background: rgba(26, 26, 26, 0.7);
  border: 2px solid var(--copper);
  color: var(--white);
  box-shadow:
    0 20px 40px rgba(26, 26, 26, 1),
    0 0 20px rgba(139, 69, 19, 0.3);
}

.contact-map__cta:hover {
  background: var(--dark-copper);
  box-shadow:
    0 28px 60px rgba(107, 52, 16, 0.8),
    0 0 30px rgba(139, 69, 19, 0.4);
  transform: translateY(-2px);
}

.contact-map__cta--dark:hover {
  background: rgba(26, 26, 26, 0.9);
  border-color: var(--gold);
}

.contact-map__cta-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  display: block;
  color: var(--white);
}

/* =========================
   REVEAL / SCROLL ANIMATION
========================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE TWEAKS
========================= */

@media (max-width: 768px) {
  .about-hero {
    min-height: 50vh;
  }

  .about-hero__title {
    letter-spacing: 0.12em;
  }

  .timeline-item__card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding: 1.5rem 1.25rem 2rem;
  }
}
