:root {
  --brand: #6f2d0b;
  --brand-deep: #552208;
  --sand: #f5f1eb;
  --ink: #1f1a17;
  --muted: #6f6760;
  --card: #fffdf9;
  --line: #e7ddd1;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 0%, #fdfaf4 0%, #f7f2ea 35%, #f4efe8 100%);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 3vw;
  border-bottom: 1px solid #8f4a27;
  background: #fff;
  color: var(--brand);
}

body:not(.is-ready) .site-header {
  opacity: 0;
  transform: translateY(-14px);
  filter: blur(10px);
}

body.is-ready .site-header {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity 0.75s ease, transform 0.75s ease, filter 0.85s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 52px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(111, 45, 11, 0.45);
  background: transparent;
  border-radius: 10px;
  padding: 0.55rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand);
  margin: 4px 0;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.88rem;
}

.main-nav a {
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.main-nav a:hover {
  opacity: 1;
}

.hero {
  min-height: 100svh;
  height: 100svh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 7rem 4vw 3rem;
  color: #fff;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(22, 15, 10, 0.82) 0%, rgba(22, 15, 10, 0.54) 43%, rgba(22, 15, 10, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

body:not(.is-ready) .hero-content > * {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  filter: blur(14px);
}

body.is-ready .hero-content > * {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition: opacity 0.9s ease, transform 0.85s ease, filter 1.05s ease;
}

body.is-ready .hero-content > *:nth-child(1) {
  transition-delay: 0.2s;
}

body.is-ready .hero-content > *:nth-child(2) {
  transition-delay: 0.36s;
}

.eyebrow,
.section-mark {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: #dbc8b7;
}

h1,
h2 {
  font-family: Charter, "Times New Roman", serif;
  font-weight: 600;
  line-height: 0.94;
  margin: 0.45rem 0 1rem;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 6.2rem);
}

h2 {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  color: var(--brand);
}

.hero p {
  max-width: 48ch;
}

.hero-card {
  align-self: start;
  margin-top: 2.25rem;
  background: rgba(250, 245, 238, 0.92);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.hero-card h2 {
  font-size: clamp(1.2rem, 2.35vw, 1.95rem);
  line-height: 1;
  white-space: nowrap;
  margin-top: 0;
}

.btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.2s ease;
}

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

.btn-primary,
.btn-secondary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover,
.btn-secondary:hover {
  background: var(--brand-deep);
}

.btn-ghost {
  color: #fff;
  background: var(--brand);
  border: 1px solid var(--brand);
  padding: 0.56rem 0.95rem;
  font-size: 0.74rem;
}

.btn-ghost:hover {
  background: var(--brand-deep);
  border-color: var(--brand-deep);
}

.section {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 5.5rem 4vw;
}

.about-layout {
  width: min(1320px, 100%);
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 2rem;
  align-items: start;
}

.about-header {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 2rem;
  align-items: start;
}

.about-title .section-mark {
  margin: 0;
}

.about-title h2 {
  margin-top: 0.35rem;
  margin-bottom: 0;
  line-height: 1.02;
}

.about-lead {
  margin: 0;
  max-width: 24ch;
  padding-top: 2.2rem;
  color: var(--muted);
  line-height: 1.33;
}

.about-main-image {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.about-main-image img {
  height: 594px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.about-lower {
  margin-top: 3.6rem;
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 1rem;
  row-gap: 0.85rem;
  align-items: start;
}

.about-controls {
  display: flex;
  gap: 0.55rem;
}

.about-controls button {
  width: 36px;
  height: 36px;
  border: 1px solid #d7d0c9;
  background: #fff;
  color: #2a231e;
  font-size: 1.28rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.about-thumbs {
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 164px));
  gap: 0.7rem;
}

.about-thumbs img {
  width: 100%;
  height: 172px;
  object-fit: cover;
}

.about-secondary {
  grid-column: 2;
  margin: 0;
  max-width: 22ch;
  align-self: end;
  color: var(--muted);
  line-height: 1.3;
}

.card img,
.founder-grid img,
.gallery img,
.product-card img {
  width: 100%;
  object-fit: cover;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

.section-head p {
  color: var(--muted);
  max-width: 50ch;
  margin-left: auto;
}

.cards {
  display: grid;
  gap: 1rem;
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

#workshops .cards.four {
  gap: 1.4rem;
  align-items: start;
}

#workshops .card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
}

#workshops .card img {
  height: 355px;
}

#workshops .section-head h2 {
  white-space: nowrap;
  font-size: clamp(1.55rem, 3vw, 3.2rem);
}

#workshops .card h3 {
  margin: 1rem 0 0.45rem;
  color: var(--brand);
  font-size: clamp(0.8rem, 1.02vw, 1.22rem);
  line-height: 1.05;
  white-space: nowrap;
  min-height: 1.3em;
}

#workshops .card p {
  margin: 0;
  max-width: 24ch;
  min-height: 4.3em;
  color: var(--brand-deep);
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.package-section {
  background:
    linear-gradient(180deg, #f9f6f2 0%, #f5efe7 50%, #f7f2ec 100%);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.package-card {
  position: relative;
  background: linear-gradient(160deg, #fff 0%, #fffdfb 60%, #f7efe6 100%);
  border: 1px solid #c8b5a6;
  padding: 1.25rem 1.15rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(111, 45, 11, 0.08) 0%, rgba(111, 45, 11, 0) 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: #9a603d;
  box-shadow: 0 16px 32px rgba(53, 25, 9, 0.14);
}

.package-card:hover::before {
  opacity: 1;
}

.package-title {
  margin-bottom: 0.65rem;
}

.package-cn {
  margin: 0;
  color: #1a1a1a;
  font-size: 1.18rem;
  letter-spacing: 0.14em;
}

.package-card h3 {
  margin: 0.22rem 0 0;
  font-family: Charter, "Times New Roman", serif;
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #26211d;
}

.package-meta {
  display: grid;
  gap: 0.55rem;
}

.package-meta p {
  margin: 0;
  display: grid;
  gap: 0.15rem;
}

.package-meta span {
  color: #4c453e;
  font-size: 0.83rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.package-meta strong {
  font-weight: 600;
  color: #1c1814;
}

.package-include,
.package-add-on {
  margin: 0.8rem 0 0;
  color: #211a15;
  line-height: 1.45;
}

.package-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 0.6rem;
}

.package-top span {
  background: var(--brand);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.62rem;
  padding: 0.34rem 0.56rem;
  white-space: nowrap;
  align-self: start;
}

.package-card.premium {
  border-color: #9f6d50;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
}

.card img {
  height: 220px;
}

.card h3,
.product-card h3,
.quote-card h3 {
  margin: 0.9rem 1rem 0.3rem;
  font-family: Charter, "Times New Roman", serif;
  color: var(--brand);
}

.card p,
.product-card p {
  margin: 0 1rem 1rem;
  color: var(--muted);
}

.founder {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.founder-grid img {
  width: 100%;
  min-height: 450px;
  object-fit: cover;
}

.founder-name {
  font-family: Charter, "Times New Roman", serif;
  font-size: 1.2rem;
  color: var(--brand);
}

.studio-meta {
  border-left: 3px solid var(--brand);
  padding-left: 1rem;
  margin-top: 1.2rem;
}

.studio-meta p {
  margin: 0.35rem 0;
}

.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0.8rem 0;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-right: 2rem;
  font-weight: 500;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2rem;
  color: var(--brand);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.gallery-carousel {
  position: relative;
  width: 100%;
  padding: 0 4vw;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 auto;
  padding: 0 0.5rem;
}

.carousel-slide img {
  width: 100%;
  height: 335px;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid rgba(111, 45, 11, 0.3);
  background: rgba(255, 255, 255, 0.88);
  color: var(--brand);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.carousel-btn.prev {
  left: 4.35vw;
}

.carousel-btn.next {
  right: 4.35vw;
}

.carousel-btn:hover {
  background: #fff;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(8, 6, 4, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.image-lightbox.is-open {
  display: flex;
}

.image-lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.25rem;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 95;
  background: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
  transition: transform 0.2s ease, background 0.2s ease;
}

.floating-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.2rem;
}

.quote-card p {
  margin: 0;
  color: var(--muted);
}

.quote-card h3 {
  margin: 1rem 0 0;
}

.contact-section {
  position: relative;
  margin-top: 2.2rem;
  margin-bottom: 0;
  min-height: auto;
  padding: 4.4rem 4vw;
  color: #fff;
  overflow: hidden;
}

.contact-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 10, 0.54);
}

.contact-content {
  position: relative;
  z-index: 2;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 2.3rem;
  align-items: start;
}

.contact-intro h2 {
  color: #fff;
  margin: 0 0 0.8rem;
}

.contact-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 34ch;
}

.contact-studio h2 {
  font-size: clamp(2rem, 4.1vw, 4.2rem);
}

.contact-right {
  width: min(470px, 100%);
  margin-left: auto;
}

.contact-form-head {
  text-align: right;
  margin-bottom: 0.9rem;
}

.contact-form-head h2 {
  color: #fff;
  margin: 0 0 0.55rem;
}

.contact-form-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  margin-left: auto;
  max-width: 40ch;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 0.82rem 0.8rem;
  font-family: Futura, "Trebuchet MS", Arial, sans-serif;
  font-size: 1rem;
  border-radius: 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 0.7rem;
}

.contact-form textarea {
  margin-top: 0.7rem;
  resize: vertical;
}

.contact-form .btn {
  margin-top: 1.1rem;
  width: 100%;
  background: #fff;
  color: #5e2a0f;
  border-radius: 0;
}

#contact-status {
  min-height: 1.2rem;
  margin: 0.55rem 0 0;
  color: #fff;
  font-size: 0.88rem;
}

.products {
  background: linear-gradient(180deg, rgba(111, 45, 11, 0.05) 0%, rgba(111, 45, 11, 0.09) 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
}

.product-card img {
  height: 210px;
}

.site-footer {
  margin-top: 0;
  padding: 4rem 4vw 2rem;
  background: #fff;
  color: var(--brand);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
  gap: 1.3rem;
  border-top: 1px solid #e7ddd1;
}

.site-footer img {
  width: 106px;
}

.footer-brand img {
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.site-footer h3 {
  font-family: Charter, "Times New Roman", serif;
  margin-top: 0;
  color: var(--brand);
}

.footer-tagline-title {
  margin: 22px 0 0.45rem;
  letter-spacing: 0.12em;
  font-size: 0.86rem;
  text-transform: uppercase;
  font-family: Charter, "Times New Roman", serif;
  color: var(--brand);
}

.footer-tagline-sub {
  margin: 0;
  color: var(--brand-deep);
  max-width: none;
  white-space: nowrap;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.5rem;
  color: var(--brand-deep);
}

.newsletter div {
  display: flex;
  gap: 0.5rem;
}

.newsletter .btn {
  margin-top: 0.5rem;
  background: var(--brand);
  color: #fff;
}

.newsletter .btn:hover {
  background: var(--brand-deep);
  color: #fff;
}

.newsletter h3 {
  margin-bottom: 0.6rem;
}

.newsletter input {
  width: 100%;
  border: 1px solid #60412f;
  background: transparent;
  color: var(--brand);
  padding: 0.68rem 0.72rem;
}

.newsletter input::placeholder {
  color: #9f7d68;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0.8rem 0 0;
  opacity: 0.8;
  font-size: 0.82rem;
  border-top: 1px solid rgba(111, 45, 11, 0.25);
  padding-top: 1.1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.99);
  filter: blur(12px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.95s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 3vw;
    min-width: 220px;
    padding: 0.9rem;
    background: #fff;
    border: 1px solid rgba(111, 45, 11, 0.35);
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    z-index: 55;
  }

  .main-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .hero-content,
  .about-layout,
  .founder,
  .faq,
  .section-head,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-card {
    margin-top: 1.1rem;
  }

  .cards.four,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-right {
    width: 100%;
    margin-left: 0;
  }

  .contact-form-head {
    text-align: left;
  }

  .contact-form-head p {
    margin-left: 0;
    max-width: 55ch;
  }

  .contact-intro p {
    max-width: 55ch;
  }

  #workshops .card img {
    height: 320px;
  }

  #workshops .section-head h2 {
    white-space: normal;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .about-main-image {
    grid-column: 1;
    grid-row: auto;
  }

  .about-main-image img {
    height: 440px;
  }

  .about-header {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .about-lead {
    max-width: 42ch;
    padding-top: 0;
  }

  .about-lower {
    margin-top: 0.7rem;
  }

  .cards.three {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel-slide img {
    height: 295px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 700px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.6rem;
  }

  .brand img {
    width: 58px;
  }

  .btn-ghost {
    display: none;
  }

  .section {
    padding: 3.9rem 4vw;
  }

  .hero {
    min-height: 100svh;
    height: 100svh;
    padding-top: 6.1rem;
    padding-bottom: 2rem;
  }

  .hero-video {
    object-position: 72% center;
  }

  .hero-content {
    gap: 1rem;
  }

  .hero p {
    margin-bottom: 0.75rem;
  }

  .main-nav {
    right: 4vw;
    left: 4vw;
    min-width: auto;
  }

  .hero-card h2 {
    white-space: normal;
  }

  .cards.four,
  .cards.three,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    min-height: auto;
    padding: 4rem 4vw 5rem;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }

  #workshops .card img {
    height: 260px;
  }

  #workshops .section-head h2 {
    font-size: clamp(2rem, 8.6vw, 3rem);
    line-height: 0.95;
  }

  #workshops .card h3 {
    font-size: clamp(1.28rem, 6vw, 1.85rem);
    line-height: 1.08;
    white-space: normal;
  }

  #workshops .card p {
    min-height: 0;
  }

  .package-cn {
    font-size: 1.05rem;
    letter-spacing: 0.1em;
  }

  .package-card h3 {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
  }

  .about-main-image img,
  .about-thumbs img,
  .founder-grid img {
    height: 250px;
    min-height: auto;
  }

  .carousel-slide img {
    height: 250px;
  }

  .carousel-btn {
    top: auto;
    bottom: -52px;
    transform: none;
  }

  .carousel-btn {
    display: none;
  }

  .floating-whatsapp {
    right: 0.8rem;
    bottom: 0.8rem;
    width: 54px;
    height: 54px;
  }

  .carousel-btn.prev {
    left: calc(50% - 46px);
  }

  .carousel-btn.next {
    right: calc(50% - 46px);
  }

  .about-lower {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .about-thumbs,
  .about-secondary {
    grid-column: 1;
  }

  .about-secondary {
    max-width: 100%;
  }

  .footer-tagline-sub {
    white-space: normal;
  }

  .site-footer img {
    width: 88px;
  }
}
