/* 1. Reset */
*,
*::before,
*::after {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body,
h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0
}

img {
  display: block;
  max-width: 100%;
  height: auto
}

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

button,
input,
textarea {
  font: inherit
}

button {
  cursor: pointer
}

body {
  overflow-x: hidden
}

/* 2. Variables */
:root {
  --wine: #4b1718;
  --wine-2: #2b0d0f;
  --wine-3: #641d20;
  --gold: #d6a64a;
  --gold-light: #f3d18c;
  --cream: #fbf6ec;
  --warm: #f3eadb;
  --ink: #1f1917;
  --muted: #736966;
  --white: #fff;
  --line: rgba(62, 34, 27, .15);
  --radius: 18px;
  --shadow: 0 18px 55px rgba(37, 16, 14, .12);
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Inter', Arial, sans-serif;
  --container: 1400px;
  --section: 104px
}

/* 3. Global styles */
html {
  background: var(--cream)
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto
}

.section {
  padding: var(--section) 0
}

.section-dark {
  background: var(--wine-2);
  color: var(--white)
}

.section-warm {
  background: var(--warm)
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.16;
  letter-spacing: -.02em
}

h1 {
  font-size: clamp(2.75rem, 5vw, 5.4rem)
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.6rem)
}

h3 {
  font-size: 1.25rem
}

h2 em {
  font-style: normal;
  color: var(--wine)
}

.lead {
  font-size: 1.1rem;
  color: #4d4542
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--wine-3);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .16em;
  margin-bottom: 18px
}

.eyebrow span {
  display: inline-block;
  width: 34px;
  height: 1px;
  background: var(--gold)
}

.eyebrow--light {
  color: var(--gold-light)
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.1;
  transition: .25s ease
}

.btn:hover {
  transform: translateY(-2px)
}

.btn--lg {
  min-height: 56px;
  padding: 16px 28px
}

.btn--gold {
  background: var(--gold);
  color: #24150e;
  box-shadow: 0 10px 28px rgba(214, 166, 74, .22)
}

.btn--gold:hover {
  background: #e3b95f
}

.btn--wine {
  background: var(--wine);
  color: #fff
}

.btn--wine:hover {
  background: var(--wine-3)
}

.btn--outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .04)
}

.btn--outline-light:hover {
  background: #fff;
  color: var(--wine-2)
}

.text-link {
  font-weight: 700;
  color: var(--wine);
  display: inline-block;
  margin-top: 18px
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -100px;
  z-index: 9999;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 6px
}

.skip-link:focus {
  top: 12px
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease
}

.reveal.is-visible {
  opacity: 1;
  transform: none
}



/* 6. About */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 88px;
  align-items: center
}

.about__visual {
  position: relative
}

.portrait-frame {
  position: relative;
  max-width: 510px;
  margin: auto;
  padding: 14px;
  border: 1px solid rgba(119, 76, 56, .18);
  border-radius: 240px 240px 20px 20px;
  background: #fff;
  box-shadow: var(--shadow)
}

.portrait-frame img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  border-radius: 220px 220px 12px 12px
}

.experience-badge {
  position: absolute;
  right: -36px;
  bottom: 58px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--wine);
  color: #fff;
  border: 8px solid var(--cream);
  box-shadow: var(--shadow)
}

.experience-badge strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light)
}

.experience-badge span {
  font-size: .68rem;
  line-height: 1.35
}

.about__ornament {
  position: absolute;
  left: -10px;
  top: 40px;
  font-size: 3rem;
  color: var(--gold);
  opacity: .55
}

.about__content h2 {
  margin-bottom: 22px
}

.about__content>p:not(.eyebrow) {
  margin-bottom: 18px;
  color: #625956
}

.about__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0 30px
}

.about__points>div {
  display: flex;
  gap: 12px
}

.about__points span {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #efe1c3;
  color: var(--wine);
  font-weight: 800
}

.about__points p {
  font-size: .88rem;
  line-height: 1.5;
  color: #6c625f
}

.about__points strong {
  color: var(--ink)
}

/* 7. Form */
.consult__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  overflow: hidden;
  border-radius: 26px;
  background: var(--wine);
  box-shadow: var(--shadow)
}

.consult__copy {
  padding: 58px;
  color: #fff;
  background: linear-gradient(145deg, var(--wine), #321012)
}

.consult__copy h2 {
  margin-bottom: 16px
}

.consult__copy>p:not(.eyebrow) {
  color: #eaded6;
  max-width: 420px
}

.consult__contact {
  display: grid;
  gap: 16px;
  margin-top: 36px
}

.consult__contact a {
  display: grid;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .16)
}

.consult__contact b {
  font-family: var(--font-display);
  color: var(--gold-light)
}

.consult__contact span {
  font-size: .88rem;
  color: #eaded6
}

.consult-form {
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: #fff
}

.field {
  display: grid;
  gap: 8px
}

.field--full {
  grid-column: 1/-1
}

.field label {
  font-size: .78rem;
  font-weight: 700;
  color: #5b504d
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #ded4cb;
  border-radius: 12px;
  background: #fcfaf6;
  padding: 14px 15px;
  outline: none;
  transition: .2s
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214, 166, 74, .15);
  background: #fff
}

.field textarea {
  resize: vertical;
  min-height: 130px
}

.form-status {
  font-size: .82rem;
  color: var(--wine);
  min-height: 1.2em
}

/* 8. Solutions */
.section-heading {
  max-width: 750px;
  margin-bottom: 42px
}

.section-heading--center {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 52px
}

.section-heading--center .eyebrow {
  justify-content: center
}

.section-heading p:not(.eyebrow) {
  margin-top: 16px;
  color: #6a615e
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.solution-card {
  position: relative;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 40px rgba(65, 28, 20, .06);
  overflow: hidden;
  transition: .3s
}

.solution-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--gold);
  transition: .3s
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}

.solution-card:hover::before {
  height: 100%
}

.solution-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f4e8d1;
  color: var(--wine);
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 22px
}

.solution-card h3 {
  margin-bottom: 10px
}

.solution-card p {
  color: #716663;
  font-size: .9rem
}

.solution-card a {
  display: inline-block;
  margin-top: 20px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--wine)
}

/* 9. Services */
.services {
  background: linear-gradient(180deg, #2a0b0d, #3b1114);
  position: relative;
  overflow: hidden
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(214, 166, 74, .08), transparent 18%), radial-gradient(circle at 90% 70%, rgba(214, 166, 74, .07), transparent 16%);
  pointer-events: none
}

.services .section-heading {
  position: relative
}

.services .section-heading p:not(.eyebrow) {
  color: #d9c9c2
}

.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.service-card {
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .16);
  transition: .3s
}

.service-card:hover {
  transform: translateY(-7px)
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.42/1;
  object-fit: cover
}

.service-card__body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.service-card__body>span {
  font-family: var(--font-display);
  font-size: .75rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px
}

.service-card p {
  font-size: .87rem;
  color: #6f6561;
  margin-bottom: 22px
}

.service-card a {
  margin-top: auto;
  padding: 10px 10px;
  border-top: 1px solid #eee3da;
  color:#fff;
  font-size: .78rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background-color: #3b1114;
  border-radius: 9px;
}

.service-card a b {
  font-weight: 700
}

/* 10. Why Choose */
.trust__grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 76px;
  align-items: start
}

.trust__intro {
  position: sticky;
  top: 130px
}

.trust__intro h2 {
  margin-bottom: 18px
}

.trust__intro>p:not(.eyebrow) {
  color: #6e6460
}

.trust__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff
}

.feature {
  padding: 34px;
  min-height: 220px
}

.feature:nth-child(1),
.feature:nth-child(3) {
  border-right: 1px solid var(--line)
}

.feature:nth-child(-n+2) {
  border-bottom: 1px solid var(--line)
}

.feature>div {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--wine);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 26px
}

.feature h3 {
  margin-bottom: 10px
}

.feature p {
  color: #726763;
  font-size: .9rem
}

/* 11. FAQ */
.faq__grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 74px;
  align-items: start
}

.faq__intro {
  position: sticky;
  top: 130px
}

.faq__intro h2 {
  margin-bottom: 16px
}

.faq__intro>p:not(.eyebrow) {
  color: #6e6460;
  margin-bottom: 28px
}

.accordion {
  background: #fff;
  border-radius: 20px;
  padding: 8px 26px;
  box-shadow: 0 14px 42px rgba(50, 24, 17, .07)
}

.faq-item {
  border-bottom: 1px solid #e9ded5
}

.faq-item:last-child {
  border-bottom: 0
}

.faq-item h3 {
  font-family: var(--font-body)
}

.faq-item button {
  width: 100%;
  padding: 23px 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  color: var(--ink);
  font-weight: 700
}

.faq-item button span {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f2e7d4;
  color: var(--wine);
  font-size: 1.25rem;
  transition: .25s
}

.faq-item button[aria-expanded="true"] span {
  transform: rotate(45deg);
  background: var(--wine);
  color: #fff
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease
}

.faq-answer>div {
  overflow: hidden
}

.faq-answer p {
  padding: 0 52px 22px 0;
  color: #746965;
  font-size: .9rem
}

.faq-item button[aria-expanded="true"]+.faq-answer {
  grid-template-rows: 1fr
}

/* 12. Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.testimonial {
  padding: 34px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(53, 26, 19, .06)
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.75;
  color: #3d3330;
  position: relative;
  padding-top: 28px
}

.testimonial blockquote::before {
  content: '“';
  position: absolute;
  top: -22px;
  left: -3px;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid #eee2d9
}

.testimonial figcaption>span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--wine);
  color: var(--gold-light);
  font-family: var(--font-display)
}

.testimonial figcaption div {
  display: grid
}

.testimonial figcaption strong {
  font-size: .9rem
}

.testimonial figcaption small {
  color: var(--muted);
  font-size: .73rem
}

/* 13. Contact */
.contact {
  background: #240a0c
}

.contact__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 46px;
  align-items: stretch
}

.contact__content h2 {
  margin-bottom: 18px
}

.contact__business {
  color: #dfd0c8;
  max-width: 550px
}

.contact address {
  font-style: normal;
  display: grid;
  gap: 0;
  margin: 34px 0
}

.contact address a {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, .12)
}

.contact address a>span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(214, 166, 74, .12);
  color: var(--gold-light)
}

.contact address a div {
  display: grid;
  min-width: 0
}

.contact address small {
  font-size: .7rem;
  color: #bca9a2
}

.contact address strong {
  font-size: .87rem;
  font-weight: 600;
  overflow-wrap: anywhere
}

.contact__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.map-wrap {
  min-height: 500px;
  border-radius: 20px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, .05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25)
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  display: block;
  filter: saturate(.75) contrast(.95)
}



/* 15. Responsive media queries */
@media (max-width:1199px) {
  :root {
    --section: 88px;
    --container: 1080px
  }

  .desktop-nav {
    gap: 18px
  }

  .header__cta {
    display: none
  }

  .hero {
    min-height: 680px
  }

  .about__grid {
    gap: 58px
  }

  .portrait-frame img {
    height: 520px
  }

  .experience-badge {
    right: -18px
  }

  .consult__copy {
    padding: 45px
  }

  .consult-form {
    padding: 40px
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .trust__grid,
  .faq__grid {
    gap: 48px
  }

  .footer__grid {
    grid-template-columns: 1.2fr .8fr .8fr 1.1fr;
    gap: 30px
  }
}

@media (max-width:900px) {
  .topbar__message {
    display: none
  }

  .topbar__inner {
    justify-content: center
  }

  .desktop-nav {
    display: none
  }

  .header__cta {
    display: inline-flex;
    margin-left: auto
  }

  .menu-toggle {
    display: block
  }

  .mobile-nav {
    display: grid;
    grid-template-rows: repeat(6, 0fr);
    overflow: hidden;
    background: var(--cream);
    transition: .3s;
    padding: 0 24px
  }

  .mobile-nav a {
    overflow: hidden;
    min-height: 0;
    opacity: 0;
    transition: .3s
  }

  .mobile-nav.is-open {
    grid-template-rows: repeat(6, 1fr);
    padding: 10px 24px 22px;
    border-top: 1px solid var(--line)
  }

  .mobile-nav.is-open a {
    min-height: 45px;
    display: flex;
    align-items: center;
    opacity: 1;
    border-bottom: 1px solid var(--line)
  }

  .mobile-nav.is-open .btn {
    margin-top: 10px;
    border-bottom: 0
  }

  .hero__veil {
    background: linear-gradient(90deg, rgba(32, 7, 9, .94), rgba(43, 13, 15, .75))
  }

  .hero__content {
    max-width: 690px
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 52px
  }

  .about__visual {
    max-width: 590px;
    margin: auto
  }

  .about__content {
    max-width: 700px
  }

  .consult__grid {
    grid-template-columns: 1fr
  }

  .consult__copy {
    padding-bottom: 38px
  }

  .trust__grid,
  .faq__grid {
    grid-template-columns: 1fr
  }

  .trust__intro,
  .faq__intro {
    position: static;
    max-width: 720px
  }

  .testimonial-grid {
    grid-template-columns: 1fr 1fr
  }

  .testimonial:last-child {
    grid-column: 1/-1
  }

  .contact__grid {
    grid-template-columns: 1fr
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 420px
  }

  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr
  }

  .footer__brand {
    grid-column: 1/-1
  }
}

@media (max-width:767px) {
  :root {
    --section: 72px
  }

  .container {
    width: min(100% - 34px, var(--container))
  }

  .topbar {
    display: none
  }

  .header__inner {
    min-height: 72px
  }

  .brand {
    min-width: 0
  }

  .brand__mark {
    width: 42px;
    height: 42px;
    font-size: 1.25rem
  }

  .brand__text strong {
    font-size: .9rem
  }

  .brand__text small {
    font-size: .55rem
  }

  .header__cta {
    display: none
  }

  .hero {
    min-height: auto
  }

  .hero__media {
    background-position: 62% center
  }

  .hero__veil {
    background: linear-gradient(180deg, rgba(32, 7, 9, .72), rgba(43, 13, 15, .96) 68%)
  }

  .hero__veil::after {
    width: 300px;
    height: 300px;
    right: -100px
  }

  .hero__inner {
    padding: 110px 0 76px
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 4rem)
  }

  .hero__lead {
    font-size: 1rem
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr
  }

  .hero__actions .btn {
    width: 100%
  }

  .hero__proof {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 38px
  }

  .hero__proof div {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding: 0 0 13px
  }

  .hero__proof div:last-child {
    border-bottom: 0
  }

  .portrait-frame {
    max-width: 450px
  }

  .portrait-frame img {
    height: 480px
  }

  .experience-badge {
    width: 124px;
    height: 124px;
    right: -2px;
    bottom: 38px;
    border-width: 6px
  }

  .about__points {
    grid-template-columns: 1fr
  }

  .consult__copy,
  .consult-form {
    padding: 34px 26px
  }

  .consult-form {
    grid-template-columns: 1fr
  }

  .field--full {
    grid-column: auto
  }

  .solution-grid,
  .services-grid,
  .testimonial-grid {
    grid-template-columns: 1fr
  }

  .testimonial:last-child {
    grid-column: auto
  }

  .section-heading {
    margin-bottom: 34px
  }

  .section-heading--center {
    margin-bottom: 38px
  }

  .trust__features {
    grid-template-columns: 1fr
  }

  .feature {
    min-height: auto
  }

  .feature:nth-child(1),
  .feature:nth-child(3) {
    border-right: 0
  }

  .feature:nth-child(-n+3) {
    border-bottom: 1px solid var(--line)
  }

  .accordion {
    padding: 4px 20px
  }

  .faq-item button {
    padding: 20px 0;
    font-size: .9rem
  }

  .faq-answer p {
    padding-right: 0
  }

  .contact__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr
  }

  .footer__brand {
    grid-column: 1/-1
  }

  .footer__bottom {
    flex-direction: column
  }

  .floating-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center
  }

  .floating-cta__whatsapp {
    flex: 0 0 52px
  }

  .floating-cta__call {
    flex: 1;
    max-width: 330px;
    text-align: center
  }

  .site-footer {
    padding-bottom: 110px
  }
}

@media (max-width:480px) {
  .container {
    width: min(100% - 28px, var(--container))
  }

  .brand__text small {
    display: none
  }

  .header__inner {
    gap: 12px
  }

  .hero__inner {
    padding-top: 92px
  }

  .hero h1 {
    font-size: 2.5rem
  }

  .eyebrow {
    font-size: .67rem;
    letter-spacing: .12em;
    gap: 9px
  }

  .eyebrow span {
    width: 22px
  }

  .portrait-frame img {
    height: 410px
  }

  .experience-badge {
    width: 112px;
    height: 112px
  }

  .experience-badge strong {
    font-size: 1.7rem
  }

  .experience-badge span {
    font-size: .58rem
  }

  .consult__copy,
  .consult-form {
    padding: 28px 20px
  }

  .solution-card,
  .testimonial {
    padding: 27px
  }

  .service-card__body {
    padding: 23px
  }

  .contact__buttons {
    grid-template-columns: 1fr
  }

  .footer__grid {
    grid-template-columns: 1fr
  }

  .footer__brand {
    grid-column: auto
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 360px
  }
}

@media (max-width:390px) {
  body {
    font-size: 15px
  }

  .container {
    width: min(100% - 24px, var(--container))
  }

  .brand__mark {
    width: 39px;
    height: 39px
  }

  .brand__text strong {
    font-size: .82rem
  }

  .menu-toggle {
    width: 42px;
    height: 42px
  }

  .hero h1 {
    font-size: 2.22rem
  }

  .btn {
    padding-inline: 18px
  }

  .experience-badge {
    right: -4px;
    bottom: 28px
  }

  .floating-cta__call span {
    display: none
  }

  .floating-cta__call {
    display: flex;
    align-items: center;
    justify-content: center
  }

  .floating-cta__call strong {
    font-size: .76rem
  }

  .footer__bottom div {
    flex-wrap: wrap
  }
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}





:root {
  --navy: #020D2F;
  --gold: #E8D2A8;
  --white: #FFFFFF;
}


/* ===================== DESKTOP HEADER ===================== */

.site-header {
  width: 100%;
  background: var(--white);
  border-top: 1.5px solid var(--navy);
  border-bottom: 1.5px solid var(--navy);
}

.header-desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  height: 140px;
  padding: 0 clamp(16px, 3vw, 48px);
  gap: clamp(10px, 2vw, 32px);
}

/* Pill buttons */
.pill {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 18px);
  background: var(--navy);
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  padding: 8px clamp(14px, 2vw, 26px) 8px 8px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 90px;
  width: 310px;
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(2, 13, 47, 0.25);
}

.pill.pill-right {
  flex-direction: row-reverse;
  padding: 8px 8px 8px clamp(14px, 2vw, 26px);
}

.pill-icon {
  width: clamp(42px, 4vw, 56px);
  height: clamp(42px, 4vw, 56px);
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--navy);
}

.pill-icon svg {
  width: 46%;
  height: 46%;
  fill: var(--gold);
}

.pill-body {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
  min-width: 0;
}

.pill-right .pill-body {
  align-items: flex-end;
  text-align: right;
}

.pill-label {
  font-size: clamp(10px, 0.85vw, 13px);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

.pill-number {
  font-size: clamp(15px, 1.5vw, 22px);
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--white);
  white-space: nowrap;
}

/* Center logo */
.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 2;
  min-width: 0;
  padding: 0 8px;
}

.brand-logo-wrap img {
  height: clamp(70px, 9vw, 112px);
  width: auto;
  max-width: 100%;
  display: block;
}

/* ===================== MOBILE HEADER ===================== */

.header-mobile {
  display: none;
}

.mobile-top-bar {
  width: 100%;
  height: 53px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mobile-top-bar svg {
  width: 20px;
  height: 20px;
  fill: var(--navy);
  flex-shrink: 0;
}

.mobile-phone-number {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.mobile-logo-section {
  width: 100%;
  min-height: 110px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
}

.mobile-logo-section img {
  height: 88px;
  width: auto;
  max-width: 100%;
}

/* ===================== BREAKPOINTS ===================== */

/* Tablet: scale spacing/logo smoothly via clamp() already handled above.
     Tighten a bit further under 1024px so pills don't crowd the logo. */
@media (max-width: 1024px) {
  .header-desktop {
    height: 120px;
  }

  .pill-label {
    letter-spacing: 1.2px;
  }
}

@media (max-width: 900px) {
  .header-desktop {
    height: 108px;
    gap: 10px;
  }

  .pill-label {
    display: none;
  }

  .pill {
    padding: 8px 12px 8px 8px;
  }

  .pill.pill-right {
    padding: 8px 8px 8px 12px;
  }
}

/* Mobile: switch to stacked layout exactly like reference */
@media (max-width: 640px) {
  .header-desktop {
    display: none;
  }

  .header-mobile {
    display: block;
  }
}



.astro-slider {
  position: relative;
  width: 100%;
  height: 750px;
  overflow: hidden;
  background: #020D2F;
  margin: 0;
  isolation: isolate;
}

.astro-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.astro-slider__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  /* keeps focal artwork centered, no distortion */
  opacity: 0;
  visibility: hidden;
  transition: opacity 1000ms ease-in-out;
  will-change: opacity;
}

.astro-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* ---------- Navigation buttons ---------- */

.astro-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 52px;
  height: 52px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(2, 13, 47, 0.45);
  border: 1px solid rgba(232, 210, 168, 0.55);
  color: #E8D2A8;

  cursor: pointer;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background-color 260ms ease, border-color 260ms ease, transform 260ms ease, opacity 260ms ease;
  padding: 0;
}

.astro-slider__nav:hover,
.astro-slider__nav:focus-visible {
  background: rgba(2, 13, 47, 0.75);
  border-color: #E8D2A8;
  transform: translateY(-50%) scale(1.08);
}

.astro-slider__nav:active {
  transform: translateY(-50%) scale(0.96);
}

.astro-slider__nav:focus-visible {
  outline: 2px solid #E8D2A8;
  outline-offset: 3px;
}

.astro-slider__nav svg {
  display: block;
}

.astro-slider__nav--prev {
  left: 28px;
}

.astro-slider__nav--next {
  right: 28px;
}

/* =========================================================
   Responsive breakpoints
   ========================================================= */

/* Laptop (~1366px) */
@media (max-width: 1440px) {
  .astro-slider {
    height: 620px;
  }
}

/* Tablet (~768px) */
@media (max-width: 1024px) {
  .astro-slider {
    height: 500px;
  }

  .astro-slider__nav {
    width: 46px;
    height: 46px;
  }

  .astro-slider__nav--prev {
    left: 18px;
  }

  .astro-slider__nav--next {
    right: 18px;
  }
}

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
  .astro-slider {
    height: 200px;
  }

  /* Favor the artwork's focal point on narrow screens so key elements
     (moon, zodiac wheel, mandala) aren't cropped awkwardly. */
  .astro-slider__slide {
    background-position: center 30%;
  }

  .astro-slider__nav {
    width: 38px;
    height: 38px;
  }

  .astro-slider__nav svg {
    width: 16px;
    height: 16px;
  }

  .astro-slider__nav--prev {
    left: 10px;
  }

  .astro-slider__nav--next {
    right: 10px;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .astro-slider__slide {
    transition: none;
  }

  .astro-slider__nav {
    transition: none;
  }
}


.top-marquee {
  width: 100%;
  background: #000C30;
  color: #F1DCBE !important;
  overflow: hidden;
  white-space: nowrap;
  height: 60px;
  display: flex;
  align-items: center;
}

.marquee-text {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 100s linear infinite;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 767px) {
  .top-marquee {
    height: 36px;
  }

  .marquee-text {
    font-size: 12px;
    animation-duration: 14s;
  }
}


:root {
  --navy: #020D2F;
  --navy-line: #2a355c;
  --gold: #E8D2A8;
  --white: #FFFFFF;
  --whatsapp: #25D366;
}



.site-footer {
  position: relative;
  width: 100%;
  background: var(--navy);
  border-top: 1px solid var(--navy-line);
  padding: 28px 0 40px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Map ---------- */

.footer-map {
  width: 100%;
  height: 280px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 32px;
}

/* ---------- Content layout ---------- */

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ---------- Info cards ---------- */

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 14px 18px;
}

.info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--navy);
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.info-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold);
}

.info-value {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
  text-decoration: none;
}

a.info-link:hover {
  text-decoration: underline;
}

/* ---------- Disclaimer ---------- */

.footer-disclaimer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 0 20px;
}

.footer-disclaimer h3 {
  margin: 0 0 16px;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
}

.footer-disclaimer p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--white);
  max-width: 560px;
}

.footer-disclaimer hr {
  width: 100%;
  max-width: 560px;
  border: none;
  border-top: 1px solid var(--navy-line);
  margin: 22px 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 14px;
}

.footer-links a {
  color: var(--gold);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links .divider {
  color: var(--navy-line);
}

.footer-copyright {
  font-size: 13px;
  color: var(--white);
  opacity: 0.85;
}

/* ---------- Floating buttons ---------- */

.float-btn {
  position: fixed;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: transform 200ms ease;
}

.float-btn:hover {
  transform: translateY(-3px);
}

.float-btn svg {
  width: 22px;
  height: 22px;
}

.float-btn--call {
  left: 24px;
  background: var(--navy);
  border: 1.5px solid var(--white);
}

.float-btn--call svg {
  fill: var(--white);
}

.float-btn--whatsapp {
  right: 24px;
  background: var(--whatsapp);
}

.float-btn--whatsapp svg {
  fill: var(--white);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-disclaimer {
    padding: 0;
  }
}

@media (max-width: 600px) {
  .footer-map {
    height: 220px;
  }

  .info-card {
    padding: 12px 14px;
  }

  .info-value {
    font-size: 14px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    bottom: 16px;
  }

  .float-btn--call {
    left: 16px;
  }

  .float-btn--whatsapp {
    right: 16px;
  }
}