/* ═══════════════════════════════════════════════
   SHARED PAGE STYLES — About & Contact
   3D effects, animations, professional UI
═══════════════════════════════════════════════ */

/* ─── ABOUT HERO ─── */
.about-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 60%, #1E3A5F 0%, #0A1628 70%);
}
#about-canvas, #contact-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(30,58,95,.6) 0%, rgba(10,22,40,.9) 70%);
  z-index: 1;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}
.about-hero-inner { max-width: 700px; }
.page-eyebrow {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding: 6px 16px;
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 2px;
}
.about-hero-title, .contact-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--warm-white);
  margin-bottom: 24px;
}
.about-hero-title em, .contact-hero-title em {
  font-style: normal;
  color: var(--gold);
}
.about-hero-lead {
  font-size: 1.1rem;
  color: rgba(248,246,242,.7);
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 560px;
}
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-stat {
  text-align: center;
  padding: 0 36px;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat .hs-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  font-weight: 300;
  display: inline;
}
.hero-stat > span:not(.hs-num) { color: var(--gold); font-size: 2rem; }
.hero-stat p {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(248,246,242,.45);
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(201,168,76,.25);
  flex-shrink: 0;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3;transform:scaleY(.6)} 50%{opacity:1;transform:scaleY(1)} }

/* ─── STORY SECTION ─── */
.story-section {
  padding: 120px 0;
  background: var(--charcoal);
  overflow: hidden;
}
.story-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-visual {
  transition: transform .4s ease;
  transform-style: preserve-3d;
}
.story-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
}
.story-img-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  filter: saturate(.85);
  transition: filter .5s;
}
.story-visual:hover .story-img-wrap img { filter: saturate(1); }
.story-img-badge {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 20px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(201,168,76,.4);
}
.badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.badge-label {
  display: block;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: 4px;
}
.story-img-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 140px;
  height: 140px;
  border: 2px solid rgba(201,168,76,.3);
  border-radius: 4px;
  pointer-events: none;
}
.story-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
}
.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}
.story-text p {
  color: rgba(248,246,242,.7);
  line-height: 1.85;
  margin-bottom: 18px;
  font-size: .95rem;
}
.story-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.sh-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: rgba(248,246,242,.8);
}
.sh-item i { color: var(--gold); width: 18px; text-align: center; }

/* ─── VALUES ─── */
.values-section {
  padding: 120px 0;
  background: var(--navy);
}
.values-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}
.values-header {
  text-align: center;
  margin-bottom: 64px;
}
.values-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 16px;
}
.values-header p { color: rgba(248,246,242,.55); font-size: 1rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  position: relative;
  background: rgba(30,58,95,.5);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 6px;
  padding: 48px 32px 40px;
  overflow: hidden;
  cursor: default;
  transition: border-color .3s, box-shadow .3s;
  transform-style: preserve-3d;
}
.value-card:hover {
  border-color: rgba(201,168,76,.4);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.vc-icon {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.value-card p {
  color: rgba(248,246,242,.6);
  font-size: .9rem;
  line-height: 1.7;
}
.vc-number {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,168,76,.06);
  line-height: 1;
  user-select: none;
}
.vc-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%);
  transition: opacity .3s;
  opacity: 0;
}
.value-card:hover .vc-glow { opacity: 1; }

/* ─── TIMELINE ─── */
.timeline-section {
  padding: 120px 0;
  background: var(--charcoal);
  overflow: hidden;
}
.timeline-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}
.timeline-header {
  text-align: center;
  margin-bottom: 80px;
}
.timeline-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
}
.timeline {
  position: relative;
  padding: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}
.tl-item {
  display: flex;
  width: 50%;
  padding: 0 60px 60px;
  position: relative;
}
.tl-item.tl-left { justify-content: flex-end; align-self: flex-start; }
.tl-item.tl-right { margin-left: 50%; justify-content: flex-start; }
.tl-content {
  background: rgba(30,58,95,.4);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 6px;
  padding: 28px 32px;
  max-width: 340px;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.tl-content:hover {
  border-color: rgba(201,168,76,.4);
  transform: translateY(-4px);
}
.tl-year {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 8px;
}
.tl-content h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.tl-content p { color: rgba(248,246,242,.6); font-size: .88rem; line-height: 1.65; }
.tl-dot {
  position: absolute;
  right: -7px;
  top: 28px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--charcoal);
  box-shadow: 0 0 0 4px rgba(201,168,76,.25);
}
.tl-right .tl-dot { right: auto; left: -7px; }

/* ─── TEAM FLIP CARDS ─── */
.team-section {
  padding: 120px 0;
  background: var(--navy);
}
.team-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}
.team-header {
  text-align: center;
  margin-bottom: 64px;
}
.team-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 16px;
}
.team-header p { color: rgba(248,246,242,.55); max-width: 600px; margin: 0 auto; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.flip-card {
  perspective: 1000px;
  height: 420px;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .7s cubic-bezier(.4,.2,.2,1);
  transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner { transform: rotateY(180deg); }
.flip-front, .flip-back {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.8);
}
.flip-front-info {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(10,22,40,.95) 0%, transparent 100%);
}
.flip-front-info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.flip-front-info span {
  font-size: .75rem;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.flip-back {
  background: linear-gradient(135deg, var(--ocean), var(--navy));
  border: 1px solid rgba(201,168,76,.2);
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.flip-back-content {
  padding: 32px;
  text-align: center;
}
.fb-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0 auto 16px;
}
.flip-back-content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.flip-back-content span {
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.flip-back-content p {
  color: rgba(248,246,242,.7);
  font-size: .85rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.fb-socials { display: flex; justify-content: center; gap: 12px; }
.fb-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: rgba(248,246,242,.7);
  transition: all .2s;
}
.fb-socials a:hover { border-color: var(--gold); color: var(--gold); }

/* ─── WHY SECTION ─── */
.why-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.why-bg {
  position: absolute;
  inset: 0;
  background: url('https://highseamiami.com/wp-content/uploads/2021/08/AdobeStock_331254950-scaled.jpeg') center/cover no-repeat;
  filter: brightness(.15) saturate(.5);
}
.why-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}
.why-header {
  text-align: center;
  margin-bottom: 64px;
}
.why-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-item {
  background: rgba(10,22,40,.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 6px;
  padding: 36px 32px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.why-item:hover {
  border-color: rgba(201,168,76,.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.wi-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.why-item h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.why-item p { color: rgba(248,246,242,.6); font-size: .88rem; line-height: 1.7; }

/* ─── ABOUT CTA ─── */
.about-cta {
  padding: 100px 0;
  background: var(--charcoal);
  text-align: center;
}
.acta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px;
}
.acta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 20px;
}
.acta-inner p { color: rgba(248,246,242,.6); font-size: 1rem; margin-bottom: 40px; line-height: 1.75; }
.acta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════ */

/* ─── CONTACT HERO ─── */
.contact-hero {
  position: relative;
  height: 72vh;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 50%, rgba(30,58,95,.7) 0%, rgba(10,22,40,.92) 65%);
  z-index: 1;
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}
.contact-hero-content p {
  color: rgba(248,246,242,.65);
  font-size: 1.05rem;
  margin-bottom: 36px;
  margin-top: 16px;
}
.contact-quick-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.cqb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 3px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: all .3s;
}
.cqb-call { background: var(--gold); color: var(--navy); }
.cqb-call:hover { background: #d4b460; transform: translateY(-2px); }
.cqb-wa { background: #25D366; color: white; }
.cqb-wa:hover { background: #20bb5a; transform: translateY(-2px); }

/* ─── CONTACT CARDS ─── */
.contact-cards-section {
  padding: 0 0 0;
  background: var(--charcoal);
}
.cc-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  transform: translateY(-60px);
}
.cc-card {
  background: var(--ocean);
  border: 1px solid rgba(201,168,76,.12);
  padding: 40px 32px;
  cursor: default;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  transform-style: preserve-3d;
}
.cc-card:first-child { border-radius: 6px 0 0 6px; }
.cc-card:last-child  { border-radius: 0 6px 6px 0; }
.cc-card:hover { border-color: rgba(201,168,76,.4); box-shadow: 0 20px 50px rgba(0,0,0,.4); z-index: 2; }
.cc-card-featured {
  background: linear-gradient(135deg, rgba(201,168,76,.2), rgba(30,58,95,.8));
  border-color: rgba(201,168,76,.3) !important;
}
.cc-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.cc-card-featured .cc-icon-wrap {
  background: rgba(201,168,76,.2);
  border-color: rgba(201,168,76,.4);
}
.cc-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.cc-card p {
  color: rgba(248,246,242,.5);
  font-size: .82rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.cc-links { display: flex; flex-direction: column; gap: 6px; }
.cc-links a {
  color: var(--gold);
  font-size: .9rem;
  transition: color .2s, letter-spacing .2s;
  display: inline-block;
}
.cc-links a:hover { color: var(--gold-light); letter-spacing: .02em; }

/* ─── MAIN CONTACT SECTION ─── */
.contact-main-section {
  padding: 20px 0 100px;
  background: var(--charcoal);
}
.cms-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  align-items: start;
}
.cms-form-card {
  background: rgba(30,58,95,.3);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 8px;
  padding: 48px;
}
.cms-form-header { margin-bottom: 36px; }
.cms-form-header h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.cms-form-header p { color: rgba(248,246,242,.55); font-size: .9rem; }
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.cf-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.cf-group.cf-full { grid-column: 1 / -1; }
.cf-row .cf-group { margin-bottom: 0; }
.cf-group label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(248,246,242,.5);
}
.cf-group .req { color: var(--gold); }
.cf-group input,
.cf-group select,
.cf-group textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--warm-white);
  padding: 13px 16px;
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: .9rem;
  outline: none;
  transition: border-color .25s, background .25s;
  -webkit-appearance: none;
}
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.07);
}
.cf-group select option { background: var(--navy); }
.cf-group textarea { resize: vertical; min-height: 140px; }
.cf-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background .3s, transform .3s;
  margin-top: 8px;
  font-family: var(--font-sans);
}
.cf-submit:hover { background: #d4b460; transform: translateY(-2px); }
.cf-submit.loading .btn-text::after { content: '...'; }
.cf-submit.loading .btn-icon i { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* INFO COLUMN */
.cms-info-col { display: flex; flex-direction: column; gap: 24px; }
.cinfo-card {
  background: rgba(30,58,95,.3);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 8px;
  padding: 28px 32px;
}
.cinfo-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.hours-grid { display: flex; flex-direction: column; gap: 10px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  color: rgba(248,246,242,.65);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.hours-row:last-of-type { border-bottom: none; }
.hours-val { color: var(--warm-white); font-weight: 500; }
.hours-note {
  margin-top: 4px;
  font-size: .78rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  font-size: .88rem;
  color: rgba(248,246,242,.8);
  gap: 12px;
  transition: color .2s;
  user-select: none;
}
.faq-q:hover { color: var(--gold); }
.faq-q i {
  color: var(--gold);
  font-size: .75rem;
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p {
  padding: 0 0 16px;
  font-size: .85rem;
  color: rgba(248,246,242,.55);
  line-height: 1.7;
}

/* ─── BOTTOM CTA ─── */
.contact-bottom-cta {
  padding: 60px 0;
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,.1);
}
.cbc-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cbc-left h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 8px;
}
.cbc-left p { color: rgba(248,246,242,.55); }
.cbc-right { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.wa-big-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #25D366;
  color: white;
  border-radius: 3px;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .08em;
  transition: background .3s, transform .3s;
}
.wa-big-btn:hover { background: #20bb5a; transform: translateY(-2px); }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .cc-inner { grid-template-columns: repeat(2, 1fr); transform: translateY(-30px); }
  .cc-card:first-child { border-radius: 6px 0 0 0; }
  .cc-card:nth-child(2) { border-radius: 0 6px 0 0; }
  .cc-card:nth-child(3) { border-radius: 0 0 0 6px; }
  .cc-card:last-child  { border-radius: 0 0 6px 0; }
  .cms-inner { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .timeline::before { left: 20px; }
  .tl-item { width: 100%; margin-left: 0 !important; padding-left: 60px; padding-right: 20px; }
  .tl-item.tl-left { justify-content: flex-start; }
  .tl-dot { left: 13px !important; right: auto !important; }
  .tl-content { max-width: 100%; }
}
@media (max-width: 768px) {
  /* ── padding ── */
  .about-hero-content, .contact-hero-content,
  .story-inner, .values-inner, .timeline-inner,
  .team-inner, .why-inner, .cms-inner, .cbc-inner,
  .cc-inner { padding: 0 16px; }

  /* ── hero ── */
  .about-hero, .contact-hero { height: 100svh; min-height: 560px; }
  .about-hero-title, .contact-hero-title { font-size: clamp(2.4rem,8vw,3.5rem); }
  .about-hero-lead { font-size: .92rem; }
  .page-eyebrow { font-size: .65rem; }
  .hero-stats-row { flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 36px; }
  .hero-stat-divider { display: none; }
  .hero-stat { padding: 0 16px; }
  .hero-stat .hs-num { font-size: 2.4rem; }

  /* ── story ── */
  .story-img-wrap img { height: 320px; }
  .story-inner { gap: 36px; }

  /* ── values ── */
  .values-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .value-card { padding: 28px 20px 24px; }
  .vc-number { font-size: 2.5rem; }

  /* ── team flip ── */
  .team-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .flip-card { height: 340px; }

  /* ── why grid ── */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-item { padding: 24px 20px; }

  /* ── contact cards ── */
  .cc-inner { grid-template-columns: 1fr 1fr; transform: translateY(-16px); }
  .cc-card { border-radius: 0 !important; padding: 28px 20px; }
  .cc-card:first-child { border-radius: 6px 0 0 0 !important; }
  .cc-card:nth-child(2) { border-radius: 0 6px 0 0 !important; }
  .cc-card:nth-child(3) { border-radius: 0 0 0 6px !important; }
  .cc-card:last-child   { border-radius: 0 0 6px 0 !important; }

  /* ── contact form ── */
  .cf-row { grid-template-columns: 1fr; }
  .cms-form-card { padding: 24px 16px; }

  /* ── bottom cta ── */
  .cbc-inner { flex-direction: column; text-align: center; gap: 24px; }
  .cbc-right { justify-content: center; flex-wrap: wrap; }

  /* ── contact quick btns ── */
  .contact-quick-btns { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* ── timeline ── */
  .timeline-inner { padding: 0 16px; }
}

@media (max-width: 480px) {
  /* ── hero ── */
  .about-hero-title, .contact-hero-title { font-size: 2.2rem; }
  .hero-stats-row { gap: 12px; }
  .hero-stat { padding: 0 8px; }
  .hero-stat .hs-num { font-size: 2rem; }

  /* ── values ── */
  .values-grid { grid-template-columns: 1fr; }
  .value-card { min-height: auto; }

  /* ── team ── */
  .team-grid { grid-template-columns: 1fr; }
  .flip-card { height: 300px; }

  /* ── why ── */
  .why-grid { grid-template-columns: 1fr; }

  /* ── contact cards ── */
  .cc-inner { grid-template-columns: 1fr; transform: translateY(-12px); }
  .cc-card:first-child { border-radius: 6px 6px 0 0 !important; }
  .cc-card:nth-child(2) { border-radius: 0 !important; }
  .cc-card:nth-child(3) { border-radius: 0 !important; }
  .cc-card:last-child   { border-radius: 0 0 6px 6px !important; }

  /* ── story ── */
  .story-img-wrap img { height: 260px; }
  .story-highlights { gap: 8px; }

  /* ── acta ── */
  .acta-inner { padding: 0 16px; }
  .acta-buttons { flex-direction: column; align-items: center; }
  .btn-gold, .btn-ghost { width: 100%; max-width: 280px; text-align: center; }
}
