:root {
  color-scheme: light;
  --bg: #f3eee8;
  --bg-alt: #efe7dd;
  --text: #231f1a;
  --muted: #5c544c;
  --line: #d7cdc2;
  --accent: #1f1d1a;
  --whatsapp: #25d366;
  --shadow: 0 18px 45px rgba(35, 31, 26, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #f7f1eb 0%, var(--bg) 55%, var(--bg-alt) 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(transparent 70%, rgba(35, 31, 26, 0.03) 100%),
    repeating-linear-gradient(90deg, rgba(35, 31, 26, 0.02), rgba(35, 31, 26, 0.02) 1px, transparent 1px, transparent 90px);
  pointer-events: none;
  z-index: -1;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: #ffffff;
  color: var(--text);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: transform 0.2s ease;
  z-index: 10;
}

.skip-link:focus-visible {
  transform: translateY(4rem);
}

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.top-bar {
  background: #f8f4ee;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.8rem 0;
  flex-wrap: wrap;
  align-items: center;
}

.top-bar a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.site-header {
  padding: 4.5rem 0 2rem;
}

.header-inner {
  display: grid;
  gap: 0.8rem;
}

.logo {
  width: clamp(160px, 26vw, 260px);
  height: auto;
  margin-bottom: 0.4rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  margin: 0;
  color: var(--accent);
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  letter-spacing: 0.02em;
}

.tagline {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.hero {
  padding: 2rem 0 4rem;
}

.hero-inner {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.hero-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.hero-copy p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 1.6rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.btn.secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--accent);
}

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

.hero-card {
  background: #f8f3ed;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.hero-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.hero-card .note {
  font-size: 0.95rem;
}

.instagram-gallery {
  padding: 3.5rem 0;
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-item {
  display: block;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fbf8f4;
  box-shadow: 0 14px 30px rgba(35, 31, 26, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(35, 31, 26, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  display: block;
}

.gallery-note {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.gallery-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-top: 0.4rem;
}

.how-to-order {
  padding: 3.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 243, 236, 0.6);
}

.steps-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.step-card {
  background: #fbf8f4;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.8rem 1.6rem;
  text-align: center;
  min-height: 180px;
  display: grid;
  gap: 1rem;
  align-content: start;
  box-shadow: 0 14px 30px rgba(35, 31, 26, 0.06);
}

.step-card i {
  font-size: 1.5rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.fine-print {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.about {
  padding: 3.5rem 0;
}

.about-inner {
  display: grid;
  gap: 1.5rem;
}

.about p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0;
}

.contact {
  padding: 3.5rem 0 6rem;
}

.contact-card {
  background: #f8f3ed;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}

.map-card {
  margin-top: 2rem;
  background: #f8f3ed;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 18px;
}

.map-link {
  justify-self: start;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-links {
  display: grid;
  gap: 1rem;
}

.contact-links a {
  display: grid;
  gap: 0.35rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  word-break: break-word;
}

.contact-links .label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--whatsapp);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.35);
  z-index: 20;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45);
}

.whatsapp-float i {
  font-size: 1.55rem;
  transform-origin: 50% 50%;
  animation: whatsapp-ring 2.4s ease-in-out infinite;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.18);
  z-index: -1;
  opacity: 0;
  animation: whatsapp-pulse 2.6s ease-out infinite;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.45;
  }
  70% {
    transform: scale(1.15);
    opacity: 0;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes whatsapp-ring {
  0% {
    transform: rotate(0deg);
  }
  8% {
    transform: rotate(-12deg);
  }
  16% {
    transform: rotate(12deg);
  }
  24% {
    transform: rotate(-10deg);
  }
  32% {
    transform: rotate(10deg);
  }
  40% {
    transform: rotate(-6deg);
  }
  48%,
  100% {
    transform: rotate(0deg);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
}

body.is-ready .reveal {
  animation: reveal 0.8s ease forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }

  .reveal,
  body.is-ready .reveal {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .btn:hover,
  .whatsapp-float:hover {
    transform: none;
  }

  .whatsapp-float,
  .whatsapp-float::after {
    animation: none;
  }

  .whatsapp-float i {
    animation: none;
  }
}

@media (max-width: 720px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card {
    padding: 1.5rem;
  }

  .contact-card {
    padding: 1.5rem;
  }
}
