/* =====================================================================
   Co-Create — Homepage Redesign (matches Website Design Recommendation PDF)
   Loaded after style.css to override the base template on index.html only.
   Scope: sections prefixed with .rd-  +  refreshed header tweaks.
   ===================================================================== */

:root {
  --rd-gold: #c9a14a;
  --rd-gold-deep: #b8862f;
  --rd-gold-soft: #d8b876;
  --rd-ink: #1c1c1c;
  --rd-ink-soft: #2a2a2a;
  --rd-body: #6c7178;
  --rd-cream: #fbf8f2;
  --rd-cream-2: #f6f1e7;
  --rd-line: #ece6da;
  --rd-dark: #1b1b1b;
  --rd-dark-2: #161616;
  --rd-serif: "Playfair Display", Georgia, serif;
  --rd-sans: "Inter", sans-serif;
  --rd-script: "Great Vibes", cursive;
  --rd-shadow: 0 24px 60px rgba(26, 22, 12, 0.10);
  --rd-shadow-sm: 0 12px 30px rgba(26, 22, 12, 0.08);
  --rd-section-y: 72px;
  --rd-section-y-sm: 40px;
  /* Fixed gutters only — do not add viewport “centering” padding inside max-width containers */
  --rd-site-pad-x: clamp(16px, 2.5vw, 32px);
}

/* ---------- shared scaffolding ---------- */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* Startup preloader — Co-Create logo with rotation */
.preloader { background-color: #000; }
.preloader:after {
  width: 240px;
  height: 240px;
  min-width: 240px;
  min-height: 240px;
  margin-left: 0;
  margin-top: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../images/logo/preloader-logo.png);
  background-size: contain;
  background-position: center center;
  -webkit-animation: rd-preloader-spin 2.8s linear infinite;
  animation: rd-preloader-spin 2.8s linear infinite;
}
.preloader:before {
  margin-top: 0;
  top: calc(50% + 140px);
  color: var(--rd-gold);
  font-family: var(--rd-sans);
  font-size: 14px;
  letter-spacing: 3px;
}
@-webkit-keyframes rd-preloader-spin {
  from { -webkit-transform: translate(-50%, -50%) rotate(0deg); transform: translate(-50%, -50%) rotate(0deg); }
  to { -webkit-transform: translate(-50%, -50%) rotate(360deg); transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes rd-preloader-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@media (min-width: 992px) {
  .preloader:after {
    width: 400px;
    height: 400px;
    min-width: 400px;
    min-height: 400px;
  }
  .preloader:before {
    top: calc(50% + 230px);
    font-size: 16px;
  }
}

.rd { font-family: var(--rd-sans); color: var(--rd-body); }
.rd-container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 var(--rd-site-pad-x); box-sizing: border-box; }

.rd h1, .rd h2, .rd h3, .rd h4, .rd h5, .rd h6 { font-family: var(--rd-serif); color: var(--rd-ink); margin: 0; }
.rd p { margin: 0; font-family: var(--rd-sans); color: var(--rd-body); line-height: 1.75; font-size: 16px; }

.rd-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--rd-sans); font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; font-size: 12.5px; color: var(--rd-gold-deep);
}
.rd-label::before { content: ""; width: 26px; height: 2px; background: var(--rd-gold); display: inline-block; }
.rd-label.is-pill {
  background: #fff; border: 1px solid var(--rd-line); border-radius: 40px;
  padding: 9px 20px; box-shadow: var(--rd-shadow-sm);
}
.rd-label.is-pill::before { display: none; }

.rd-accent { color: var(--rd-gold-deep); }

.rd-dotgrid {
  background-image: radial-gradient(var(--rd-gold) 1.7px, transparent 1.8px);
  background-size: 15px 15px; opacity: .45; display: block;
}

.rd-btn {
  display: inline-flex; align-items: center; gap: 12px; cursor: pointer;
  font-family: var(--rd-sans); font-weight: 600; font-size: 15px;
  padding: 15px 30px; border-radius: 40px; border: none; transition: all .3s ease;
  text-decoration: none; line-height: 1;
}
.rd-btn .ic {
  width: 30px; height: 30px; border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center; font-size: 13px; transition: all .3s ease;
}
.rd-btn-gold { background: linear-gradient(135deg, var(--rd-gold-soft), var(--rd-gold-deep)); color: #fff; box-shadow: 0 14px 26px rgba(184, 134, 47, .28); }
.rd-btn-gold .ic { background: rgba(255,255,255,.22); color: #fff; }
.rd-btn-gold:hover { color:#fff; transform: translateY(-3px); box-shadow: 0 20px 34px rgba(184, 134, 47, .38); }
.rd-btn-ghost { background: #fff; color: var(--rd-ink); border: 1px solid var(--rd-line); }
.rd-btn-ghost .ic { background: linear-gradient(135deg, var(--rd-gold-soft), var(--rd-gold-deep)); color: #fff; }
.rd-btn-ghost:hover { color: var(--rd-ink); border-color: var(--rd-gold); transform: translateY(-3px); }

/* ============================ HERO ============================ */
.rd-hero {
  position: relative; overflow: hidden;
  background: #fff;
  padding: 28px 0 0;
}
.rd-hero .dots-tl { position: absolute; left: 22px; top: 72px; width: 100px; height: 70px; }
.rd-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 28px; align-items: center; }
.rd-hero-copy { padding: 0 0 20px; }
.rd-hero h1 {
  font-size: 62px; line-height: 1.08; font-weight: 800; letter-spacing: -.5px;
  margin: 12px 0 0;
}
.rd-hero h1 .rd-accent { font-style: italic; font-weight: 700; }
.rd-hero-copy > p { margin-top: 22px; max-width: none; font-size: 16.5px; }
.rd-hero-actions { display: flex; flex-direction: row; flex-wrap: nowrap; align-items: stretch; gap: 12px; margin-top: 28px; width: 100%; }
.rd-hero-actions .rd-btn { flex: 1 1 0; min-width: 0; justify-content: center; white-space: nowrap; padding: 14px 18px; font-size: 14px; }

.rd-hero-features-band {
  background: var(--rd-cream);
  border-top: 1px solid var(--rd-line);
  padding: 20px 0;
  margin-top: 0;
}
.rd-hero-features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.rd-feat { display: flex; gap: 12px; align-items: flex-start; }
.rd-feat .fic { color: var(--rd-gold-deep); font-size: 24px; line-height: 1; margin-top: 2px; flex: 0 0 auto; }
.rd-feat h5 { font-family: var(--rd-sans); font-weight: 700; font-size: 14.5px; color: var(--rd-ink); line-height: 1.25; }
.rd-feat span { display: block; font-size: 12.5px; color: var(--rd-body); margin-top: 3px; }

/* hero image with gold arc + photo slide */
.rd-hero-visual { position: relative; align-self: stretch; min-height: 420px; }
.rd-hero-slide-layout {
  display: flex; align-items: center; gap: 16px;
  justify-content: center; height: 100%; min-height: 400px;
}
.rd-hero-thumbs {
  display: flex; flex-direction: column; gap: 14px;
  flex: 0 0 auto; padding-top: 36px;
  position: relative; z-index: 2;
}
.rd-hero-thumb {
  display: block; padding: 0; border: 2px solid var(--rd-line);
  border-radius: 10px; overflow: hidden; background: #fff;
  width: 92px; cursor: pointer;
  box-shadow: var(--rd-shadow-sm);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.rd-hero-thumb img {
  display: block; width: 100%; height: 68px; object-fit: cover;
}
.rd-hero-thumb:hover { border-color: var(--rd-gold-soft); transform: translateY(-2px); }
.rd-hero-thumb.is-active {
  border-color: var(--rd-gold-deep);
  box-shadow: 0 8px 24px rgba(184, 134, 47, .22);
}
.rd-hero-slide-main {
  position: relative; flex: 1 1 auto; max-width: 520px; min-width: 0;
  overflow: hidden; isolation: isolate;
}
.rd-hero-arc {
  position: absolute; right: -18px; top: 0; width: 104%; max-width: 540px; aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, transparent 63%, rgba(201,161,74,.0) 63%),
    conic-gradient(from -40deg, var(--rd-gold) 0deg, var(--rd-gold-soft) 70deg, transparent 150deg);
  -webkit-mask: radial-gradient(circle at center, transparent 60%, #000 60.5%);
          mask: radial-gradient(circle at center, transparent 60%, #000 60.5%);
  z-index: 0; opacity: .9; pointer-events: none;
}
.rd-hero-photo {
  position: relative; z-index: 1; margin: 24px 0 0 16px;
  border-radius: 280px 280px 18px 18px; overflow: hidden;
  box-shadow: var(--rd-shadow); aspect-ratio: 1/1; max-width: 520px;
  transition: opacity .35s ease;
}
.rd-hero-photo.is-fading { opacity: .15; }
.rd-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rd-vision-badge {
  position: absolute; right: 8px; bottom: 26px; z-index: 3;
  background: #fff; border-radius: 14px; box-shadow: var(--rd-shadow);
  padding: 12px 18px; display: flex; align-items: center; gap: 12px;
}
.rd-vision-badge .vb-ic { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--rd-gold-soft), var(--rd-gold-deep)); display: flex; align-items: center; justify-content: center; color: #fff; }
.rd-vision-badge span { font-family: var(--rd-sans); font-weight: 700; font-size: 13px; color: var(--rd-ink); line-height: 1.3; }

/* ============================ TRUSTED BY ============================ */
.rd-trusted { background: var(--rd-cream); padding: 8px 0 var(--rd-section-y-sm); }
.rd-trusted-box {
  background: #fff; border-radius: 16px; box-shadow: var(--rd-shadow-sm);
  padding: 26px 30px; position: relative;
}
.rd-trusted-title { text-align: center; font-family: var(--rd-sans); font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; font-size: 12px; color: var(--rd-body); margin-bottom: 18px; }
.rd-trusted-viewport { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.rd-trusted-track--marquee {
  display: flex; align-items: center; gap: 48px; width: max-content;
  animation: rd-trust-marquee 28s linear infinite;
}
.rd-trusted-track--marquee .brand-block { flex: 0 0 auto; border-left: none; padding: 0 12px; }
.rd-trusted .brand-block img {
  display: block; width: auto; max-width: 130px; height: 64px;
  object-fit: contain; object-position: center;
}
@keyframes rd-trust-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .rd-trusted-track--marquee { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
}


/* ============================ ABOUT ============================ */
.rd-about { background: #fff; padding: var(--rd-section-y) 0 var(--rd-section-y-sm); position: relative; }
.rd-about-grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: 40px; align-items: center; }
.rd-about-visual { position: relative; }
.rd-about-dots { position: absolute; left: -8px; top: -8px; width: 90px; height: 70px; z-index: 2; }
.rd-about-arc {
  position: absolute; left: -26px; top: -26px; width: 230px; height: 230px;
  border-radius: 50%;
  background: conic-gradient(from 140deg, var(--rd-gold) 0deg, var(--rd-gold-soft) 80deg, transparent 150deg);
  -webkit-mask: radial-gradient(circle at center, transparent 66%, #000 66.5%);
          mask: radial-gradient(circle at center, transparent 66%, #000 66.5%);
  z-index: 0;
}
.rd-about-photo { position: relative; z-index: 1; border-radius: 22px 140px 22px 22px; overflow: hidden; box-shadow: var(--rd-shadow); aspect-ratio: 1.02/1; }
.rd-about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rd-about h2 { font-size: 44px; line-height: 1.12; font-weight: 800; margin-top: 18px; letter-spacing: -.5px; }
.rd-about h2 .rd-accent { font-style: italic; }
.rd-about-copy > p { margin-top: 20px; max-width: 520px; }
.rd-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.rd-stat { border-left: 2px solid var(--rd-line); padding-left: 18px; }
.rd-stat .num { font-family: var(--rd-serif); font-weight: 800; font-size: 42px; color: var(--rd-gold-deep); line-height: 1; }
.rd-stat h5 { font-family: var(--rd-sans); font-weight: 700; font-size: 15px; color: var(--rd-ink); margin: 8px 0 6px; }
.rd-stat p { font-size: 13.5px; line-height: 1.55; }
.rd-about-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 36px;
}
.rd-callpill {
  display: flex; align-items: center; gap: 14px; min-width: 0;
  background: #fff; border: 1px solid var(--rd-line); border-radius: 44px;
  padding: 10px 26px 10px 12px; box-shadow: var(--rd-shadow-sm);
}
.rd-callpill .cp-ic { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--rd-gold-soft), var(--rd-gold-deep)); color: #fff; display: flex; align-items: center; justify-content: center; }
.rd-callpill small { display: block; font-size: 12px; color: var(--rd-body); }
.rd-callpill a { display: block; font-family: var(--rd-sans); font-weight: 700; color: var(--rd-ink); font-size: 17px; text-decoration: none; }

/* about feature cards strip */
.rd-about-cards-wrap {
  background: var(--rd-cream);
  border-top: 1px solid var(--rd-line);
  padding: var(--rd-section-y-sm) 0 var(--rd-section-y);
}
.rd-about-cards {
  background: #fff; border: 1px solid var(--rd-line); border-radius: 16px; box-shadow: var(--rd-shadow-sm);
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); width: 100%;
}
.rd-acard { padding: 24px 16px; border-right: 1px solid var(--rd-line); transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, background .35s ease; }
.rd-acard:last-child { border-right: none; }
.rd-acard .ac-ic { color: var(--rd-gold-deep); font-size: 30px; margin-bottom: 16px; transition: transform .4s cubic-bezier(.22,1,.36,1), color .3s ease; }
.rd-acard h5 { font-family: var(--rd-sans); font-weight: 700; font-size: 15.5px; color: var(--rd-ink); line-height: 1.3; margin-bottom: 10px; transition: color .3s ease; }
.rd-acard p { font-size: 13.5px; line-height: 1.6; }

/* scroll + hover motion for about feature cards */
@keyframes rdFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes rdArcFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
}
.rd-motion-item {
  opacity: 0;
  transform: translateY(28px);
}
.rd-motion-group.is-visible .rd-motion-item {
  animation: rdFadeUp .65s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay: calc(var(--i, 0) * 0.1s);
}
.rd-motion-group.is-visible .rd-motion-item:nth-child(1) { --i: 0; }
.rd-motion-group.is-visible .rd-motion-item:nth-child(2) { --i: 1; }
.rd-motion-group.is-visible .rd-motion-item:nth-child(3) { --i: 2; }
.rd-motion-group.is-visible .rd-motion-item:nth-child(4) { --i: 3; }
.rd-motion-group.is-visible .rd-motion-item:nth-child(5) { --i: 4; }
.rd-acard:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(26, 22, 12, 0.08);
  background: linear-gradient(180deg, #fff 0%, #fffbf5 100%);
}
.rd-acard:hover .ac-ic { color: var(--rd-gold); transform: scale(1.12) translateY(-3px); }
.rd-acard:hover h5 { color: var(--rd-gold-deep); }

/* ============================ SERVICES ============================ */
.rd-services { background: var(--rd-cream); padding: var(--rd-section-y) 0; position: relative; overflow: hidden; }
.rd-services .dots { position: absolute; left: 32%; top: 70px; width: 100px; height: 70px; }
.rd-services-grid { display: grid; grid-template-columns: 1fr 0.78fr 1.1fr; gap: 28px; align-items: center; }
.rd-services h2 { font-size: 42px; line-height: 1.12; font-weight: 800; margin-top: 18px; letter-spacing: -.5px; }
.rd-services-copy > p { margin-top: 18px; }
.rd-mini-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 16px; margin-top: 30px; }
.rd-mini { display: flex; gap: 12px; align-items: flex-start; }
.rd-mini .mic { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--rd-line); background:#fff; color: var(--rd-gold-deep); display: flex; align-items: center; justify-content: center; font-size: 17px; flex: 0 0 auto; }
.rd-mini span { font-family: var(--rd-sans); font-weight: 700; font-size: 14px; color: var(--rd-ink); line-height: 1.3; }
.rd-services-copy .rd-btn { margin-top: 34px; }

.rd-services-photo { position: relative; }
.rd-services-photo .ph { border-radius: 200px 200px 18px 18px; overflow: hidden; box-shadow: var(--rd-shadow); aspect-ratio: .72/1; }
.rd-services-photo .ph img { width: 100%; height: 100%; object-fit: cover; }
.rd-services-photo .arc { position: absolute; left: -22px; bottom: -22px; width: 170px; height: 170px; border-radius: 50%; background: conic-gradient(from 60deg, var(--rd-gold) 0deg, var(--rd-gold-soft) 80deg, transparent 150deg); -webkit-mask: radial-gradient(circle at center, transparent 66%, #000 66.5%); mask: radial-gradient(circle at center, transparent 66%, #000 66.5%); z-index: -1; animation: rdArcFloat 5s ease-in-out infinite; }

/* services accordion */
.rd-acc { background:#fff; border-radius: 18px; box-shadow: var(--rd-shadow); overflow: hidden; }
.rd-acc-item { border-bottom: 1px solid var(--rd-line); }
.rd-acc-item:last-child { border-bottom: none; }
.rd-acc-head { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 16px; padding: 22px 26px; text-align: left; }
.rd-acc-head .ic { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--rd-line); display: flex; align-items: center; justify-content: center; color: var(--rd-gold-deep); font-size: 18px; flex: 0 0 auto; transition: all .3s; }
.rd-acc-head .ttl { flex: 1; font-family: var(--rd-serif); font-weight: 700; font-size: 19px; color: var(--rd-ink); transition: color .3s; }
.rd-acc-head .no { font-family: var(--rd-sans); font-weight: 700; color: #c9c4b8; font-size: 16px; }
.rd-acc-head .chev { color: var(--rd-gold-deep); margin-left: 6px; transition: transform .3s; }
.rd-acc-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.rd-acc-body p { padding: 0 26px 24px 88px; font-size: 14.5px; }
.rd-acc-item.is-open { background: linear-gradient(135deg, var(--rd-gold-soft), var(--rd-gold-deep)); }
.rd-acc-item.is-open .rd-acc-head .ic { background: rgba(255,255,255,.2); border-color: transparent; color:#fff; }
.rd-acc-item.is-open .rd-acc-head .ttl,
.rd-acc-item.is-open .rd-acc-head .no { color: #fff; }
.rd-acc-item.is-open .rd-acc-head .chev { display: none; }
.rd-acc-item.is-open .rd-acc-body { max-height: 240px; }
.rd-acc-item.is-open .rd-acc-body p { color: rgba(255,255,255,.92); padding-bottom: 26px; }

/* ============================ DIGITAL SERVICES ============================ */
.rd-dservices { background: #fff; padding: var(--rd-section-y) 0; }
.rd-ds-head { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.rd-ds-head .rd-label.is-pill { margin-bottom: 16px; }
.rd-ds-head h2 { font-size: 42px; line-height: 1.14; font-weight: 800; letter-spacing: -.5px; }
.rd-ds-head h2 .rd-accent { font-style: italic; }
.rd-ds-head p { margin-top: 16px; font-size: 16px; }
.rd-ds-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.rd-ds-card {
  background: #fff; border: 1px solid var(--rd-line); border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .35s ease, box-shadow .35s ease;
}
.rd-ds-card:hover { transform: translateY(-8px); box-shadow: var(--rd-shadow); border-color: transparent; }
.rd-ds-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.rd-ds-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.rd-ds-card:hover .rd-ds-media img { transform: scale(1.06); }
.rd-ds-ic {
  position: absolute; left: 24px; bottom: -26px; width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--rd-gold-soft), var(--rd-gold-deep)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  box-shadow: 0 12px 24px rgba(184,134,47,.4); z-index: 2;
}
.rd-ds-body { padding: 42px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.rd-ds-body h3 { font-family: var(--rd-serif); font-weight: 700; font-size: 21px; color: var(--rd-ink); }
.rd-ds-body > p { margin-top: 12px; font-size: 14.5px; line-height: 1.65; }
.rd-ds-body ul { list-style: none; margin: 18px 0 0; padding: 0; }
.rd-ds-body ul li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--rd-ink); margin-bottom: 10px; }
.rd-ds-body ul li i { color: var(--rd-gold-deep); font-size: 13px; }
.rd-ds-link {
  margin-top: auto; padding-top: 20px; display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--rd-sans); font-weight: 700; font-size: 14.5px; color: var(--rd-gold-deep);
  text-decoration: none; transition: gap .25s ease;
}
.rd-ds-link:hover { color: var(--rd-gold-deep); gap: 16px; }

/* ============================ WHY CHOOSE ============================ */
.rd-choose { background: #fff; padding: var(--rd-section-y) 0; position: relative; }
.rd-choose-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 28px; align-items: center; }
.rd-choose h2 { font-size: 44px; line-height: 1.14; font-weight: 800; margin-top: 16px; letter-spacing: -.5px; }
.rd-choose-copy > p { margin: 14px 0 0; max-width: 480px; }
.rd-contact-row { display: flex; gap: 40px; margin-top: 30px; flex-wrap: wrap; }
.rd-contact-row .ci { display: flex; gap: 14px; align-items: flex-start; }
.rd-contact-row .ci .ic { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--rd-gold-soft), var(--rd-gold-deep)); color: #fff; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.rd-contact-row .ci h5 { font-family: var(--rd-sans); font-weight: 700; font-size: 15px; color: var(--rd-ink); margin-bottom: 4px; }
.rd-contact-row .ci p { font-size: 13.5px; line-height: 1.5; max-width: 220px; }
.rd-adv-title { font-family: var(--rd-sans); font-weight: 700; font-size: 18px; color: var(--rd-ink); margin: 20px 0 12px; position: relative; padding-bottom: 10px; }
.rd-adv-title::after { content:""; position:absolute; left:0; bottom:0; width: 46px; height: 2px; background: var(--rd-gold); }
.rd-adv { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; align-items: start; }
.rd-adv li { list-style: none; display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.4; color: var(--rd-ink); }
.rd-adv li i { color: var(--rd-gold-deep); flex: 0 0 auto; margin-top: 2px; font-size: 14px; }
.rd-choose-cta { margin-top: 18px; display: inline-flex; }

.rd-choose-visual {
  position: relative; width: 100%; min-height: 0;
  margin-top: 0;
}
.rd-choose-arc {
  position: absolute; right: -16px; top: 12px; width: min(100%, 400px); aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from -30deg, var(--rd-gold) 0deg, var(--rd-gold-soft) 70deg, transparent 150deg);
  -webkit-mask: radial-gradient(circle at center, transparent 62%, #000 62.5%);
          mask: radial-gradient(circle at center, transparent 62%, #000 62.5%);
  z-index: 0; pointer-events: none;
}
.rd-choose-dots { position: absolute; right: 8px; top: -8px; width: 88px; height: 60px; z-index: 2; }
.rd-choose-photo { position: relative; z-index: 1; width: 100%; max-width: 460px; margin-left: auto; }
.rd-choose-photo img {
  width: 100%; height: auto; max-width: 100%; display: block;
  border-radius: 12px; object-fit: cover; object-position: 42% 28%;
  aspect-ratio: 4 / 5; min-height: clamp(380px, 42vw, 540px);
}
.rd-badge-circle { position: absolute; right: 8px; bottom: 12px; z-index: 4; width: 96px; height: 96px; }
.rd-badge-circle img { display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: contain; }

/* ============================ APPOINTMENT ============================ */
.rd-appt { position: relative; padding: var(--rd-section-y) 0; background: var(--rd-cream-2); overflow: visible; }
.rd-appt-map { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .35; pointer-events: none; }
.rd-appt::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(251,248,242,.9), rgba(251,248,242,.55) 60%, rgba(251,248,242,.2)); pointer-events: none; }
.rd-appt .rd-container { position: relative; z-index: 2; overflow: visible; }
.rd-appt-card { background: #fff; border-radius: 22px; box-shadow: var(--rd-shadow); max-width: 720px; margin: 0 auto; padding: 46px 50px 50px; overflow: visible; }
.rd-appt-card .rd-label.is-pill { display: flex; margin: 0 auto 16px; width: max-content; }
.rd-appt-card h2 { text-align: center; font-size: 42px; font-weight: 800; }
.rd-appt-card h2 .rd-accent { font-style: italic; }
.rd-appt-card .sub { text-align: center; margin: 14px auto 30px; font-size: 14.5px; max-width: 460px; }
.rd-appt-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; overflow: visible; }
.rd-appt-form .full { grid-column: 1 / -1; }
.rd-field { position: relative; overflow: visible; }
.rd-field--select { z-index: 4; }
.rd-field--select:focus-within { z-index: 30; }
.rd-field i { position: absolute; left: 18px; top: 17px; color: var(--rd-gold-deep); font-size: 15px; }
.rd-field input, .rd-field select, .rd-field textarea {
  width: 100%; border: 1px solid var(--rd-line); border-radius: 10px; background: var(--rd-cream);
  padding: 14px 16px 14px 44px; font-family: var(--rd-sans); font-size: 14.5px; color: var(--rd-ink);
}
.rd-field select.rd-native-select {
  appearance: auto;
  cursor: pointer;
}
.rd-field--date { z-index: 3; }
.rd-field--date:focus-within { z-index: 35; }
.rd-date-pick { cursor: pointer; background-color: var(--rd-cream); }
.rd-date-pick[readonly] { background-color: var(--rd-cream); }
.rd-appt .flatpickr-calendar.open { z-index: 99999; }

/* ============================ CONTACT PAGE ============================ */
.rd-contact-detail-card {
  background: #fff;
  border: 1px solid var(--rd-line);
  border-radius: 16px;
  padding: 28px 22px 24px;
  box-shadow: var(--rd-shadow-sm);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rd-contact-detail-card .ic {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 0 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: linear-gradient(135deg, var(--rd-gold-soft), var(--rd-gold-deep));
  color: #fff; font-size: 18px;
}
.rd-contact-detail-card h3 {
  font-family: var(--rd-sans); font-size: 15px; font-weight: 700;
  color: var(--rd-ink); margin: 0 0 8px;
}
.rd-contact-detail-card p {
  font-family: var(--rd-sans); font-size: 14px; line-height: 1.5;
  color: var(--rd-ink-soft); margin: 0 0 10px; flex: 1;
}
.rd-contact-detail-card p a { color: inherit; text-decoration: none; }
.rd-contact-detail-card p a:hover { color: var(--rd-gold-deep); }
.rd-contact-detail-card small {
  display: block; font-family: var(--rd-sans); font-size: 12px;
  color: var(--rd-body); line-height: 1.4; margin-top: auto;
}
.rd-contact-detail-card small a { color: var(--rd-gold-deep); text-decoration: none; }
.rd-contact-detail-card small a:hover { text-decoration: underline; }
.rd-contact-page {
  padding: 56px 0 110px;
  background: var(--rd-cream-2);
}
.rd-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 36px;
  align-items: start;
}
.rd-contact-map-col {
  padding-top: 0;
}
.rd-contact-map-col .rd-label.is-pill,
.rd-contact-form-card .rd-label.is-pill {
  margin: 0 0 16px;
  display: inline-flex;
}
.rd-contact-map-col h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.12;
}
.rd-map-intro {
  font-family: var(--rd-sans); color: var(--rd-body);
  font-size: 15px; line-height: 1.65;
  margin-bottom: 20px; max-width: 480px;
}
.rd-map-wrap {
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--rd-line);
  box-shadow: var(--rd-shadow-sm);
  background: #e8e4dc;
  aspect-ratio: 16 / 10;
  min-height: 280px;
}
.rd-map-wrap iframe {
  display: block; width: 100%; height: 100%; min-height: 280px; border: 0;
}
.rd-contact-form-card {
  max-width: none; margin: 0;
  padding: 46px 44px 50px;
  overflow: visible;
}
.rd-contact-form-card h2 {
  text-align: left;
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 0;
}
.rd-contact-form-card .sub {
  text-align: left;
  margin: 14px 0 28px;
  font-size: 14px;
  line-height: 1.6;
  max-width: none;
}
.rd-contact-page .rd-appt-form { margin-top: 0; }
@media (max-width: 991px) {
  .rd-page-hero--contact { padding: 96px 0 88px; }
  .rd-contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .rd-page-hero--contact h1 { font-size: 34px; }
  .rd-contact-form-card { padding: 36px 28px 40px; }
}
@media (max-width: 575px) {
  .rd-map-wrap { min-height: 240px; aspect-ratio: auto; }
  .rd-map-wrap iframe { min-height: 240px; }
  .rd-contact-form-card { padding: 32px 22px 36px; }
}
.rd-field textarea { min-height: 120px; resize: vertical; }
.rd-field input:focus, .rd-field select:focus, .rd-field textarea:focus { outline: none; border-color: var(--rd-gold); background: #fff; }
.rd-appt-form .submit-wrap { grid-column: 1 / -1; text-align: center; margin-top: 6px; }

/* ============================ HEADER TOP BAR ============================ */
.main-header .header-top {
  --rd-topbar-bg: #8f6f3a;
  --rd-topbar-bg-hover: #a07f45;
  background: var(--rd-topbar-bg);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  padding: 6px 0;
}
.header-style-one .header-top::after,
.header-style-four .header-top::after,
.header-style-three .header-top::after,
.header-style-two .header-top::after {
  display: none;
}
.header-top .auto-container {
  max-width: 1240px;
  padding-left: var(--rd-site-pad-x);
  padding-right: var(--rd-site-pad-x);
  gap: 12px;
  flex-wrap: nowrap;
}
.header-top .top-left {
  flex: 1 1 auto;
  min-width: 0;
}
.header-top .top-left .info-list {
  flex-wrap: nowrap;
  gap: 20px;
  min-width: 0;
  color: #fff;
}
.header-top .top-left .info-list li {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  line-height: 1.35;
  min-width: 0;
  color: #fff;
}
.header-top .top-left .info-list li a {
  white-space: nowrap;
  color: #fff;
}
.header-top .top-left .info-list li a:hover {
  color: rgba(255, 255, 255, 0.82);
}
.header-top .top-left .info-list i {
  color: #fff !important;
}
.header-top .top-left .info-list li:nth-child(2) {
  max-width: min(460px, 36vw);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-top .top-right {
  flex: 0 0 auto;
  gap: 14px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-left: auto;
}
.header-top .top-right ul {
  gap: 14px;
  flex-wrap: nowrap;
}
.header-top .top-right ul li a {
  font-size: 13px;
  white-space: nowrap;
  color: #fff;
}
.header-top .top-right ul li a:hover {
  color: rgba(255, 255, 255, 0.82);
}
.header-top .top-right ul.top-social-icon li a {
  color: #fff;
}
.header-top .top-right ul.top-social-icon li a:hover {
  color: rgba(255, 255, 255, 0.82);
}
@media (max-width: 1280px) {
  .main-header .header-top .top-left .info-list li:nth-child(2) { display: none; }
}
@media (max-width: 1100px) {
  .main-header .header-top .top-right .useful-links { display: none; }
  .main-header .header-top .top-right ul { gap: 10px; }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .main-header .header-top { padding: 6px 0; }
  .main-header .header-top .auto-container { padding-left: 16px; padding-right: 16px; }
}
@media (max-width: 991.98px) {
  .main-header .header-top { display: none !important; }
}

/* Header main bar — group nav + CTA on the right; match site container width */
.main-header .main-box {
  max-width: 1240px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 8px var(--rd-site-pad-x);
  box-sizing: border-box;
  flex-wrap: nowrap;
  gap: 10px;
}
.main-header .main-box .logo-box {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 38%;
}
.main-header .main-menu .navigation {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  float: none;
}
.main-header .main-menu .navigation > li {
  float: none;
  flex: 0 0 auto;
  white-space: nowrap;
  padding-top: 12px;
  padding-bottom: 12px;
}
.main-header .main-menu .navigation > li > a {
  font-size: 14px;
  letter-spacing: 0.3px;
}
.main-header .main-box .nav-outer {
  flex: 1 1 auto;
  min-width: 0;
  margin-left: auto;
  margin-right: 0;
}
.main-header .outer-box {
  margin-left: 12px;
  flex: 0 0 auto;
  flex-shrink: 0;
}
.header-style-one .main-box .nav-outer .nav .navigation > li,
.header-style-four .main-box .nav-outer .nav .navigation > li,
.header-style-three .main-box .nav-outer .nav .navigation > li,
.header-style-two .main-box .nav-outer .nav .navigation > li {
  margin-right: 28px;
}
.header-style-one .outer-box .info-box,
.header-style-four .outer-box .info-box,
.header-style-three .outer-box .info-box,
.header-style-two .outer-box .info-box {
  gap: 14px;
}
.header-style-one .outer-box .info-box .btn-two,
.header-style-four .outer-box .info-box .btn-two,
.header-style-three .outer-box .info-box .btn-two,
.header-style-two .outer-box .info-box .btn-two {
  margin-left: 18px;
}
.main-header .main-box .logo-box .logo img {
  width: min(280px, 36vw);
  max-width: 100%;
  height: auto;
}
@media (max-width: 1400px) {
  .main-header .main-box .logo-box .logo img { width: min(220px, 30vw); }
  .main-header .main-box .logo-box { max-width: 34%; }
  .header-style-one .main-box .nav-outer .nav .navigation > li,
  .header-style-four .main-box .nav-outer .nav .navigation > li,
  .header-style-three .main-box .nav-outer .nav .navigation > li,
  .header-style-two .main-box .nav-outer .nav .navigation > li {
    margin-right: 18px;
  }
  .main-header .outer-box .info-box .btn-two {
    min-width: 0;
    padding: 12px 18px;
    font-size: 14px;
  }
}
@media (max-width: 1320px) and (min-width: 1181px) {
  .main-header .outer-box .info-box .btn-two { display: none; }
}
@media (max-width: 1280px) {
  .main-header .main-box .logo-box .logo img { width: min(190px, 28vw); }
  .main-header .main-box .logo-box { max-width: 32%; }
  .header-style-one .main-box .nav-outer .nav .navigation > li,
  .header-style-four .main-box .nav-outer .nav .navigation > li,
  .header-style-three .main-box .nav-outer .nav .navigation > li,
  .header-style-two .main-box .nav-outer .nav .navigation > li {
    margin-right: 14px;
  }
  .main-header .main-menu .navigation > li > a { font-size: 13px; }
  .main-header .outer-box { margin-left: 10px; }
  .main-header .outer-box .info-box .btn-two {
    padding: 10px 14px;
    font-size: 13px;
  }
}
@media (min-width: 992px) and (max-width: 1180px) {
  .main-header .main-box .nav-outer { display: none !important; }
  .main-header .outer-box .info-box { display: none !important; }
  .main-header .outer-box .mobile-nav-toggler {
    display: block !important;
    margin-left: 8px;
  }
  .main-header .main-box .logo-box { max-width: none; }
  .main-header .main-box .logo-box .logo img { width: min(200px, 42vw); }
}

/* Header — bigger logo + fix nav labels (FAQs not Faq) */
.main-header .mobile-menu .nav-logo img,
.main-header .hidden-bar .logo img {
  width: min(220px, 70vw);
  height: auto;
}
.main-header .useful-links a[href="page-faq.html"],
.main-menu .navigation a[href="page-faq.html"] { text-transform: none; letter-spacing: 0.02em; }
.main-menu .navigation > li > ul > li > a,
.main-menu .navigation > li > ul > li > ul > li > a { text-transform: none; }

/* Sub-submenu — flyout must not shrink to parent 220px column */
.main-header .main-menu .navigation > li > ul,
.main-header .main-menu .navigation > li > ul > li {
  overflow: visible;
}
.main-header .main-menu .navigation > li > ul > li > ul {
  width: 440px !important;
  min-width: 440px !important;
  max-width: none !important;
  box-sizing: border-box;
  overflow: visible;
}
.main-header .main-menu .navigation > li > ul > li > ul > li {
  width: 100%;
}
.main-header .main-menu .navigation > li > ul > li > ul > li > a {
  margin: 0 !important;
  padding: 10px 30px;
  white-space: nowrap;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .main-header .main-box .logo-box .logo img { width: min(220px, 52vw); }
}

.rd-footer {
  background: #fff; color: var(--rd-body); position: relative; overflow: hidden;
  font-family: var(--rd-sans); font-size: 14px; line-height: 1.5;
}
.rd-foot-shell > .rd-foot-cta { overflow: visible; z-index: 2; }
.rd-footer h3,
.rd-footer h4 {
  font-family: var(--rd-sans) !important;
  color: var(--rd-ink);
  font-style: normal;
}
.rd-footer .mission { font-family: var(--rd-script); font-style: normal; }
.rd-foot-shell {
  --rd-foot-cta-w: clamp(300px, 34vw, 420px);
  --rd-foot-pad-x: var(--rd-site-pad-x);
  --rd-foot-main-pad-top: 56px;
  --rd-foot-col-head: 50px;
  --rd-foot-body-gap: 16px;
  --rd-foot-link-gap: 10px;
  --rd-foot-text: 15px;
  --rd-foot-text-lh: 1.45;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--rd-foot-cta-w);
  grid-template-rows: auto 1fr auto;
  align-items: stretch;
}
.rd-foot-left { min-width: 0; display: flex; flex-direction: column; grid-column: 1; grid-row: 2 / 4; }
.rd-foot-contact {
  grid-column: 1 / -1;
  grid-row: 1;
  background: var(--rd-cream-2);
  border-bottom: 1px solid rgba(28, 28, 28, 0.08);
}
.rd-foot-contact .rd-container {
  width: 100%;
  max-width: 1240px;
  padding: 24px var(--rd-foot-pad-x) 28px;
  margin: 0 auto;
  box-sizing: border-box;
}
.rd-foot-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  width: 100%;
}
.rd-foot-contact .rd-contact-detail-card {
  padding: 22px 16px 20px;
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
}
.rd-foot-contact .rd-contact-detail-card .ic {
  flex: 0 0 auto;
  margin-bottom: 14px;
}
.rd-foot-contact .rd-contact-detail-card h3 {
  flex: 0 0 auto;
  font-family: var(--rd-sans) !important;
  font-size: 15px !important;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 10px !important;
  min-height: 1.3em;
  color: var(--rd-ink);
}
.rd-foot-contact .rd-contact-detail-card p {
  flex: 1 1 auto;
  width: 100%;
  margin: 0 !important;
  padding: 0;
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: var(--rd-ink-soft) !important;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}
.rd-foot-contact .rd-contact-detail-card p a {
  color: inherit;
  text-decoration: none;
}
.rd-foot-contact .rd-contact-detail-card p a:hover {
  color: var(--rd-gold-deep);
}
.rd-foot-contact .rd-contact-detail-card small {
  flex: 0 0 auto;
  width: 100%;
  margin-top: 10px !important;
  padding-top: 0;
  min-height: 0;
  display: block;
  text-align: center;
  font-size: 12px;
  line-height: 1.4;
  color: var(--rd-body);
}
.rd-foot-contact .rd-contact-detail-card small a {
  color: var(--rd-gold-deep);
  text-decoration: none;
}
.rd-foot-contact .rd-contact-detail-card small a:hover {
  text-decoration: underline;
}

.rd-foot-main { background: #fff; flex: 1; }
.rd-foot-main > .rd-container {
  display: grid;
  grid-template-columns: 1.28fr 0.92fr 0.78fr 1.02fr;
  column-gap: 28px;
  row-gap: 0;
  align-items: start;
  padding: var(--rd-foot-main-pad-top) var(--rd-foot-pad-x) 56px;
  max-width: none; width: 100%; margin: 0; box-sizing: border-box;
}
.rd-foot-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
@supports (grid-template-rows: subgrid) {
  .rd-foot-main > .rd-container {
    grid-template-rows: auto auto;
  }
  .rd-foot-col {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 0;
  }
}
.rd-footer p,
.rd-footer li,
.rd-footer a,
.rd-footer button,
.rd-footer input {
  font-family: var(--rd-sans);
}
.rd-footer .rd-foot-col p,
.rd-footer .rd-foot-cta p {
  font-size: var(--rd-foot-text) !important;
  line-height: var(--rd-foot-text-lh) !important;
  margin: 0;
  color: var(--rd-body);
}
.rd-foot-col > h4 {
  font-weight: 700;
  font-size: 13px;
  margin: 0 0 var(--rd-foot-body-gap);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 0 0 11px;
  border: none;
  line-height: 1.25;
  position: relative;
  box-sizing: border-box;
}
.rd-foot-col > h4,
.rd-foot-brand .rd-foot-logo {
  min-height: var(--rd-foot-col-head);
  margin-bottom: var(--rd-foot-body-gap);
  flex: 0 0 auto;
}
.rd-foot-brand .rd-foot-logo {
  display: flex;
  align-items: flex-end;
}
.rd-foot-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--rd-gold);
}
.rd-foot-brand { padding-right: 12px; }
.rd-foot-brand .rd-foot-logo img { width: min(210px, 100%); height: auto; display: block; }
.rd-foot-brand-body {
  display: flex;
  flex-direction: column;
  gap: var(--rd-foot-body-gap);
}
.rd-foot-brand-body > p {
  max-width: 280px;
}
.rd-foot-brand-body > h4 {
  margin: 2px 0 0;
  padding-bottom: 0;
  font-size: 13px;
  letter-spacing: 1.4px;
}
.rd-foot-brand-body > h4::after { display: none; }
.rd-foot-social { display: flex; gap: 10px; margin: 0; flex-wrap: wrap; }
.rd-foot-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(28, 28, 28, 0.14);
  color: var(--rd-ink); background: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: background .25s, border-color .25s, color .25s;
}
.rd-foot-social a:hover { background: var(--rd-gold); border-color: var(--rd-gold); color: #fff; }
.rd-foot-newsletter-body {
  display: flex;
  flex-direction: column;
  gap: var(--rd-foot-body-gap);
}
.rd-foot-news-note {
  margin: 0;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.rd-foot-col ul {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: var(--rd-foot-link-gap);
}
.rd-foot-col ul li {
  margin: 0 !important;
  padding: 0;
  line-height: var(--rd-foot-text-lh);
}
.rd-foot-col ul li a {
  color: var(--rd-body); text-decoration: none;
  font-size: var(--rd-foot-text);
  font-weight: 400;
  transition: color .25s;
  line-height: var(--rd-foot-text-lh);
  display: block;
}
.rd-foot-col ul li a::before { display: none !important; }
.rd-foot-col ul li a:hover { color: var(--rd-gold-deep); }
.rd-news-form--stack { display: flex; flex-direction: column; gap: var(--rd-foot-body-gap); width: 100%; margin: 0; }
.rd-news-form--stack input {
  width: 100%; min-width: 0; box-sizing: border-box;
  border: 1px solid var(--rd-line); border-radius: 8px;
  padding: 13px 16px; font-family: var(--rd-sans); font-size: 14px; background: #fff;
}
.rd-footer .rd-btn.rd-btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--rd-sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 28px;
  border-radius: 40px;
  border: none;
  box-shadow: 0 14px 26px rgba(184, 134, 47, .28);
}
.rd-news-subscribe { width: 100%; cursor: pointer; }
/* Right CTA panel — full height beside contact bar + columns */
.rd-foot-shell > .rd-foot-cta {
  grid-column: 2; grid-row: 2 / 4;
  position: relative; min-height: 100%;
  background-color: var(--rd-cream);
  background-image: url('../images/shape/footer-one-shape.png');
  background-size: cover; background-position: center;
  border-top-left-radius: 200px;
  display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start;
  padding: var(--rd-foot-main-pad-top) 36px 64px 44px;
  box-sizing: border-box;
  overflow: visible;
}
.rd-foot-cta h3 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
  max-width: 100%;
  padding-right: 8px;
}
.rd-foot-cta p {
  color: var(--rd-body);
  font-size: var(--rd-foot-text);
  line-height: var(--rd-foot-text-lh);
  margin: 14px 0 0;
  max-width: 300px;
}
.rd-foot-cta-btn { margin-top: 18px; align-self: flex-start; }

.rd-foot-bottom {
  background: var(--rd-cream);
  border-top: 1px solid var(--rd-line);
  margin-top: auto;
}
.rd-foot-bottom .rd-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px var(--rd-site-pad-x);
  box-sizing: border-box;
  min-height: 56px;
}
.rd-foot-bottom .cp {
  font-family: var(--rd-sans);
  font-size: 13px;
  font-weight: 400;
  color: #8a8d93;
  line-height: 1.4;
  margin: 0;
  flex: 1 1 auto;
}
.rd-foot-bottom .mission {
  font-family: var(--rd-script) !important;
  font-style: normal;
  color: var(--rd-gold-deep);
  font-size: 26px;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
  flex: 0 0 auto;
}

/* Service grid page — card photo thumbnails */
.case-section.bg-thm1 { background: #f8f6f2 !important; }
.case-section .row.g-0 { --bs-gutter-x: 24px; --bs-gutter-y: 24px; }
.case-section .service-block-two .inner-box:has(.service-block-thumb) {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 28px;
  text-align: left;
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 36px rgba(28, 28, 28, 0.07);
  overflow: hidden;
  margin: 12px;
  height: calc(100% - 24px);
  background: #fff;
}
.case-section .service-block-two .inner-box:has(.service-block-thumb):hover {
  background: #fff;
}
.case-section .service-block-two .inner-box:has(.service-block-thumb) .block-bg {
  display: none;
}
.service-block-two .service-block-thumb {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.service-block-two .service-block-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-block-two .inner-box:has(.service-block-thumb) .icon {
  width: 72px;
  height: 72px;
  line-height: 72px;
  border-radius: 12px;
  margin: -36px 0 18px 24px;
  z-index: 2;
}
.service-block-two .inner-box:has(.service-block-thumb) .icon svg {
  width: 40px;
}
.service-block-two .inner-box:has(.service-block-thumb) .content-box {
  padding: 0 24px;
}
.service-block-two .inner-box:has(.service-block-thumb) .content-box .title {
  font-family: var(--rd-serif);
  font-size: 24px;
  font-weight: 800;
  text-align: left;
  margin-bottom: 0;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--rd-gold);
  display: block;
}
.service-block-two .inner-box:has(.service-block-thumb) .content-box .text {
  margin: 16px 0 0;
  max-width: none;
  text-align: left;
  font-size: 15px;
  line-height: 1.65;
  color: var(--rd-body);
}
.service-block-two .service-grid-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.service-block-two .service-grid-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(28, 28, 28, 0.08);
  font-size: 14px;
  line-height: 1.45;
  color: var(--rd-ink);
}
.service-block-two .service-grid-list li:last-child {
  border-bottom: none;
}
.service-block-two .service-grid-list li i {
  color: var(--rd-gold-deep);
  font-size: 12px;
  margin-top: 4px;
  flex: 0 0 auto;
}
.service-block-two .service-grid-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--rd-sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--rd-gold-deep);
  text-decoration: none;
  text-transform: none;
  transition: gap .25s ease, color .25s ease;
}
.service-block-two .service-grid-link:hover {
  color: var(--rd-ink);
  gap: 12px;
}
.service-block-two .inner-box:has(.service-block-thumb):hover .icon i path,
.service-block-two .inner-box:has(.service-block-thumb):hover .icon svg path {
  fill: #000;
}
@media (max-width: 991.98px) {
  .service-block-two .inner-box:has(.service-block-thumb) .icon { margin-left: 16px; }
  .service-block-two .inner-box:has(.service-block-thumb) .content-box { padding: 0 18px; }
}

/* ============================ SERVICE DETAIL PAGES ============================ */
.rd-page-hero { position: relative; padding: 150px 0 80px; background-size: cover; background-position: center; }
.rd-page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(20,18,12,.88), rgba(20,18,12,.58)); }
.rd-page-hero .rd-container { position: relative; z-index: 2; }
.rd-page-hero .rd-label { color: var(--rd-gold-soft); }
.rd-page-hero .rd-label::before { background: var(--rd-gold-soft); }
.rd-page-hero h1 { color: #fff; font-size: 52px; font-weight: 800; margin-top: 14px; max-width: 780px; line-height: 1.1; letter-spacing: -.5px; }
.rd-page-hero .crumb { margin-top: 18px; display: flex; gap: 10px; align-items: center; font-family: var(--rd-sans); font-size: 14px; color: #e7e3da; }
.rd-page-hero .crumb a { color: var(--rd-gold-soft); text-decoration: none; }
.rd-page-hero .crumb i { font-size: 10px; color: var(--rd-gold-soft); }
.rd-page-hero.rd-page-hero--contact {
  padding: 118px 0 108px;
  background-image: url('../images/background/page-title-bg-640.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
}
@media (min-width: 768px) {
  .rd-page-hero.rd-page-hero--contact { background-image: url('../images/background/page-title-bg-1280.jpg'); }
}
.rd-page-hero.rd-page-hero--contact h1 {
  font-size: clamp(34px, 4.5vw, 48px);
  margin: 14px auto 16px;
  max-width: none;
}
.rd-page-hero.rd-page-hero--contact p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.65;
}
.rd-page-hero.rd-page-hero--contact .rd-label.is-pill {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--rd-gold-soft);
}

.rd-overview { padding: 90px 0; background: #fff; }
.rd-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.rd-overview-img { border-radius: 20px; overflow: hidden; box-shadow: var(--rd-shadow); }
.rd-overview-img img { width: 100%; display: block; }
.rd-overview h2 { font-size: 36px; font-weight: 800; line-height: 1.18; letter-spacing: -.4px; }
.rd-overview .rd-label { margin-bottom: 14px; }
.rd-overview-copy > p { margin-top: 16px; }
.rd-overview .lists { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 28px; }
.rd-overview .lists h5 { font-family: var(--rd-sans); font-weight: 700; color: var(--rd-ink); margin-bottom: 14px; font-size: 15px; }
.rd-overview .lists ul { list-style: none; margin: 0; padding: 0; }
.rd-overview .lists li { display: flex; gap: 10px; font-size: 14px; color: var(--rd-ink); margin-bottom: 11px; align-items: flex-start; line-height: 1.4; }
.rd-overview .lists li i { color: var(--rd-gold-deep); margin-top: 4px; font-size: 12px; flex: 0 0 auto; }

.rd-pricing { padding: 90px 0; background: var(--rd-cream); }
.rd-pricing .rd-ds-head { margin-bottom: 46px; }
.rd-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.rd-price-card { background: #fff; border: 1px solid var(--rd-line); border-radius: 18px; padding: 36px 28px; display: flex; flex-direction: column; position: relative; transition: all .3s; }
.rd-price-card:hover { box-shadow: var(--rd-shadow); }
.rd-price-card.popular { border-color: var(--rd-gold); box-shadow: var(--rd-shadow); }
.rd-price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--rd-gold-soft), var(--rd-gold-deep)); color: #fff; font-family: var(--rd-sans); font-weight: 700; font-size: 11.5px; letter-spacing: 1px; text-transform: uppercase; padding: 6px 16px; border-radius: 30px; white-space: nowrap; }
.rd-price-card h4 { font-family: var(--rd-sans); font-weight: 700; font-size: 18px; color: var(--rd-ink); }
.rd-price-amount { margin: 16px 0 4px; display: flex; flex-direction: column; align-items: flex-start; gap: 5px; line-height: 1; }
.rd-price-amount .rd-price-cur { font-family: var(--rd-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rd-gold-deep); line-height: 1; }
.rd-price-amount .rd-price-value { display: inline-flex; align-items: baseline; flex-wrap: nowrap; gap: 0 4px; font-family: var(--rd-serif); font-weight: 800; color: var(--rd-ink); font-size: clamp(30px, 4.5vw, 40px); line-height: 1; white-space: nowrap; }
.rd-price-amount .rd-price-symbol { font-size: 0.62em; font-weight: 700; color: var(--rd-gold-deep); line-height: 1; }
.rd-price-amount small { font-family: var(--rd-sans); font-weight: 600; font-size: 0.36em; color: var(--rd-body); white-space: nowrap; }
.rd-price-card > p { font-size: 13.5px; margin-top: 10px; line-height: 1.55; }
.rd-price-card ul { list-style: none; margin: 22px 0 26px; padding: 0; flex: 1; }
.rd-price-card ul li { display: flex; gap: 10px; font-size: 14px; color: var(--rd-ink); margin-bottom: 12px; align-items: flex-start; line-height: 1.4; }
.rd-price-card ul li i { color: var(--rd-gold-deep); margin-top: 3px; font-size: 12px; flex: 0 0 auto; }
.rd-price-card .rd-btn { justify-content: center; }
.rd-price-note { text-align: center; margin-top: 30px; font-size: 13px; color: var(--rd-body); }

.rd-cta-band { background: var(--rd-dark); padding: 70px 0; text-align: center; }
.rd-cta-band h2 { color: #fff; font-size: 36px; font-weight: 800; }
.rd-cta-band h2 .rd-accent { font-style: italic; }
.rd-cta-band p { color: #b9bcc2; margin: 14px auto 28px; max-width: 540px; }
.rd-cta-band .rd-btn { margin: 0 auto; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1199px) {
  .rd-hero h1 { font-size: 52px; }
  .rd-services-grid { grid-template-columns: 1fr 1fr; }
  .rd-services-photo { display: none; }
  .rd-ds-grid { grid-template-columns: repeat(2, 1fr); }
  .rd-foot-shell {
    --rd-foot-cta-w: clamp(280px, 36vw, 380px);
    grid-template-columns: minmax(0, 1fr) var(--rd-foot-cta-w);
  }
  .rd-foot-main > .rd-container { grid-template-columns: 1fr 1fr; padding: 48px var(--rd-foot-pad-x); }
  .rd-foot-shell {
    --rd-foot-main-pad-top: 48px;
    --rd-foot-col-head: 48px;
  }
  .rd-foot-contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .rd-foot-shell > .rd-foot-cta {
    padding: var(--rd-foot-main-pad-top) 32px 40px 40px;
    border-top-left-radius: 160px;
  }
  .rd-pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .rd-price-card.popular { transform: none; }
}
/* About CTA: stack cleanly when the copy column is too narrow for a side-by-side row */
@media (min-width: 992px) and (max-width: 1100px), (max-width: 520px) {
  .rd-about-actions { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 991px) {
  .rd-hero-grid, .rd-about-grid, .rd-choose-grid { grid-template-columns: 1fr; }
  .rd-hero-visual { min-height: 440px; }
  .rd-choose-visual { margin-top: 28px; min-height: 0; }
  .rd-choose-photo { max-width: 520px; margin: 0 auto; }
  .rd-hero-slide-layout { flex-direction: column-reverse; align-items: center; min-height: 0; }
  .rd-hero-thumbs { flex-direction: row; padding-top: 0; justify-content: center; }
  .rd-hero-thumb { width: 84px; }
  .rd-hero-thumb img { height: 62px; }
  .rd-hero-slide-main { max-width: 100%; width: 100%; }
  .rd-hero-photo { margin: 24px auto 0; }
  .rd-hero-arc { right: 50%; transform: translateX(50%); width: min(92vw, 460px); height: min(92vw, 460px); }
  .rd-hero h1 { font-size: 46px; }
  .rd-overview-grid { grid-template-columns: 1fr; gap: 36px; }
  .rd-page-hero h1 { font-size: 40px; }
  .rd-about-cards { grid-template-columns: repeat(2, 1fr); }
  .rd-acard { border-bottom: 1px solid var(--rd-line); }
  .rd-services-grid { grid-template-columns: 1fr; }
  .rd-foot-shell { grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
  .rd-foot-shell > .rd-foot-cta {
    grid-column: 1; grid-row: 1;
    border-top-left-radius: 0; min-height: 300px;
    padding: 48px var(--rd-foot-pad-x) 40px;
  }
  .rd-foot-contact { grid-column: 1; grid-row: 2; }
  .rd-foot-left { grid-column: 1; grid-row: 3; }
  .rd-foot-contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rd-foot-main > .rd-container { grid-template-columns: 1fr 1fr; padding: 40px var(--rd-foot-pad-x); }
  .rd-foot-bottom .rd-container { flex-direction: column; text-align: center; }
}
@media (max-width: 767px) {
  .rd-hero h1 { font-size: 38px; }
  .rd-hero-features { grid-template-columns: 1fr 1fr; gap: 22px; }
  .rd-trusted-track { flex-wrap: wrap; justify-content: center; gap: 24px; }
  .rd-trusted-track .brand-block { flex: 0 0 40%; border-left: none; }
  .rd-stats { grid-template-columns: 1fr; gap: 24px; }
  .rd-about h2, .rd-services h2, .rd-choose h2, .rd-appt-card h2 { font-size: 32px; }
  .rd-about-cards { grid-template-columns: 1fr; }
  .rd-mini-feats, .rd-adv, .rd-appt-form { grid-template-columns: 1fr; }
  .rd-overview .lists { grid-template-columns: 1fr; }
  .rd-page-hero h1, .rd-overview h2, .rd-cta-band h2 { font-size: 30px; }
  .rd-contact-row { flex-direction: column; gap: 20px; }
  .rd-ds-grid { grid-template-columns: 1fr; }
  .rd-ds-head h2 { font-size: 32px; }
  .rd-appt-card { padding: 32px 22px; }
  .rd-foot-shell { --rd-foot-pad-x: 20px; }
  .rd-foot-contact .rd-container { padding: 24px var(--rd-foot-pad-x) 28px; }
  .rd-foot-contact-grid { grid-template-columns: 1fr; gap: 16px; }
  .rd-foot-main > .rd-container { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
  .rd-hero-features { grid-template-columns: 1fr; }
  .rd-hero-actions { flex-direction: column; align-items: stretch; flex-wrap: wrap; }
  .rd-hero-actions .rd-btn { justify-content: center; width: 100%; padding: 15px 30px; font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .preloader:after { -webkit-animation: none; animation: none; transform: translate(-50%, -50%); }
  .rd-motion-item { opacity: 1; transform: none; animation: none !important; }
  .rd-acard, .rd-acard .ac-ic, .rd-acard h5 { transition: none; }
  .rd-acard:hover { transform: none; box-shadow: none; background: transparent; }
  .rd-services-photo .arc { animation: none; }
}
