:root {
  --bg: #f6f1eb;
  --bg-soft: #fffaf5;
  --surface: rgba(255, 250, 245, 0.78);
  --surface-strong: #fff9f3;
  --ink: #241a17;
  --muted: #6d5b52;
  --line: rgba(36, 26, 23, 0.12);
  --accent: #ab7d5f;
  --accent-deep: #8c6247;
  --accent-pale: #ecd9cc;
  --shadow: 0 24px 80px rgba(69, 39, 24, 0.14);
  --shadow-soft: 0 16px 40px rgba(69, 39, 24, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(236, 217, 204, 0.9), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 234, 219, 0.9), transparent 26%),
    linear-gradient(180deg, #fbf6f1 0%, #f5ede5 100%);
}

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

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(251, 246, 241, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

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

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

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 250, 245, 0.88);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-copy strong {
  font-size: 0.95rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.77rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font: inherit;
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible,
.card-link:hover,
.card-link:focus-visible,
.collection-card:hover,
.collection-card:focus-within {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fffaf5;
  box-shadow: 0 16px 40px rgba(140, 98, 71, 0.25);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  border: 1px solid rgba(36, 26, 23, 0.1);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent-deep);
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.experience-panel h3,
.gallery-card h3,
.contact-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 6.1rem);
  max-width: 10ch;
}

.hero-lead,
.section-heading p,
.collection-copy p,
.service-card p,
.step p,
.experience-panel p,
.quote-card p,
.contact-copy p,
.faq-list p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0 1.35rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-highlights li {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(36, 26, 23, 0.08);
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.hero-visual::before {
  inset: 7% 18% 8% 8%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.92), rgba(245, 214, 192, 0.38));
}

.hero-visual::after {
  width: 170px;
  height: 170px;
  right: 7%;
  top: 6%;
  background: radial-gradient(circle, rgba(244, 201, 168, 0.48), transparent 70%);
}

.floating-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 249, 243, 0.62);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.card-large {
  left: 7%;
  right: 10%;
  top: 16%;
  padding: 0;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #efe2d8;
}

.card-link {
  cursor: pointer;
}

.card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  padding: 2rem;
  background:
    linear-gradient(
      180deg,
      rgba(171, 125, 95, 0.14) 0%,
      rgba(109, 91, 82, 0.18) 34%,
      rgba(36, 26, 23, 0.74) 100%
    );
  color: #fffaf5;
}

.card-label,
.panel-kicker,
.card-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(36, 26, 23, 0.08);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-large h2 {
  margin: 1rem 0 0.5rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-family: "Cormorant Garamond", serif;
}

.card-content p {
  max-width: 26rem;
  color: rgba(255, 250, 245, 0.92);
}

.card-small {
  width: 220px;
  padding: 1.1rem;
}

.card-small.top {
  top: 8%;
  right: 1%;
}

.card-small.bottom {
  left: 0;
  bottom: 9%;
}

.metric {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.trust-bar {
  padding: 1rem 0 0;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(36, 26, 23, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow-soft);
}

.trust-items span {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 6rem 0;
}

.section-contrast {
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.2), rgba(255, 255, 255, 0.42));
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(171, 125, 95, 0.24), transparent 34%),
    linear-gradient(180deg, #2f221e, #191211);
  color: #fdf5ef;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading.compact {
  max-width: 680px;
}

.section-heading.light p {
  color: rgba(253, 245, 239, 0.8);
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin-bottom: 1rem;
}

.service-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card,
.quote-card,
.experience-panel,
.collection-card,
.contact-form,
.faq-list details {
  border: 1px solid rgba(36, 26, 23, 0.08);
  background: rgba(255, 250, 245, 0.7);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.service-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
}

.service-card.featured {
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.98), rgba(238, 221, 209, 0.72));
}

.service-card h3,
.collection-copy h3,
.step h3,
.quote-card span,
.faq-list summary {
  margin: 0 0 0.8rem;
}

.service-card a,
.collection-copy li::marker,
.site-footer a {
  color: var(--accent-deep);
  font-weight: 700;
}

.collection-grid {
  display: grid;
  gap: 1.35rem;
}

.collection-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.5rem;
  padding: 1.1rem;
  border-radius: 28px;
  align-items: center;
  position: relative;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.collection-card:hover,
.collection-card:focus-within {
  box-shadow: 0 24px 60px rgba(69, 39, 24, 0.16);
  border-color: rgba(140, 98, 71, 0.18);
}

.collection-visual {
  position: relative;
  height: 170px;
  min-height: 170px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.collection-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 28px;
}

.collection-visual.blush {
  background: linear-gradient(135deg, #f7d6c5, #dcb3a5);
}

.collection-visual.blush::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(247, 214, 197, 0.12) 0%,
      rgba(236, 217, 204, 0.16) 42%,
      rgba(109, 91, 82, 0.42) 100%
    );
}

.collection-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.collection-image-foot-darts {
  object-position: center 38%;
  transform: scale(1.06);
}

.collection-image-popcorn {
  object-position: center 72%;
}

.collection-image-cotton-candy {
  object-position: center 80%;
}

.collection-image-contain {
  object-fit: contain;
  padding: 0.9rem;
  background: linear-gradient(135deg, rgba(250, 247, 242, 0.9), rgba(232, 223, 214, 0.9));
}

.collection-visual.pearl {
  background:
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.85), transparent 28%),
    linear-gradient(135deg, #faf7f2, #e8dfd6);
}

.collection-visual.gold {
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 241, 214, 0.9), transparent 30%),
    linear-gradient(135deg, #d7b28a, #8f6a4f);
}

.collection-visual.popcorn {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 242, 197, 0.95), transparent 22%),
    linear-gradient(135deg, #f4c98d, #b86a3f);
}

.collection-visual.cotton-candy {
  background:
    radial-gradient(circle at 24% 24%, rgba(255, 240, 244, 0.96), transparent 22%),
    linear-gradient(135deg, #efc0c7, #cb8a93);
}

.collection-art,
.detail-art {
  width: 100%;
  height: 100%;
}

.collection-art-popcorn,
.detail-art-popcorn {
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 246, 213, 0.98), transparent 15%),
    radial-gradient(circle at 42% 38%, rgba(255, 236, 176, 0.96), transparent 12%),
    radial-gradient(circle at 56% 26%, rgba(255, 249, 225, 0.98), transparent 14%),
    radial-gradient(circle at 63% 46%, rgba(255, 231, 159, 0.92), transparent 13%),
    linear-gradient(180deg, transparent 0 48%, #ffffff 48% 100%),
    linear-gradient(90deg, #d84c3f 0 18%, transparent 18% 34%, #d84c3f 34% 52%, transparent 52% 68%, #d84c3f 68% 86%, transparent 86% 100%);
}

.collection-art-cotton-candy,
.detail-art-cotton-candy {
  background:
    radial-gradient(circle at 40% 30%, rgba(255, 233, 239, 0.98), transparent 18%),
    radial-gradient(circle at 52% 22%, rgba(255, 213, 225, 0.95), transparent 16%),
    radial-gradient(circle at 60% 34%, rgba(255, 232, 241, 0.98), transparent 18%),
    radial-gradient(circle at 47% 42%, rgba(250, 196, 212, 0.96), transparent 19%),
    linear-gradient(180deg, transparent 0 63%, #c7987b 63% 67%, transparent 67% 100%),
    linear-gradient(180deg, #f8d9df, #d38f99);
}

.collection-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.collection-copy h3 {
  font-size: 2rem;
}

.collection-copy ul,
.experience-panel ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.experience-grid,
.contact-layout,
.faq-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.75rem;
  align-items: start;
}

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

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(36, 26, 23, 0.08);
}

.step span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(171, 125, 95, 0.16), rgba(171, 125, 95, 0.05));
  color: var(--accent-deep);
  font-weight: 800;
}

.experience-panel {
  padding: 1.75rem;
  border-radius: 28px;
  position: sticky;
  top: 112px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.gallery-card {
  min-height: 230px;
  padding: 1.5rem;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.gallery-card span {
  color: rgba(253, 245, 239, 0.78);
  font-size: 0.9rem;
}

.gallery-card.tall {
  min-height: 480px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(24, 18, 16, 0.82)),
    url("https://res.cloudinary.com/dmujanh0b/image/upload/v1775573680/bf5ab74d-5d9f-43a0-bca4-0c9f37129f15_2_uqkco3.jpg")
      center / cover no-repeat;
}

.gallery-card.soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(24, 18, 16, 0.82)),
    linear-gradient(135deg, #f0d3c5, #9a7869);
}

.gallery-card.warm {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(24, 18, 16, 0.82)),
    linear-gradient(135deg, #f2cfa7, #8f5c38);
}

.gallery-card.deep {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(24, 18, 16, 0.82)),
    linear-gradient(135deg, #806257, #312421);
}

.gallery-page-hero {
  padding: 4.5rem 0 1.5rem;
}

.gallery-page-section {
  padding-top: 1rem;
}

.media-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 120px;
  gap: 1rem;
}

.media-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 28px;
  border: 1px solid rgba(36, 26, 23, 0.08);
  background: rgba(255, 250, 245, 0.78);
  box-shadow: var(--shadow-soft);
}

.media-card img,
.media-card iframe,
.media-card video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}

.media-image-top-focus {
  object-position: center 22%;
}

.media-card-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.media-card-video {
  background: #000;
}

.media-card-square {
  grid-row: span 2;
}

.media-card-tall {
  grid-row: span 3;
}

.media-card-hero {
  grid-row: span 4;
}

.media-card-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(24, 18, 16, 0.05), rgba(24, 18, 16, 0.82));
  color: #fffaf5;
}

.media-card-copy span {
  display: block;
  margin-bottom: 0.2rem;
  color: rgba(255, 250, 245, 0.8);
  font-size: 0.92rem;
}

.media-card-copy h2 {
  margin: 0;
  color: #fffaf5;
}

.testimonial-layout {
  display: grid;
  gap: 2rem;
}

.quote-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.quote-card span {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--accent-deep);
}

.faq-section {
  padding-top: 2rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-list details {
  padding: 1.15rem 1.25rem;
  border-radius: 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.contact-section {
  padding-bottom: 7rem;
}

.detail-hero {
  padding: 4.5rem 0 2.5rem;
}

.detail-hero-grid,
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: stretch;
}

.back-link {
  display: inline-flex;
  margin-bottom: 1.4rem;
  color: var(--accent-deep);
  font-weight: 700;
}

.detail-copy h1,
.detail-panel h2 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.detail-copy h1 {
  font-size: clamp(3.2rem, 7vw, 5.4rem);
}

.detail-lead,
.detail-panel p,
.detail-feature-card p,
.detail-list,
.detail-steps,
.detail-specs {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.detail-specs {
  margin: 1.5rem 0 0;
  padding-left: 1.2rem;
}

.detail-specs li {
  margin-bottom: 0.5rem;
}

.detail-gallery,
.detail-media-card,
.detail-panel,
.detail-feature-card {
  border: 1px solid rgba(36, 26, 23, 0.08);
  background: rgba(255, 250, 245, 0.74);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.detail-gallery {
  padding: 1rem;
  border-radius: 32px;
}

.detail-media-card {
  overflow: hidden;
  border-radius: 24px;
  min-height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.detail-media-card-art {
  background: linear-gradient(135deg, rgba(255, 249, 243, 0.82), rgba(236, 217, 204, 0.78));
  padding: 1.2rem;
}

.gonflabile-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  min-height: 440px;
}

.showcase-stack {
  display: grid;
  gap: 1rem;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow-soft);
  min-height: 210px;
}

.showcase-card-large {
  min-height: 440px;
}

.showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(36, 26, 23, 0.02), rgba(36, 26, 23, 0.74));
  color: #fffaf5;
}

.showcase-copy span {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: rgba(255, 250, 245, 0.82);
}

.showcase-copy strong {
  font-size: 1.2rem;
}

.category-actions {
  justify-content: center;
  margin-top: 1.5rem;
}

.detail-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-main-video {
  width: 100%;
  min-height: 440px;
  border: 0;
  display: block;
  background: #000;
}

.detail-main-video[hidden],
.detail-main-image[hidden] {
  display: none;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.detail-thumb {
  position: relative;
  padding: 0;
  border: 1px solid rgba(36, 26, 23, 0.1);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.detail-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.detail-thumb-video-label {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(36, 26, 23, 0.8);
  color: #fffaf5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.detail-thumb:hover,
.detail-thumb:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(140, 98, 71, 0.24);
}

.detail-thumb.is-active {
  border-color: rgba(140, 98, 71, 0.4);
  box-shadow: 0 10px 24px rgba(69, 39, 24, 0.14);
}

.detail-panel {
  padding: 1.8rem;
  border-radius: 28px;
  height: 100%;
}

.detail-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

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

.detail-feature-card {
  padding: 1.5rem;
  border-radius: 24px;
}

.detail-feature-card h3 {
  margin: 0 0 0.8rem;
}

.detail-list,
.detail-steps {
  margin: 0;
  padding-left: 1.2rem;
}

.detail-panel-accent {
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.95), rgba(238, 221, 209, 0.72));
  display: flex;
  flex-direction: column;
}

.detail-panel-accent .button {
  margin-top: auto;
}

.terms-layout {
  display: grid;
  gap: 1rem;
}

.terms-panel h2 {
  margin-top: 0;
}

.contact-cards {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.contact-cards div {
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.42);
  border-radius: 0 18px 18px 0;
}

.social-links-panel {
  margin-top: 1.2rem;
  padding: 1.15rem 1.2rem;
  border-radius: 22px;
  border: 1px solid rgba(36, 26, 23, 0.08);
  background: rgba(255, 255, 255, 0.42);
}

.social-links-panel > span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(113, 74, 40, 0.18);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(113, 74, 40, 0.34);
  background: rgba(255, 255, 255, 1);
}

.contact-cards span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.7rem;
}

.contact-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(113, 74, 40, 0.18);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text-strong);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-actions a:hover,
.contact-actions a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(113, 74, 40, 0.34);
  background: rgba(255, 255, 255, 1);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 28px;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(36, 26, 23, 0.12);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.turnstile-wrap {
  display: flex;
  justify-content: flex-start;
}

.form-feedback {
  min-height: 1.4rem;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-feedback.is-success {
  color: #2f6b3b;
}

.form-feedback.is-error {
  color: #9a2f2f;
}

.site-footer {
  border-top: 1px solid rgba(36, 26, 23, 0.08);
  background: rgba(255, 250, 245, 0.5);
}

.footer-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  min-height: 54px;
  padding: 0 1.2rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #241a17, #8c6247);
  color: #fff7f0;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 980px) {
  .site-nav,
  .button-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav.is-open {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.4rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 249, 243, 0.96);
    box-shadow: var(--shadow);
    border: 1px solid rgba(36, 26, 23, 0.08);
  }

  .hero-grid,
  .detail-hero-grid,
  .detail-grid,
  .experience-grid,
  .contact-layout,
  .faq-layout,
  .service-grid,
  .detail-feature-grid,
  .testimonial-grid,
  .gallery-grid,
  .trust-items {
    grid-template-columns: 1fr;
  }

  .collection-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-visual {
    min-height: 460px;
  }

  .detail-media-card {
    min-height: 360px;
  }

  .gonflabile-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .showcase-card-large,
  .showcase-card-small {
    min-height: 240px;
  }

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

  .media-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 110px;
  }

  .media-card-wide {
    grid-column: span 2;
  }

  .media-card-hero {
    grid-row: span 3;
  }

  .media-card-tall {
    grid-row: span 3;
  }

  .experience-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    min-height: 76px;
  }

  .brand-copy small {
    display: none;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-visual {
    min-height: 420px;
  }

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

  .media-card-wide {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 320px;
  }

  .media-card-video {
    min-height: 320px;
  }

  .media-card-square,
  .media-card-tall,
  .media-card-hero {
    grid-row: span 1;
    min-height: 280px;
  }

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

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

  .card-large {
    left: 0;
    right: 0;
    top: 10%;
    min-height: 280px;
  }

  .card-content {
    min-height: 280px;
    padding: 1.5rem;
  }

  .card-small {
    width: 190px;
  }

  .card-small.top {
    right: 0;
    top: 0;
  }

  .card-small.bottom {
    left: 0;
    bottom: 0;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 2.6rem;
  }

  .gallery-card.tall {
    min-height: 280px;
  }

  .footer-wrap {
    padding: 1rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

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