/* ============================================
   Sri Shop — Modern Souvenir Shop Stylesheet
   Shared-hosting friendly · No build step
   ============================================ */

:root {
  --ocean: #0c4a4a;
  --ocean-light: #1a6b6b;
  --coral: #e07a5f;
  --coral-dark: #c96a52;
  --gold: #d4a853;
  --gold-light: #e8c878;
  --sand: #f7f3ed;
  --sand-dark: #ebe4d8;
  --cream: #fffdf9;
  --charcoal: #1e2d2d;
  --text: #3d4f4f;
  --text-light: #6b7f7f;
  --white: #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(12, 74, 74, 0.08);
  --shadow-lg: 0 12px 48px rgba(12, 74, 74, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --header-h: 72px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .preloader { display: none !important; }
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--coral);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn--primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
  position: relative;
  overflow: hidden;
}

.btn--shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}

.btn--shine:hover::before { left: 100%; }

.btn--primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(224, 122, 95, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.btn--full { width: 100%; }

/* ---- Section shared ---- */
.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--charcoal);
  color: var(--sand);
  position: relative;
  overflow: hidden;
}

.section--sand {
  background: var(--sand);
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.section--dark .section__eyebrow { color: var(--gold-light); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section--dark .section__title { color: var(--cream); }

.section__desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
}

.section--dark .section__desc { color: rgba(247, 243, 237, 0.65); }

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__header .section__desc {
  margin: 0 auto;
}

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner { text-align: center; }

.preloader__logo-img {
  width: 88px;
  height: 88px;
  display: block;
  margin: 0 auto 24px;
  object-fit: contain;
  animation: preloaderPulse 1.5s ease infinite;
}

.preloader__bar {
  width: 160px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader__fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  border-radius: 3px;
  animation: preloaderFill 1.2s ease forwards;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes preloaderFill {
  to { width: 100%; }
}

/* ---- Scroll progress ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  z-index: 1001;
  transition: width 0.1s linear;
}

/* ---- Custom cursor ---- */
.cursor, .cursor-dot {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s, opacity 0.2s;
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  body.cursor-ready .cursor,
  body.cursor-ready .cursor-dot { opacity: 1; }
  body.cursor-ready a, body.cursor-ready button { cursor: none; }
}

.cursor {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--coral);
  background: rgba(224, 122, 95, 0.08);
}

.cursor.hovering {
  width: 56px;
  height: 56px;
  background: rgba(224, 122, 95, 0.15);
  border-color: var(--gold);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--coral);
}

/* ---- Text gradient ---- */
.text-gradient {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--coral) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal-left { transform: translateX(-40px) translateY(0); }
.reveal-right { transform: translateX(40px) translateY(0); }
.reveal-scale { transform: scale(0.92); }

.reveal.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

.hero-animate {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Header / Nav ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  line-height: 0;
  z-index: 1001;
}

.nav__logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: filter var(--transition);
  filter: brightness(0);
}

.header:not(.scrolled) .nav__logo-img {
  filter: none;
}

.footer__brand .nav__logo {
  margin-bottom: 16px;
}

.footer__brand .nav__logo-img {
  height: 56px;
  filter: none;
}
.header:not(.scrolled) .nav__link { color: rgba(255,255,255,0.9); }
.header:not(.scrolled) .nav__toggle span { background: var(--white); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.3s ease, left 0.3s ease;
  border-radius: 2px;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 60%;
  left: 20%;
}

.nav__link:hover { color: var(--coral); }
.nav__link.active { color: var(--coral); }

.nav__link--cta {
  background: var(--coral);
  color: var(--white) !important;
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: var(--coral-dark);
  color: var(--white) !important;
}

.header.scrolled .nav__link--cta { color: var(--white) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 32px) 0 100px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  animation: heroSlide 18s ease-in-out infinite;
}

.hero__slide--1 {
  background-image: url('../images/hero/slide-shop-interior.jpg');
  animation-delay: 0s;
}

.hero__slide--2 {
  background-image: url('../images/hero/slide-mask-wall.jpg');
  animation-delay: 6s;
}

.hero__slide--3 {
  background-image: url('../images/hero/slide-shop-customers.jpg');
  animation-delay: 12s;
}

@keyframes heroSlide {
  0%, 5% { opacity: 0; transform: scale(1.08); }
  10%, 30% { opacity: 1; transform: scale(1); }
  35%, 100% { opacity: 0; transform: scale(1.04); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 30, 30, 0.92) 0%, rgba(12, 30, 30, 0.75) 45%, rgba(12, 30, 30, 0.35) 100%),
    linear-gradient(to top, rgba(12, 30, 30, 0.6) 0%, transparent 40%);
  z-index: 1;
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

/* Hero copy — left */
.hero__copy {
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  animation: badgePulse 2s ease infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224, 122, 95, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(224, 122, 95, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__title-line {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: -0.01em;
}

.hero__title-line--accent {
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  margin-top: 4px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.hero__tag {
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  transition: var(--transition);
}

.hero__tag:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  transform: translateY(-2px);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero showcase — right */
.hero__showcase {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__ring {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: ringRotate 30s linear infinite;
}

.hero__ring::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
}

@keyframes ringRotate {
  to { transform: rotate(360deg); }
}

.hero__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.12);
}

.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__frame--main {
  position: relative;
  width: 72%;
  aspect-ratio: 3/4;
  z-index: 2;
  animation: frameFloat 6s ease-in-out infinite;
}

.hero__frame-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: var(--white);
}

.hero__frame-label span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.hero__frame-label small {
  font-size: 0.75rem;
  opacity: 0.75;
  letter-spacing: 0.04em;
}

.hero__frame--float {
  position: absolute;
  width: 38%;
  aspect-ratio: 1;
  z-index: 3;
}

.hero__frame--top {
  top: 8%;
  right: 0;
  animation: floatCard 5s ease-in-out infinite;
  animation-delay: -1s;
}

.hero__frame--bottom {
  bottom: 6%;
  left: 0;
  animation: floatCard 5s ease-in-out infinite;
  animation-delay: -2.5s;
}

@keyframes frameFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

.hero__float-card {
  position: absolute;
  bottom: 18%;
  right: -8px;
  z-index: 4;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  animation: floatCard 4s ease-in-out infinite;
  animation-delay: -0.5s;
}

.hero__float-card-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero__float-card-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
  line-height: 1.3;
  margin-top: 2px;
}

/* Hero bottom bar */
.hero__bar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  padding: 20px 32px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  max-width: 900px;
}

.hero__bar-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.hero__bar-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero__bar-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.hero__bar-sub {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 2px;
}

.hero__bar-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
  z-index: 3;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- Wave divider ---- */
.wave-divider {
  margin-top: -1px;
  line-height: 0;
  background: transparent;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* ---- Highlights ---- */
.highlights {
  padding: 48px 0;
  background: var(--cream);
  border-bottom: 1px solid var(--sand-dark);
}

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

.highlight {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.highlight:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.highlight__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(224,122,95,0.12), rgba(212,168,83,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-spring);
}

.highlight:hover .highlight__icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--coral), var(--gold));
}

.highlight__icon svg {
  width: 24px;
  height: 24px;
  color: var(--coral);
  transition: var(--transition);
}

.highlight:hover .highlight__icon svg { color: var(--white); }

.highlight h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.highlight p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ---- About ---- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__images {
  position: relative;
}

.about__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__img--main {
  aspect-ratio: 4/5;
}

.about__img--accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  aspect-ratio: 1;
  border: 4px solid var(--cream);
}

.about__badge {
  position: absolute;
  top: 24px;
  left: -24px;
  background: var(--coral);
  color: var(--white);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-lg);
  animation: badgeSpin 12s linear infinite;
}

@keyframes badgeSpin {
  0%, 90%, 100% { transform: rotate(0deg); }
  95% { transform: rotate(8deg); }
}

.about__badge strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.about__text {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about__features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--charcoal);
}

.about__features svg {
  width: 20px;
  height: 20px;
  color: var(--coral);
  flex-shrink: 0;
}

.about-story {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-story .section__desc {
  margin: 0 auto;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-value {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(12, 74, 74, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-value:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-value__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 12px;
}

.about-value h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ocean);
  margin-bottom: 10px;
}

.about-value p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

.about-offerings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-offering {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(12, 74, 74, 0.08);
}

.about-offering__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(12, 74, 74, 0.08);
  color: var(--ocean);
}

.about-offering__icon svg {
  width: 22px;
  height: 22px;
}

.about-offering h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.about-offering p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.about-cta {
  text-align: center;
  padding: 64px 0;
  background: linear-gradient(135deg, var(--ocean) 0%, #0a3535 100%);
  color: var(--cream);
}

.about-cta .section__title {
  color: var(--cream);
}

.about-cta .section__title em {
  color: var(--gold-light);
}

.about-cta .section__desc {
  color: rgba(255, 253, 249, 0.78);
  margin: 0 auto 28px;
}

.about-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .about-values { grid-template-columns: 1fr; }
  .about-offerings { grid-template-columns: 1fr; }
}

/* ---- Collections ---- */
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(224,122,95,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(212,168,83,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.collection-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.collection-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 168, 83, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.collection-card__arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5) rotate(-45deg);
  transition: var(--transition-spring);
  z-index: 2;
}

.collection-card__arrow svg {
  width: 18px;
  height: 18px;
  color: var(--coral);
}

.collection-card:hover .collection-card__arrow {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.collection-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.collection-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-card:hover .collection-card__img img {
  transform: scale(1.08);
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 45, 45, 0.6), transparent);
}

.collection-card__body {
  padding: 24px;
}

.collection-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.collection-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}

.collection-card__body p {
  font-size: 0.9rem;
  color: rgba(247, 243, 237, 0.6);
  line-height: 1.6;
}

/* ---- Marquee ---- */
.marquee {
  background: linear-gradient(90deg, var(--coral), #e8956f, var(--coral));
  background-size: 200% auto;
  animation: marqueeBg 6s linear infinite;
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

@keyframes marqueeBg {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.marquee__track {
  display: inline-flex;
  gap: 32px;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}

.marquee__track span:nth-child(even) {
  opacity: 0.5;
}

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

/* ---- Locations ---- */
.locations__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.location-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--sand-dark);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.location-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(224,122,95,0.04));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.location-card:hover::after { opacity: 1; }

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--coral);
  transform: scaleY(0);
  transition: transform 0.4s ease;
  transform-origin: bottom;
}

.location-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.location-card:hover::before { transform: scaleY(1); }

.location-card__header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 12px;
}

.location-card__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sand-dark);
  line-height: 1;
}

.location-card__header h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--charcoal);
}

.location-card__header h3 small {
  display: block;
  font-size: 0.55em;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.location-card__desc {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.location-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ocean-light);
}

.location-card__meta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.location-card__actions {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(12, 74, 74, 0.08);
}

.location-card__directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ocean);
  transition: color var(--transition), gap var(--transition);
}

.location-card__directions svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.location-card__directions:hover {
  color: var(--gold);
  gap: 12px;
}

.location-maps {
  margin-top: 64px;
}

.location-maps__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

.location-map {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
}

.location-map__info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-map__num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.location-map__info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ocean);
  margin-bottom: 12px;
}

.location-map__info p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.location-map__embed {
  position: relative;
  min-height: 360px;
  background: var(--sand);
}

.location-map__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.location-map--placeholder .location-map__embed {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .location-map {
    grid-template-columns: 1fr;
  }

  .location-map__embed {
    min-height: 300px;
    order: -1;
  }
}

/* ---- Gallery ---- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery__item:hover img { transform: scale(1.1); }

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,74,74,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery__overlay span {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  transform: translateY(12px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__item:hover .gallery__overlay span { transform: translateY(0); }

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__social {
  text-align: center;
  margin-top: 56px;
}

.gallery__social p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.gallery__social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.social-btn svg { width: 18px; height: 18px; }

.social-btn:hover {
  background: var(--coral);
  transform: translateY(-2px);
}

/* ---- Contact ---- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__text {
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 1.02rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

a.contact__detail:hover .contact__detail-value { color: var(--coral); }

.contact__detail-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__detail-icon svg {
  width: 22px;
  height: 22px;
  color: var(--coral);
}

.contact__detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}

.contact__detail-value {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: var(--transition);
}

.contact__form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sand-dark);
  position: relative;
  overflow: hidden;
}

.contact__form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--ocean-light));
  background-size: 200% auto;
  animation: gradientShift 4s ease infinite;
}

.form__group {
  margin-bottom: 20px;
}

.form__group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--sand);
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: var(--transition);
  outline: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--coral);
  background: var(--white);
}

.form__group textarea { resize: vertical; min-height: 120px; }

.form__status {
  margin-top: 16px;
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.4em;
}

.form__status.success { color: #2d8a56; }
.form__status.error { color: #c0392b; }

/* ---- Footer ---- */
.footer {
  background: var(--charcoal);
  color: rgba(247, 243, 237, 0.7);
  padding-top: 80px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__links h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer__links li { margin-bottom: 10px; }

.footer__links a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__links a:hover { color: var(--gold-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__tagline { color: var(--gold); }

/* ---- Inner pages ---- */
body.page-inner {
  padding-top: var(--header-h);
}

body.page-inner .header {
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

body.page-inner .nav__link {
  color: var(--text);
}

body.page-inner .nav__toggle span {
  background: var(--charcoal);
}

body.page-inner .nav__link--cta {
  color: var(--white) !important;
}

.page-hero {
  position: relative;
  padding: 72px 0 64px;
  background:
    linear-gradient(135deg, rgba(12, 74, 74, 0.94), rgba(30, 45, 45, 0.88)),
    url('../images/hero/slide-mask-wall.jpg') center / cover no-repeat;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(224, 122, 95, 0.18), transparent 45%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
}

.page-hero__desc {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-content .section:first-of-type {
  padding-top: 80px;
}

.gallery__grid--full {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
}

.gallery__grid--full .gallery__item {
  aspect-ratio: 1;
}

.gallery__grid--full .gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

@media (max-width: 768px) {
  .page-hero { padding: 56px 0 48px; }
  .gallery__grid--full { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid--full .gallery__item--wide { grid-column: span 2; }
}

@media (max-width: 480px) {
  .gallery__grid--full { grid-template-columns: 1fr; }
  .gallery__grid--full .gallery__item--wide { grid-column: span 1; aspect-ratio: 1; }
}

/* ---- WhatsApp float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 2;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: whatsappPulse 2s ease infinite;
  z-index: 1;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .collections__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .highlights__grid { grid-template-columns: repeat(2, 1fr); }

  .hero__inner {
    gap: 36px;
  }

  .hero__showcase { height: 460px; }
  .hero__frame--main { width: 68%; }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__copy { max-width: 100%; }

  .hero__subtitle { margin-left: auto; margin-right: auto; }

  .hero__tags,
  .hero__actions { justify-content: center; }

  .hero__showcase {
    height: 400px;
    max-width: min(420px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .section__header { margin-bottom: 44px; }
  .section__title { font-size: clamp(1.75rem, 7vw, 2.5rem); }

  .nav__toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .nav__logo-img { height: 44px; }

  .nav__menu {
    position: fixed;
    inset: 0;
    background: rgba(30, 45, 45, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav__menu.open { transform: translateX(0); }

  .nav__menu .nav__link {
    color: var(--white) !important;
    font-size: 1.2rem;
    padding: 12px 24px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .nav__menu.open .nav__link {
    opacity: 1;
    transform: translateX(0);
  }

  .nav__menu.open .nav__link:nth-child(1) { transition-delay: 0.1s; }
  .nav__menu.open .nav__link:nth-child(2) { transition-delay: 0.15s; }
  .nav__menu.open .nav__link:nth-child(3) { transition-delay: 0.2s; }
  .nav__menu.open .nav__link:nth-child(4) { transition-delay: 0.25s; }
  .nav__menu.open .nav__link:nth-child(5) { transition-delay: 0.3s; }

  .nav__menu .nav__link--cta {
    margin-left: 0;
    margin-top: 16px;
  }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__images {
    max-width: 420px;
    margin: 0 auto 32px;
  }

  .about__img--accent {
    right: 0;
    bottom: -16px;
    width: 48%;
  }

  .about__badge {
    width: 88px;
    height: 88px;
    top: 12px;
    left: 12px;
  }

  .about__badge strong { font-size: 0.95rem; }

  .about-story { padding: 0 4px; }

  .about-cta { padding: 56px 0; }

  .about-cta__actions {
    flex-direction: column;
    align-items: stretch;
    padding: 0 8px;
  }

  .about-cta__actions .btn { width: 100%; max-width: none; }

  .location-card { padding: 28px 24px; }

  .location-card__header h3 { font-size: 1.5rem; }

  .location-map__info { padding: 28px 24px; }

  .location-map__embed { min-height: 260px; }

  .page-content .section:first-of-type { padding-top: 48px; }

  .page-hero { padding: 48px 0 40px; }

  .page-hero__title { font-size: clamp(2rem, 8vw, 3rem); }

  .page-hero__desc {
    font-size: 0.98rem;
    padding: 0 8px;
  }

  .contact__detail-value {
    font-size: 0.95rem;
    word-break: break-word;
  }

  .contact__form { padding: 32px 24px; }

  .form__group input,
  .form__group select,
  .form__group textarea {
    font-size: 16px;
  }

  .page-content,
  main {
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0));
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .gallery__social { margin-top: 40px; }

  .gallery__social-links {
    flex-direction: column;
    align-items: stretch;
    padding: 0 8px;
  }

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

  .marquee__track { font-size: 1rem; gap: 24px; }

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

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

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery__item--wide,
  .gallery__item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery__item { aspect-ratio: 1; }

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

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__copy {
    max-width: 100%;
    order: 1;
  }

  .hero__subtitle { margin-left: auto; margin-right: auto; }

  .hero__tags { justify-content: center; }

  .hero__actions { justify-content: center; }

  .hero {
    padding-bottom: 88px;
  }

  .hero__showcase {
    order: 0;
    height: 360px;
    max-width: min(400px, 100%);
    margin: 0 auto;
    width: 100%;
  }

  .hero__ring { width: 280px; height: 280px; }

  .hero__float-card {
    width: 84px;
    height: 84px;
    right: 4px;
    bottom: 14%;
  }

  .hero__tag {
    font-size: 0.72rem;
    padding: 6px 12px;
  }

  .hero__bar {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
    margin-top: 32px;
  }

  .hero__bar-divider { display: none; }

  .hero__bar-item {
    flex: 1 1 40%;
    padding: 8px;
  }

  .highlights__grid { grid-template-columns: 1fr 1fr; }
  .cursor, .cursor-dot { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .section__title { font-size: clamp(1.75rem, 8vw, 2.4rem); }
  .section__header { margin-bottom: 32px; }

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

  .highlight { padding: 24px 20px; }

  .whatsapp-float {
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
    right: max(16px, env(safe-area-inset-right, 16px));
    width: 54px;
    height: 54px;
  }

  .hero {
    padding: calc(var(--header-h) + 16px) 0 72px;
    min-height: auto;
  }

  .hero__badge {
    font-size: 0.68rem;
    padding: 6px 14px 6px 10px;
    margin-bottom: 20px;
  }

  .hero__title-line { font-size: clamp(1.85rem, 8vw, 2.4rem); }

  .hero__title-line--accent {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
    line-height: 1.05;
  }

  .hero__subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .hero__tags {
    gap: 6px;
    margin-bottom: 24px;
    justify-content: center;
  }

  .hero__tag {
    font-size: 0.65rem;
    padding: 5px 10px;
  }

  .hero__showcase {
    height: 260px;
    max-width: 100%;
  }

  .hero__ring { display: none; }

  .hero__frame--float { display: none; }

  .hero__frame--main { width: 78%; }

  .hero__float-card {
    width: 72px;
    height: 72px;
    right: 8px;
    bottom: 8%;
  }

  .hero__float-card-num { font-size: 1.45rem; }

  .hero__float-card-text { font-size: 0.58rem; }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .hero__bar {
    margin-top: 24px;
    padding: 16px;
    border-radius: var(--radius);
  }

  .hero__bar-item { flex: 1 1 100%; }

  .hero__bar-num { font-size: 1.5rem; }

  .hero__scroll { display: none; }

  .about__img--main { aspect-ratio: 4/5; }

  .about__img--accent {
    width: 52%;
    bottom: -12px;
  }

  .about__features li { font-size: 0.9rem; }

  .about-value { padding: 28px 22px; }

  .about-offering { padding: 18px; }

  .location-card { padding: 24px 20px; }

  .location-card__num { font-size: 2rem; }

  .location-map__embed { min-height: 240px; }

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

  .gallery__social { margin-top: 40px; }

  .social-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .contact__form { padding: 24px 18px; }

  .contact__detail {
    align-items: flex-start;
  }

  .contact__detail-icon {
    width: 44px;
    height: 44px;
  }

  .contact__detail-value {
    font-size: 0.88rem;
    word-break: break-word;
  }

  .form__group input,
  .form__group select,
  .form__group textarea {
    font-size: 16px;
  }

  .footer__brand p { max-width: 100%; }

  .page-hero__title { font-size: clamp(2rem, 9vw, 2.6rem); }
}
