@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --gold: #c4a35a;
  --gold-deep: #8f6f28;
  --gold-soft: #e8d5a3;
  --white: #ffffff;
  --ivory: #faf7f1;
  --ink: #1a1510;
  --muted: #6d6459;
  --line: rgba(196, 163, 90, 0.28);
  --shadow: 0 22px 60px rgba(26, 21, 16, 0.1);
  --radius: 20px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(196, 163, 90, 0.12), transparent 35%),
    radial-gradient(circle at 100% 20%, rgba(232, 213, 163, 0.25), transparent 40%),
    var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1160px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Topbar */
.topbar {
  background: linear-gradient(90deg, #17130f, #2a2218);
  color: rgba(247, 239, 223, 0.82);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(196, 163, 90, 0.28);
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-left {
  min-width: 0;
}

.topbar-address {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(58vw, 520px);
}

.topbar-address i,
.topbar-right a i {
  color: var(--gold-soft);
  font-size: 1rem;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.topbar-right a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold-soft);
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.topbar-right a:hover { color: #fff; }

@media (max-width: 720px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.55rem 0;
    gap: 0.35rem;
  }

  .topbar-address {
    max-width: 100%;
    white-space: normal;
  }

  .topbar-right {
    gap: 0.75rem;
    flex-wrap: wrap;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: auto;
  height: 52px;
  display: block;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  color: var(--gold-deep);
  font-weight: 700;
  line-height: 1.1;
}

.brand-text > span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a:not(.btn):hover { color: var(--gold-deep); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0 1.25rem 1.2rem;
}

.mobile-nav.open { display: flex; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn i {
  font-size: 1.05em;
  line-height: 1;
}

.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 1.7rem; font-size: 1rem; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(143, 111, 40, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--gold-deep);
  border: 1px solid var(--gold);
}

.btn-wa {
  background: #25d366;
  color: white;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}

.btn-wa:hover { background: #1ebe57; }

/* Hero */
.hero {
  position: relative;
  min-height: min(94vh, 860px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: kenBurns 18s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.18) translate3d(-2%, -1%, 0); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 14, 10, 0.72) 0%, rgba(18, 14, 10, 0.35) 55%, rgba(18, 14, 10, 0.25) 100%),
    linear-gradient(180deg, rgba(18, 14, 10, 0.2) 0%, rgba(18, 14, 10, 0.75) 100%);
}

.hero-glow {
  position: absolute;
  width: 50vmin;
  height: 50vmin;
  left: 8%;
  bottom: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 163, 90, 0.35), transparent 70%);
  filter: blur(10px);
  animation: glowPulse 6s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from { opacity: 0.55; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 7rem 0 4.5rem;
  max-width: 720px;
  animation: riseIn 1s ease both;
}

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

.hero-logo {
  width: auto;
  height: clamp(88px, 14vw, 130px);
  margin-bottom: 0.85rem;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
  animation: riseIn 0.9s ease both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--gold-soft);
  margin-bottom: 1rem;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.2;
  margin-bottom: 0.9rem;
  max-width: 16ch;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 40ch;
  margin-bottom: 1.7rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  width: 28px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  z-index: 2;
}

.hero-scroll span {
  display: block;
  width: 4px;
  height: 8px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: var(--gold-soft);
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* Marquee */
.marquee {
  overflow: hidden;
  background: linear-gradient(90deg, #1a1510, #2c2418);
  color: var(--gold-soft);
  border-block: 1px solid rgba(196, 163, 90, 0.35);
}

.marquee-track {
  display: flex;
  gap: 1.4rem;
  width: max-content;
  padding: 0.95rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  animation: marquee 28s linear infinite;
}

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

/* Sections */
.section { padding: 4.8rem 0; }

.section-head {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.section-head .eyebrow,
.eyebrow {
  color: var(--gold-deep);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.section-head h2,
.atelier-copy h2,
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 0.65rem;
}

.section-head p,
.atelier-copy > p {
  color: var(--muted);
  font-size: 1.02rem;
}

/* Gallery rail */
.showcase { padding-bottom: 2rem; }

.gallery-rail {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.gallery-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0.5rem 1.25rem 1rem;
  animation: galleryScroll 40s linear infinite;
}

.gallery-rail:hover .gallery-track {
  animation-play-state: paused;
}

@keyframes galleryScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.gallery-item {
  width: min(280px, 72vw);
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #efe6d4;
}

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

.gallery-item:hover img { transform: scale(1.06); }

/* Promises */
.promises { padding-top: 1.5rem; padding-bottom: 1rem; }

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

.promise-grid article {
  padding: 1.35rem 1.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  display: grid;
  gap: 0.35rem;
}

.promise-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(196, 163, 90, 0.12);
  color: var(--gold-deep);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.promise-grid strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--gold-deep);
}

.promise-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Products */
.products-section {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.65) 20%, rgba(255, 255, 255, 0.9));
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(26, 21, 16, 0.14);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    linear-gradient(145deg, #f4ebda, #fff),
    radial-gradient(circle at 70% 30%, rgba(196, 163, 90, 0.28), transparent 55%);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product:hover .product-media img { transform: scale(1.07); }

.product-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.28) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.product:hover .product-shine { transform: translateX(120%); }

.product-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.55;
}

.product-body {
  padding: 1.2rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 600;
}

.price-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.price-old {
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: line-through;
  font-weight: 500;
}

.price {
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 1.08rem;
}

.product-desc {
  color: var(--muted);
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-body .btn { width: auto; }

.product-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
}

.product-actions .btn {
  flex: 1;
  border-radius: 5px;
  padding: 0.55rem 0.9rem;
  font-size: 0.86rem;
  box-shadow: none;
}

.btn-wa-round {
  width: 38px;
  height: 38px;
  border-radius: 5px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: none;
  transition: transform 0.25s ease, background 0.25s ease;
  font-size: 1.15rem;
}

.btn-wa-round:hover {
  transform: translateY(-1px);
  background: #1ebe57;
}

.empty-state {
  padding: 2.5rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
  text-align: center;
}

/* Atelier */
.atelier {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
}

.atelier-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(196, 163, 90, 0.2), transparent 40%),
    linear-gradient(135deg, #fff 0%, #f3ead8 100%);
}

.atelier-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.atelier-list {
  list-style: none;
  margin: 1.3rem 0 1.6rem;
  display: grid;
  gap: 0.7rem;
}

.atelier-list li {
  padding-left: 0;
  position: relative;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.atelier-list li i {
  color: var(--gold-deep);
  font-size: 1.05rem;
  margin-top: 0.15rem;
}

.atelier-list li::before { display: none; }

.atelier-visual {
  position: relative;
}

.atelier-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.atelier-frame {
  position: absolute;
  inset: 1.1rem -0.9rem -0.9rem 1.1rem;
  border: 1px solid var(--gold);
  border-radius: 24px;
  opacity: 0.55;
  pointer-events: none;
  animation: frameFloat 5s ease-in-out infinite alternate;
}

@keyframes frameFloat {
  from { transform: translate(0, 0); }
  to { transform: translate(6px, 8px); }
}

/* FAQ */
.faq-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0.85));
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 820px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 21, 16, 0.04);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
  padding-right: 3rem;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-deep);
  font-size: 1.4rem;
  font-weight: 500;
  font-family: var(--font-body);
}

.faq-item[open] summary::after { content: "–"; }

.faq-answer {
  padding: 0 1.25rem 1.2rem;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid transparent;
  animation: faqOpen 0.25s ease;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Location */
.location-section {
  padding-top: 3.5rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1.4rem;
  align-items: stretch;
}

.location-map {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 360px;
  background: #efe6d4;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.location-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.4rem 1.35rem;
  box-shadow: var(--shadow);
  flex: 1;
}

.location-card h3,
.location-card p {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.location-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold-deep);
  margin-bottom: 0.7rem;
  align-items: center;
}

.location-card p {
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.location-card i {
  color: var(--gold-deep);
  margin-top: 0.15rem;
}

.location-card a {
  color: var(--gold-deep);
  font-weight: 700;
}

.location-actions {
  display: grid;
  gap: 0.65rem;
}

.location-actions .btn {
  width: 100%;
}

/* CTA */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 30%, rgba(196, 163, 90, 0.28), transparent 42%),
    radial-gradient(circle at 85% 70%, rgba(232, 213, 163, 0.12), transparent 40%),
    linear-gradient(135deg, #17130f 0%, #2c2418 48%, #17130f 100%);
  color: var(--white);
  padding: 4.2rem 0;
}

.cta-box {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 1.6rem;
  justify-items: center;
}

.cta-eyebrow {
  color: var(--gold-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--gold-soft);
  margin-bottom: 0.8rem;
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 46ch;
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cta-actions .btn {
  min-width: min(240px, 100%);
}

/* Footer */
.site-footer {
  background:
    radial-gradient(circle at top left, rgba(196, 163, 90, 0.16), transparent 40%),
    linear-gradient(180deg, #14110d, #1c1712);
  color: rgba(247, 239, 223, 0.78);
  border-top: 1px solid rgba(196, 163, 90, 0.25);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 2rem;
  padding: 3.4rem 0 2.4rem;
}

.footer-logo {
  width: auto;
  height: 78px;
  display: block;
  margin-bottom: 0.85rem;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.25));
}

.footer-brand .footer-mark {
  display: none;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-soft);
  line-height: 1;
  letter-spacing: 0.03em;
}

.footer-tag {
  display: block;
  margin: 0.45rem 0 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 213, 163, 0.7);
}

.footer-brand p {
  max-width: 34ch;
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.footer-col a,
.footer-col li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.footer-col i {
  color: var(--gold-soft);
  margin-top: 0.12rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 163, 90, 0.35);
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background: rgba(196, 163, 90, 0.18);
  color: #fff;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: rgba(247, 239, 223, 0.72);
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--gold-soft); }

.footer-col li {
  font-size: 0.92rem;
  line-height: 1.45;
}

.footer-bottom {
  border-top: 1px solid rgba(196, 163, 90, 0.18);
  padding: 1.1rem 0 1.35rem;
  font-size: 0.84rem;
  color: rgba(247, 239, 223, 0.55);
}

.footer-bottom-row {
  display: grid;
  gap: 0.35rem;
}

.footer-bottom a { color: var(--gold-soft); }

.footer-admin {
  opacity: 0.55;
  font-size: 0.8rem;
}

.footer-admin:hover { opacity: 1; }

@media (max-width: 960px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding-top: 2.6rem;
  }
}

.floating-wa {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  animation: pulse 2.4s ease-in-out infinite;
  font-size: 1.7rem;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Admin (shared) */
.admin-body {
  background:
    radial-gradient(circle at top right, rgba(196, 163, 90, 0.18), transparent 35%),
    var(--ivory);
  min-height: 100vh;
}

.admin-shell {
  width: min(980px, calc(100% - 2rem));
  margin: 2rem auto 3rem;
}

.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.admin-top h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-deep);
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.2rem;
}

.panel h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.form-grid label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  font: inherit;
  background: #fff;
}

.form-grid input:focus,
.form-grid textarea:focus {
  outline: 2px solid rgba(196, 163, 90, 0.35);
  border-color: var(--gold);
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.alert-success {
  background: #eef8ef;
  color: #1f6b35;
  border: 1px solid #cfe8d4;
}

.alert-error {
  background: #fdf1f1;
  color: #8f2b2b;
  border: 1px solid #f0d0d0;
}

.table-wrap { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  text-align: left;
  padding: 0.85rem 0.55rem;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  font-size: 0.92rem;
}

th {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.thumb {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  object-fit: cover;
  background: #f4eee0;
}

.row-actions {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.btn-sm {
  padding: 0.45rem 0.8rem;
  font-size: 0.8rem;
}

.btn-danger {
  background: #b42318;
  color: white;
}

.login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.login-card {
  width: min(420px, 100%);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.login-card h1 {
  font-family: var(--font-display);
  color: var(--gold-deep);
  font-size: 2.2rem;
  margin-bottom: 0.35rem;
}

.login-card .sub {
  color: var(--muted);
  margin-bottom: 1.4rem;
}

@media (max-width: 900px) {
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .atelier-grid { grid-template-columns: 1fr; }
  .atelier-frame { inset: 0.8rem -0.6rem -0.6rem 0.8rem; }
  .location-grid { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-inner { padding-top: 7.5rem; }
  .promise-grid { grid-template-columns: 1fr; }
  .brand-text strong { font-size: 1.05rem; }
  .brand-logo { height: 44px; }
}
