/* ==========================================================================
   Jokis Hochzeitstauben & Dekoration MG
   Design tokens
   ========================================================================== */

:root {
  /* Colour */
  --ivory: #f8f3ea;
  --ivory-soft: #f0e8d8;
  --white: #ffffff;
  --ink: #2a2521;
  --ink-soft: #5c5147;
  --ink-faint: #8a7d6f;
  --wine: #6e2a3a;
  --wine-deep: #3f1620;
  --wine-tint: #f3e6e8;
  --gold: #c7a65d;
  --gold-light: #dcc286;
  --gold-soft: #e6d6ab;
  --line: rgba(42, 37, 33, 0.1);
  --shadow: rgba(63, 22, 32, 0.16);

  /* Type */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* subtle paper grain for warmth, sits above background, below content */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--wine-deep);
  margin: 0;
  line-height: 1.15;
  font-weight: 600;
}

p {
  margin: 0 0 1em;
}

button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wine);
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* section title with the signature flight ornament */
h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  text-align: center;
  position: relative;
  padding-bottom: 26px;
  margin-bottom: 0.4em;
}

h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 132px;
  height: 18px;
  transform: translateX(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 132 18'%3E%3Cline x1='0' y1='9' x2='46' y2='9' stroke='%23c7a65d' stroke-width='1' opacity='0.75'/%3E%3Cline x1='86' y1='9' x2='132' y2='9' stroke='%23c7a65d' stroke-width='1' opacity='0.75'/%3E%3Cpath d='M58 9 C 60 3, 66 3, 68 9 C 70 3, 76 3, 78 9 C 76 13, 70 15, 66 11 C 62 15, 56 13, 58 9 Z' fill='%236e2a3a'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

section {
  position: relative;
  z-index: 2;
  padding: 100px 24px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
}

/* ==========================================================================
   Cookie banner
   ========================================================================== */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  background: linear-gradient(155deg, var(--wine-deep), #2a0e16);
  color: var(--ivory);
  border: 1px solid rgba(199, 166, 93, 0.25);
  border-radius: var(--radius-m);
  box-shadow: 0 20px 46px var(--shadow);
  padding: 20px 26px;
  transform: translateY(140%);
  transition: transform 0.5s var(--ease);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gold-soft);
}

.cookie-content strong {
  color: var(--white);
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--ivory);
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.cookie-btn.cookie-accept {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--wine-deep);
  font-weight: 600;
  border-color: transparent;
}

.cookie-btn:hover {
  transform: translateY(-1px);
  background: var(--gold-soft);
  color: var(--wine-deep);
}

.cookie-link {
  font-size: 0.8rem;
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================================================
   WhatsApp floating widget
   ========================================================================== */

.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 850;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wine), var(--wine-deep));
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 14px 30px var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.whatsapp-widget:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 36px var(--shadow);
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: pulse-ring 2.4s var(--ease) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

/* ==========================================================================
   Header & navigation
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 800;
  background: rgba(248, 243, 234, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 46px;
  width: auto;
}

.nav {
  display: flex;
  gap: 36px;
}

.nav a {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 24px;
  margin: 0 auto;
  background: var(--wine-deep);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero-elegant {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 100px;
  overflow: hidden;
  background: radial-gradient(ellipse at top, #4b1c28 0%, var(--wine-deep) 55%, #200d12 100%);
  isolation: isolate;
}

.hero-elegant::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(199, 166, 93, 0.16), transparent 42%),
    radial-gradient(circle at 85% 78%, rgba(199, 166, 93, 0.12), transparent 46%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3E%3Cpath d='M-40 470 C 220 260, 420 560, 660 300 S 1040 90, 1260 160' fill='none' stroke='%23c7a65d' stroke-width='1.4' opacity='0.5'/%3E%3Cpath d='M-40 200 C 200 60, 480 320, 760 140 S 1080 340, 1260 60' fill='none' stroke='%23e6d6ab' stroke-width='1' opacity='0.28'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 130% auto;
  background-position: center;
  animation: drift 22s ease-in-out infinite;
  transition: transform 0.3s var(--ease);
  will-change: transform;
}

@keyframes drift {
  0%, 100% { background-position: center; }
  50% { background-position: 54% 46%; }
}

.hero-elegant::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 26%;
  left: 66%;
  width: 46px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 26'%3E%3Cpath d='M2 20 C 6 10, 12 8, 16 13 C 18 6, 24 2, 32 4 C 27 6, 23 10, 22 15 C 27 13, 33 15, 36 20 C 29 18, 22 20, 16 24 C 12 18, 6 17, 2 20 Z' fill='%23f8f3ea' opacity='0.92'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  animation: bob 6s ease-in-out infinite;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  animation: rise 1s var(--ease) both;
}

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

.hero-content .eyebrow {
  color: var(--gold-soft);
  justify-content: center;
}

.hero-content h1 {
  color: var(--ivory);
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  margin: 18px 0 22px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-content p {
  color: var(--gold-soft);
  font-size: 1.12rem;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta {
  position: relative;
  display: inline-block;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--wine-deep);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 16px 42px;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.38);
}

.cta:hover::before {
  left: 130%;
}

/* ==========================================================================
   Angebote
   ========================================================================== */

.angebote {
  background: var(--ivory);
}

.angebote h2 {
  margin-bottom: 54px;
}

.angebot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
}

.angebot-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(42, 37, 33, 0.06);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.angebot-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px var(--shadow);
  border-color: rgba(199, 166, 93, 0.4);
}

.angebot-box .img-wrap {
  position: relative;
  overflow: hidden;
  height: 190px;
}

.angebot-box img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.angebot-box:hover img {
  transform: scale(1.08);
}

.angebot-box::before {
  content: "";
  position: absolute;
  top: 166px;
  left: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gold-soft);
  box-shadow: 0 8px 18px rgba(42, 37, 33, 0.14);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px;
  z-index: 2;
}

.angebot-box:nth-of-type(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 26'%3E%3Cpath d='M2 20 C 6 10, 12 8, 16 13 C 18 6, 24 2, 32 4 C 27 6, 23 10, 22 15 C 27 13, 33 15, 36 20 C 29 18, 22 20, 16 24 C 12 18, 6 17, 2 20 Z' fill='%236e2a3a'/%3E%3C/svg%3E");
}

.angebot-box:nth-of-type(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 4 C 18 8, 24 8, 26 4 C 28 8, 24 14, 16 16 C 8 14, 4 8, 6 4 C 8 8, 14 8, 16 4 Z' fill='%236e2a3a'/%3E%3Cline x1='16' y1='16' x2='16' y2='28' stroke='%236e2a3a' stroke-width='2'/%3E%3C/svg%3E");
}

.angebot-box:nth-of-type(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 20'%3E%3Ccircle cx='11' cy='10' r='8' fill='none' stroke='%236e2a3a' stroke-width='2'/%3E%3Ccircle cx='21' cy='10' r='8' fill='none' stroke='%23c7a65d' stroke-width='2'/%3E%3C/svg%3E");
}

.angebot-box:nth-of-type(4)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 28'%3E%3Cpath d='M16 26 C 4 18, 2 8, 9 4 C 13 2, 16 5, 16 9 C 16 5, 19 2, 23 4 C 30 8, 28 18, 16 26 Z' fill='%236e2a3a'/%3E%3C/svg%3E");
}

.angebot-box h3 {
  font-size: 1.25rem;
  padding: 30px 22px 0;
}

.angebot-box p {
  padding: 10px 22px 24px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* ==========================================================================
   Galerie (masonry)
   ========================================================================== */

.galerie {
  background: var(--ivory-soft);
}

.galerie-subtitle {
  text-align: center;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 48px;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  grid-auto-flow: dense;
  gap: 14px;
  max-width: var(--container);
  margin: 0 auto;
}

.galerie-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-s);
  box-shadow: 0 6px 18px rgba(42, 37, 33, 0.05);
}

.galerie-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 0px solid var(--gold);
  border-radius: var(--radius-s);
  transition: border-width 0.35s var(--ease);
  pointer-events: none;
}

.galerie-item:hover::after {
  border-width: 3px;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.96);
}

.galerie-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.06);
}

.galerie-featured {
  grid-column: span 2;
  grid-row: span 2;
}

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

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

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-section {
  background: var(--ivory);
}

.contact-subtitle {
  text-align: center;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto 50px;
}

.contact-container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: 0 28px 66px rgba(42, 37, 33, 0.12);
}

.contact-form {
  background: var(--white);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 3px solid var(--gold);
}

.contact-form label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine);
  margin-top: 16px;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.96rem;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--ivory);
  color: var(--ink);
  margin-top: 6px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(199, 166, 93, 0.18);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-btn {
  position: relative;
  overflow: hidden;
  align-self: flex-start;
  margin-top: 24px;
  background: linear-gradient(135deg, var(--wine), var(--wine-deep));
  color: var(--ivory);
  border: none;
  padding: 15px 34px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 10px 24px rgba(63, 22, 32, 0.28);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(63, 22, 32, 0.36);
}

.contact-info {
  position: relative;
  background: radial-gradient(circle at 20% 0%, #5a2130, var(--wine-deep) 60%);
  color: var(--gold-soft);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 160px;
  height: 160px;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 26'%3E%3Cpath d='M2 20 C 6 10, 12 8, 16 13 C 18 6, 24 2, 32 4 C 27 6, 23 10, 22 15 C 27 13, 33 15, 36 20 C 29 18, 22 20, 16 24 C 12 18, 6 17, 2 20 Z' fill='%23e6d6ab'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.contact-info h3 {
  color: var(--ivory);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.contact-info p {
  font-size: 0.94rem;
  position: relative;
  z-index: 1;
}

.contact-info strong {
  color: var(--gold);
}

.social-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: var(--radius-s);
  border: 1px solid rgba(230, 214, 171, 0.3);
  background: rgba(230, 214, 171, 0.06);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.social-btn:hover {
  transform: translateX(5px);
  border-color: var(--gold);
  background: rgba(230, 214, 171, 0.12);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--wine-deep);
  color: var(--gold-soft);
  position: relative;
}

.footer::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px 24px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-section h3 {
  color: var(--ivory);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.footer-section p {
  font-size: 0.88rem;
  color: rgba(230, 214, 171, 0.75);
}

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-section a {
  font-size: 0.88rem;
  color: rgba(230, 214, 171, 0.85);
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}

.footer-section a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(230, 214, 171, 0.15);
  padding: 26px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--gold-soft);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(230, 214, 171, 0.55);
}

/* ==========================================================================
   Scroll reveal (JS-toggled)
   ========================================================================== */

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .angebot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  section {
    padding: 76px 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 74px;
    right: 20px;
    left: 20px;
    background: var(--white);
    border-radius: var(--radius-m);
    box-shadow: 0 20px 44px var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 26px;
    gap: 18px;
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), visibility 0.3s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

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

  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .galerie-featured {
    grid-column: span 2;
    grid-row: span 2;
  }

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

  .contact-form,
  .contact-info {
    padding: 34px 26px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 24px 32px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
