/* RC Beach Resort — v2 (Figma exact) */

:root {
  --c-primary: rgb(218, 179, 124);
  --c-primary-dark: rgb(205, 158, 92);
  --c-cream: rgb(254, 255, 237);
  --c-sand-bg: rgb(250, 246, 239);
  --c-white: rgb(255, 255, 255);
  --c-black: rgb(0, 0, 0);
  --c-ink-58: rgba(0, 0, 0, 0.58);
  --c-muted: rgb(129, 129, 129);
  --c-hairline: rgb(233, 233, 233);
  --c-dark-bg: rgb(55, 50, 43);
  --c-dark-divider: rgb(66, 62, 55);
  --c-card-dark: rgb(28, 28, 28);
  --c-card-dark-stroke: rgb(50, 50, 50);
  --c-ink-light: rgba(255, 255, 255, 0.2);

  --font: 'Google Sans', 'Plus Jakarta Sans', system-ui, sans-serif;

  --max-w: 1196px;
  --side-pad: 122px;

  --r-pill: 1000px;
  --r-card: 20px;
  --r-md: 16px;
  --r-sm: 4px;
  --r-12: 12px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  font-family: var(--font);
  color: var(--c-black);
  background: var(--c-sand-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, p, span { margin: 0; }

img, video { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.container {
  max-width: calc(var(--max-w) + var(--side-pad) * 2);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  width: 100%;
}

@media (max-width: 1240px) { :root { --side-pad: 56px; } }
@media (max-width: 760px)  { :root { --side-pad: 24px; } }

/* ---------- TOP BAR ---------- */

.topbar {
  position: absolute;
  top: 40px; left: 0; right: 0;
  z-index: 100;
}

/* ---------- FLOATING BUTTONS (mobile) ---------- */
.fab {
  display: none;
}
@media (max-width: 768px) {
  .topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--c-dark-bg);
    padding: 12px 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  }
  .topbar-logo { height: 44px; }

  .hero { padding-top: 68px; }

  .fab {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 28px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    text-decoration: none;
    z-index: 200;
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .fab:active { transform: scale(0.93); }

  .fab-call {
    right: 20px;
    background: var(--c-primary);
    color: var(--c-black);
    box-shadow: 0 8px 28px -6px rgba(205,158,92,0.7);
    animation: fab-pulse 2.4s ease-in-out infinite;
  }
  .fab-call:hover { background: var(--c-primary-dark); }

  .fab-whatsapp {
    left: 20px;
    background: #25D366;
    color: #fff;
    box-shadow: 0 8px 28px -6px rgba(37,211,102,0.55);
    animation: fab-pulse-wa 2.4s ease-in-out infinite;
    animation-delay: 1.2s;
  }
  .fab-whatsapp:hover { background: #1ebe5d; }

  @keyframes fab-pulse {
    0%, 100% { box-shadow: 0 8px 28px -6px rgba(205,158,92,0.7), 0 0 0 0 rgba(218,179,124,0.45); }
    50%       { box-shadow: 0 8px 28px -6px rgba(205,158,92,0.7), 0 0 0 10px rgba(218,179,124,0); }
  }
  @keyframes fab-pulse-wa {
    0%, 100% { box-shadow: 0 8px 28px -6px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.4); }
    50%       { box-shadow: 0 8px 28px -6px rgba(37,211,102,0.55), 0 0 0 10px rgba(37,211,102,0); }
  }
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-logo {
  height: 62px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* ---------- BUTTONS ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 20px;
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), opacity 0.3s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--c-primary);
  color: var(--c-black);
}
.btn-primary:hover { background: var(--c-primary-dark); transform: translateY(-2px); }

.btn-outline-dark {
  background: transparent;
  color: var(--c-black);
  border-color: var(--c-black);
}
.btn-outline-dark:hover { background: var(--c-black); color: var(--c-white); transform: translateY(-2px); }

.btn-outline-light {
  background: rgba(255,255,255,0.2);
  color: var(--c-white);
  border-color: var(--c-white);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-outline-light:hover { background: var(--c-white); color: var(--c-black); transform: translateY(-2px); }
.btn-outline-light:hover .btn-arrow { filter: invert(1); }

.btn-book {
  height: 46px;
  padding: 0 20px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-arrow {
  width: 14px; height: 14px;
  display: inline-block;
  flex-shrink: 0;
}

.btn-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ---------- HERO ---------- */

.hero {
  position: relative;
  height: 700px;
  overflow: hidden;
  color: var(--c-white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 160px;
  padding-bottom: 0;
  gap: 50px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 20px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.2);
  border: 1px solid var(--c-white);
  color: var(--c-white);
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  line-height: 1;
}

.hero-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 760px;
}

.hero-heading h1 {
  font-weight: 500;
  font-size: 78px;
  line-height: 88px;
  text-align: center;
  letter-spacing: -0.01em;
  color: var(--c-white);
}
.hero-heading h1 em {
  font-style: italic;
  font-weight: 500;
}

.hero-sub {
  font-size: 18px;
  line-height: 1;
  text-align: center;
  color: var(--c-white);
  max-width: 540px;
}

@media (max-width: 860px) {
  .hero { height: auto; min-height: 100svh; }
  .hero-content { padding: 140px 24px 60px; gap: 32px; }
  .hero-heading h1 { font-size: 44px; line-height: 1.08; }
  .hero-sub { font-size: 16px; line-height: 1.5; }
}

/* ---------- TRUST BAR ---------- */

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--c-dark-bg);
  height: 100px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-right: 1.4px solid var(--c-dark-divider);
  padding: 0 16px;
}
.trust-item:last-child { border-right: none; }
.trust-label {
  font-size: 14px;
  color: var(--c-primary);
  line-height: 1;
}
.trust-value {
  font-size: 20px;
  font-weight: 500;
  color: var(--c-white);
  line-height: 1;
  text-align: center;
}

@media (max-width: 760px) {
  .trust-bar { grid-template-columns: repeat(2, 1fr); height: auto; }
  .trust-item { padding: 20px 12px; min-height: 100px; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(-n+2) { border-bottom: 1.4px solid var(--c-dark-divider); }
}

/* ---------- SECTIONS ---------- */

section.sec {
  padding: 130px 0;
}
.sec-bg-sand { background: var(--c-sand-bg); }
.sec-bg-white { background: var(--c-white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1;
  color: var(--c-ink-58);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.eyebrow::before {
  content: '';
  width: 5.06px;
  height: 5.06px;
  border-radius: 50%;
  background: var(--c-primary);
}

.sec-title {
  font-size: 66px;
  line-height: 70px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--c-black);
  max-width: 588px;
}
.sec-title em {
  font-style: normal;
  font-weight: 500;
}

.sec-lead {
  font-size: 22px;
  line-height: 35px;
  color: var(--c-ink-58);
  max-width: 530px;
}

@media (max-width: 1000px) {
  section.sec { padding: 80px 0; }
  .sec-title { font-size: 44px; line-height: 1.1; }
  .sec-lead { font-size: 18px; line-height: 1.55; }
}

/* ---------- INSIDE (split title + 2-col set + 3-col set) ---------- */

.inside-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.inside-head-title {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.inside-head-lead {
  padding-bottom: 6px;
}

.inside-set1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
.inside-set2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.inside-cta {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

/* Big feature cards (black / white) */
.card-feat {
  position: relative;
  border-radius: var(--r-card);
  padding: 54px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 111px;
  background: var(--c-white);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card-feat:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.card-feat.card-dark {
  background: var(--c-black);
}
.card-feat.card-primary,
.card-small.card-primary {
  background: var(--c-primary);
}
.card-feat-icon {
  width: 58.95px;
  height: 58.95px;
  border-radius: var(--r-12);
  background: var(--c-cream);
  border: 1px solid var(--c-hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary-dark);
}
.card-dark .card-feat-icon {
  background: var(--c-card-dark);
  border-color: var(--c-card-dark-stroke);
  color: var(--c-primary);
}
.card-primary .card-feat-icon {
  background: var(--c-black);
  border-color: var(--c-black);
  color: var(--c-primary);
}
.card-primary .card-feat-tag {
  color: var(--c-dark-bg);
}
.card-primary .card-feat-title {
  color: var(--c-black);
}
.card-primary .card-feat-desc {
  color: rgba(0,0,0,0.6);
}
.card-feat-tag {
  font-size: 14px;
  line-height: 1;
  color: var(--c-primary);
  margin-bottom: 10px;
}
.card-feat-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: var(--c-black);
  margin-bottom: 5px;
}
.card-dark .card-feat-title { color: var(--c-white); }

.card-feat-desc {
  font-size: 15px;
  line-height: 1.35;
  color: var(--c-muted);
}

.card-feat-text { display: flex; flex-direction: column; }

/* Small feature cards */
.card-small {
  position: relative;
  border-radius: var(--r-card);
  padding: 49px 54px;
  background: var(--c-white);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 42px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card-small:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

@media (max-width: 1000px) {
  .inside-head { grid-template-columns: 1fr; gap: 24px; align-items: flex-start; }
  .inside-set1 { grid-template-columns: 1fr; }
  .inside-set2 { grid-template-columns: 1fr; }
  .card-feat, .card-small { padding: 36px; min-height: auto; gap: 48px; }
}

/* ---------- RATES ---------- */

.rates-head {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 70px;
  max-width: 588px;
}

.rates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.rate-card {
  position: relative;
  border-radius: var(--r-card);
  background: var(--c-white);
  border: 1px solid var(--c-hairline);
  padding: 46px 54px;
  display: flex;
  flex-direction: column;
  gap: 38px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.rate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.rate-card.rate-dark {
  background: var(--c-black);
  border-color: var(--c-black);
  color: var(--c-white);
}

.rate-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rate-kind {
  font-size: 14px;
  color: var(--c-primary);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.rate-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 12px;
  letter-spacing: -0.01em;
}
.rate-dark .rate-title { color: var(--c-white); }
.rate-desc {
  font-size: 15px;
  line-height: 1.45;
  color: var(--c-muted);
  margin-top: 10px;
}

.rate-guests {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  background: var(--c-cream);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  align-self: flex-start;
}
.rate-dark .rate-guests {
  background: rgb(28,28,28);
  color: var(--c-white);
  border: 1px solid rgb(50,50,50);
}
.rate-guests svg { color: var(--c-primary-dark); }
.rate-dark .rate-guests svg { color: var(--c-primary); }

.rate-pricebox {
  border-radius: var(--r-md);
  background: var(--c-white);
  border: 1px solid var(--c-hairline);
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rate-dark .rate-pricebox {
  background: rgb(28,28,28);
  border-color: rgb(50,50,50);
}

.rate-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  min-height: 30px;
}
.rate-pricebox hr {
  border: 0;
  height: 1px;
  background: var(--c-hairline);
  margin: 19px 0;
}
.rate-dark .rate-pricebox hr {
  background: rgb(50,50,50);
}

.rate-price-label {
  font-size: 14px;
  line-height: 1;
  color: var(--c-muted);
}
.rate-dark .rate-price-label {
  color: rgb(140,140,140);
}
.rate-price-amount {
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  text-align: right;
  color: var(--c-black);
  letter-spacing: -0.01em;
}
.rate-price-amount small {
  font-size: 13px;
  font-weight: 400;
  color: var(--c-muted);
  margin-left: 2px;
  letter-spacing: 0;
}
.rate-dark .rate-price-amount { color: var(--c-white); }
.rate-dark .rate-price-amount small { color: rgb(140,140,140); }

.rate-card .btn {
  margin-top: auto;
}
.rate-dark .btn-outline-dark {
  color: var(--c-black);
  border-color: var(--c-primary);
  background: var(--c-primary);
}
.rate-dark .btn-outline-dark:hover {
  background: var(--c-primary-dark);
  border-color: var(--c-primary-dark);
  color: var(--c-black);
}

/* Notes bar at bottom of rates section */
.rates-notes {
  border-radius: var(--r-md);
  background: var(--c-cream);
  padding: 49px 61px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.rates-note {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.rates-note-icon {
  width: 35px;
  height: 35px;
  border-radius: var(--r-sm);
  background: var(--c-white);
  border: 1px solid var(--c-hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary-dark);
  flex-shrink: 0;
}
.rates-note-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 2px;
}
.rates-note-text strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--c-black);
}
.rates-note-text span {
  font-size: 14px;
  line-height: 1.3;
  color: var(--c-muted);
}

@media (max-width: 1000px) {
  .rates-grid { grid-template-columns: 1fr; }
  .rates-notes { grid-template-columns: 1fr; padding: 28px; gap: 24px; }
  .rate-card { padding: 32px; }
}

/* ---------- NOTES ---------- */

.notes-head {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 70px;
  max-width: 588px;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.note-card {
  background: var(--c-white);
  border-radius: var(--r-md);
  height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 38px 28px;
  gap: 15px;
  text-align: center;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.note-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.note-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-sm);
  background: var(--c-cream);
  border: 1px solid var(--c-hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary-dark);
}

.note-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  color: var(--c-black);
  white-space: pre-line;
}

@media (max-width: 1200px) {
  .notes-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .notes-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .note-card { height: auto; min-height: 180px; }
}

/* ---------- STORY ---------- */

.story-grid {
  display: grid;
  grid-template-columns: 588px 494px;
  gap: 108px;
  justify-content: space-between;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.story-body {
  display: flex;
  flex-direction: column;
  gap: 35px;
  font-size: 22px;
  line-height: 35px;
  color: var(--c-ink-58);
  margin-bottom: 50px;
}
.story-body .italic-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: var(--c-ink-58);
}

.story-visual {
  position: relative;
  width: 494px;
  height: 616px;
  border-radius: var(--r-md);
  overflow: hidden;
}
.story-visual img,
.story-visual video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}
.story-caption {
  position: absolute;
  left: 47px;
  right: 47px;
  bottom: 47px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--c-white);
}
.story-caption-label {
  font-size: 14px;
  line-height: 1;
  color: var(--c-primary);
}
.story-caption-title {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  color: var(--c-white);
}

@media (max-width: 1100px) {
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-visual { width: 100%; height: 440px; }
}

/* ---------- CONTACT ---------- */

.contact-center {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.contact-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-lead {
  font-size: 22px;
  line-height: 35px;
  color: var(--c-ink-58);
  max-width: 640px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--c-white);
  border: 1px solid var(--c-hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary-dark);
}

.contact-call-card {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 24px 40px;
  background: var(--c-primary);
  border: 1px solid var(--c-primary-dark);
  border-radius: var(--r-pill);
  color: var(--c-black);
  text-decoration: none;
  box-shadow: 0 18px 40px -22px rgba(205, 158, 92, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-call-card:hover {
  transform: translateY(-2px);
  background: var(--c-primary-dark);
  box-shadow: 0 22px 48px -22px rgba(205, 158, 92, 0.7);
}
.contact-call-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary-dark);
  flex-shrink: 0;
}
.contact-call-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.contact-call-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 4px;
}
.contact-call-number {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-black);
}

.contact-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 24px;
  background: var(--c-white);
  border: 1px solid var(--c-hairline);
  border-radius: var(--r-md);
  text-align: left;
}
.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-info-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.contact-info-value {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--c-black);
}

@media (max-width: 720px) {
  .contact-center { gap: 28px; }
  .contact-call-card {
    flex-direction: row;
    gap: 16px;
    padding: 18px 24px;
    width: 100%;
    justify-content: center;
  }
  .contact-call-card > svg { display: none; }
  .contact-call-icon { width: 44px; height: 44px; }
  .contact-call-number { font-size: 22px; }
  .contact-call-label { font-size: 11px; }
  .contact-info-row { grid-template-columns: 1fr; }
}

/* ---------- FORM ---------- */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-field {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border-radius: var(--r-pill);
  background: var(--c-white);
  border: 1px solid var(--c-hairline);
  font-family: var(--font);
  font-size: 15px;
  color: var(--c-black);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  outline: none;
}
.form-field::placeholder { color: var(--c-muted); }
.form-field:focus { border-color: var(--c-primary); }
.form-textarea {
  height: auto;
  min-height: 100px;
  padding: 16px 18px;
  border-radius: 20px;
  resize: vertical;
  font-family: var(--font);
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */

.footer {
  background: var(--c-white);
  padding: 50px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 379px;
}

.footer-logo {
  height: 72px;
  width: 144px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.footer-brand p {
  font-size: 18px;
  line-height: 27px;
  color: var(--c-ink-58);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 254px;
}
.footer-contact h5 {
  font-size: 14px;
  font-weight: 400;
  color: var(--c-primary);
  line-height: 1;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact li {
  font-size: 16px;
  line-height: 1.2;
  color: var(--c-black);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--c-hairline);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom span {
  font-size: 16px;
  line-height: 1;
  color: var(--c-black);
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* ---------- REVEAL ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ---------- TWEAKS ---------- */

.tweaks {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 120;
  background: var(--c-white);
  border: 1px solid var(--c-hairline);
  border-radius: var(--r-md);
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
  width: 280px;
  padding: 18px 20px;
  display: none;
}
.tweaks.on { display: block; }
.tweaks h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-black);
  margin-bottom: 14px;
}
.tweak-row { margin-bottom: 12px; }
.tweak-row:last-child { margin-bottom: 0; }
.tweak-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.tweak-opts { display: flex; gap: 6px; flex-wrap: wrap; }
.tweak-opt {
  padding: 6px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-hairline);
  background: var(--c-white);
  font-size: 12px;
  color: var(--c-black);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  font-weight: 500;
}
.tweak-opt.active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-black);
}
.tweak-swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--c-white);
  outline: 1px solid var(--c-hairline);
  cursor: pointer;
}
.tweak-swatch.active { outline: 2px solid var(--c-black); outline-offset: 2px; }
