/* Shared modern animated styles for About & Contact pages */

.modern-page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Ambient background ── */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: screen;
}

.orb-1 {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, #c58a4b, transparent 70%);
  top: -140px;
  left: -90px;
  opacity: 0.55;
  animation: float1 18s ease-in-out infinite;
}

.orb-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #c92b2b, transparent 70%);
  bottom: -120px;
  right: -70px;
  opacity: 0.5;
  animation: float2 22s ease-in-out infinite;
}

.orb-3 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #f0c889, transparent 70%);
  top: 38%;
  left: 52%;
  opacity: 0.32;
  animation: float3 26s ease-in-out infinite;
}

.modern-page::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(rgba(240, 200, 137, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.6;
}

.modern-page > *:not(.bg-orbs) {
  position: relative;
  z-index: 2;
}

/* ── Page hero ── */
.page-hero {
  padding: clamp(100px, 12vw, 140px) clamp(24px, 6vw, 72px) clamp(60px, 8vw, 90px);
  border-bottom: 1px solid rgba(240, 200, 137, 0.15);
}

.page-hero-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.page-eyebrow {
  display: inline-block;
  color: var(--amber-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  opacity: 0;
  animation: rise 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) 0.1s forwards;
}

.page-eyebrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--amber), var(--signal));
  animation: growLine 1.1s ease 0.5s forwards;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  opacity: 0;
  animation: rise 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) 0.25s forwards,
             shimmerText 8s linear infinite 1.1s;
  background: linear-gradient(100deg, var(--paper) 0%, var(--amber-light) 35%, var(--paper) 55%, var(--amber-light) 80%, var(--paper) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.page-hero .lead {
  color: rgba(245, 241, 232, 0.68);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.75;
  max-width: 520px;
  opacity: 0;
  animation: rise 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) 0.45s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  opacity: 0;
  animation: rise 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) 0.6s forwards;
}

.btn-primary-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: var(--signal);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary-modern:hover {
  background: var(--signal-hover);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(201, 43, 43, 0.35);
}

.btn-ghost-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(240, 200, 137, 0.3);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-ghost-modern:hover {
  border-color: var(--amber-light);
  color: var(--amber-light);
  transform: translateY(-3px);
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 420px;
  opacity: 0;
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.35s forwards;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 8% 0 8% 12%;
  background: linear-gradient(135deg, rgba(201, 43, 43, 0.2), rgba(197, 138, 75, 0.15));
  border-radius: 24px;
  transform: rotate(-4deg);
  animation: morphBlob 12s ease-in-out infinite;
}

.hero-visual img {
  position: relative;
  width: 88%;
  height: 400px;
  margin-left: auto;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(240, 200, 137, 0.25);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  transform: rotate(2deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-visual:hover img {
  transform: rotate(0deg) scale(1.02);
}

.hero-badge {
  position: absolute;
  left: 0;
  bottom: 12%;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(11, 13, 13, 0.9);
  border: 1px solid rgba(240, 200, 137, 0.4);
  color: var(--amber-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.1;
  text-align: center;
  transform: rotate(-10deg);
  animation: badgeSpin 20s linear infinite;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

@keyframes badgeSpin {
  0%, 100% { transform: rotate(-10deg); }
  50% { transform: rotate(-6deg) scale(1.05); }
}

/* ── Trust marquee ── */
.page-trust-strip {
  background: #0d100f;
  border-bottom: 1px solid rgba(240, 200, 137, 0.12);
  overflow: hidden;
  padding: 14px 0;
}

.page-trust-marquee {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: trustScroll 28s linear infinite;
}

.page-trust-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 241, 232, 0.55);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-trust-marquee i { color: var(--amber); }

/* ── Sections ── */
.page-section {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 72px);
}

.page-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--paper);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 12px;
}

.section-header p {
  color: rgba(245, 241, 232, 0.58);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 560px;
}

/* ── Glass cards ── */
.glass-card {
  position: relative;
  background: rgba(20, 23, 22, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 28px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(140deg, rgba(240, 200, 137, 0.55), transparent 45%, transparent 55%, rgba(201, 43, 43, 0.55));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.45;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.45);
}

.glass-card:hover::before { opacity: 1; }

.glass-card .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(197, 138, 75, 0.2), rgba(201, 43, 43, 0.14));
  border: 1px solid rgba(240, 200, 137, 0.25);
  color: var(--amber-light);
  font-size: 1.2rem;
  animation: iconBob 3.6s ease-in-out infinite;
}

.glass-card:hover .card-icon {
  animation-play-state: paused;
  transform: scale(1.1);
}

.glass-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--paper);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.glass-card p,
.glass-card a {
  color: rgba(245, 241, 232, 0.62);
  font-size: 0.9rem;
  line-height: 1.65;
  text-decoration: none;
  margin: 0;
}

.glass-card a:hover { color: var(--amber-light); }

/* ── Story split ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.story-image-wrap {
  position: relative;
}

.story-image-wrap img {
  width: 100%;
  height: clamp(320px, 40vw, 520px);
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(240, 200, 137, 0.2);
  box-shadow: 20px 20px 0 rgba(201, 43, 43, 0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.story-image-wrap:hover img {
  transform: translate(-4px, -4px);
  box-shadow: 24px 24px 0 rgba(201, 43, 43, 0.22);
}

.founder-caption {
  padding: 20px 0 0 4px;
  color: var(--paper);
  letter-spacing: 0.08em;
}

.founder-caption strong,
.founder-caption span {
  display: block;
}

.founder-caption strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}

.founder-caption span {
  margin-top: 5px;
  color: var(--amber-light);
  font-size: 0.7rem;
  font-weight: 700;
}

.story-copy p {
  color: rgba(245, 241, 232, 0.65);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.story-quote {
  margin-top: 24px;
  padding: 20px 0 20px 20px;
  border-left: 3px solid var(--signal);
  color: var(--paper);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  line-height: 1.45;
  font-style: italic;
}

/* ── Value cards grid ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* ── Timeline / milestones ── */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(240, 200, 137, 0.15);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(20, 23, 22, 0.4);
}

.timeline-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(240, 200, 137, 0.12);
  transition: background 0.3s ease;
}

.timeline-item:last-child { border-right: 0; }

.timeline-item:hover {
  background: rgba(201, 43, 43, 0.08);
}

.timeline-year {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber-light);
  margin-bottom: 8px;
}

.timeline-item span {
  color: rgba(245, 241, 232, 0.58);
  font-size: 0.85rem;
}

/* ── Stats row ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  text-align: center;
  padding: 28px 16px;
  border-radius: 12px;
  background: rgba(20, 23, 22, 0.5);
  border: 1px solid rgba(240, 200, 137, 0.12);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 200, 137, 0.35);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: rgba(245, 241, 232, 0.55);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── CTA banner ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(201, 43, 43, 0.15), rgba(197, 138, 75, 0.1));
  border: 1px solid rgba(240, 200, 137, 0.2);
  border-radius: 16px;
  padding: clamp(40px, 6vw, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--paper);
  line-height: 1.1;
  margin-bottom: 10px;
}

.cta-banner p {
  color: rgba(245, 241, 232, 0.62);
  margin: 0;
  max-width: 480px;
}

/* ── Contact specific ── */
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.info-card { margin-bottom: 16px; }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-badge.open {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.4);
  color: #4ade80;
}

.status-badge.closed {
  background: rgba(201, 43, 43, 0.12);
  border: 1px solid rgba(201, 43, 43, 0.4);
  color: #f87171;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 currentColor;
  animation: pulse 1.8s ease-out infinite;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 241, 232, 0.72);
  text-decoration: none;
  border: 1px solid rgba(240, 200, 137, 0.2);
  background: rgba(0, 0, 0, 0.25);
  transition: transform 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.social-row a:hover {
  transform: translateY(-5px) rotate(-6deg);
  color: var(--amber-light);
  border-color: var(--amber);
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  color: rgba(245, 241, 232, 0.6);
  font-size: 0.88rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(240, 200, 137, 0.08);
}

.hours-list li:last-child { border-bottom: 0; }

.hours-list li span:last-child {
  color: var(--paper);
  font-weight: 600;
}

/* Form */
.form-card h2 {
  font-family: 'Playfair Display', serif;
  color: var(--paper);
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.form-card > p {
  color: rgba(245, 241, 232, 0.55);
  font-size: 0.88rem;
  margin-bottom: 28px;
}

.form-group {
  position: relative;
  margin-bottom: 18px;
}

.form-group label {
  position: absolute;
  top: 15px;
  left: 14px;
  margin: 0;
  padding: 0 6px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(245, 241, 232, 0.42);
  background: transparent;
  pointer-events: none;
  z-index: 2;
  transition: transform 0.22s ease, color 0.22s ease, background 0.22s ease;
  transform-origin: left center;
}

.form-group:has(input:focus) label,
.form-group:has(input:not(:placeholder-shown)) label,
.form-group:has(textarea:focus) label,
.form-group:has(textarea:not(:placeholder-shown)) label,
.form-group:has(select:focus) label,
.form-group:has(select:valid) label {
  transform: translateY(-13px) scale(0.8);
  color: var(--amber-light);
  background: #141716;
  left: 10px;
}

.form-group:has(select) label {
  transform: translateY(-13px) scale(0.8);
  color: var(--amber-light);
  background: #141716;
  left: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(240, 200, 137, 0.2);
  border-radius: 10px;
  color: var(--paper);
  font-size: 0.92rem;
  position: relative;
  z-index: 1;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: transparent; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(197, 138, 75, 0.18), 0 0 22px rgba(240, 200, 137, 0.12);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--signal), #a82222);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.submit-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}

.submit-btn:hover:not(:disabled)::after { animation: sweep 0.9s ease; }

.submit-btn:hover:not(:disabled) {
  box-shadow: 0 14px 32px rgba(201, 43, 43, 0.4);
  transform: translateY(-2px);
}

.submit-btn:disabled { opacity: 0.65; cursor: not-allowed; }

.form-alert {
  display: none;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  margin-bottom: 20px;
  align-items: center;
  gap: 10px;
}

.form-alert.success {
  display: flex;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #4ade80;
}

.form-alert.error {
  display: flex;
  background: rgba(201, 43, 43, 0.12);
  border: 1px solid rgba(201, 43, 43, 0.3);
  color: #f87171;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-stagger.in > * {
  opacity: 1;
  transform: none;
}

.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.16s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.27s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.38s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.49s; }

/* ── Keyframes ── */
@keyframes float1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(70px, 50px); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-60px, -40px); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 40px) scale(1.12); }
}

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

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

@keyframes shimmerText {
  to { background-position: 250% center; }
}

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

@keyframes morphBlob {
  0%, 100% { border-radius: 48% 52% 46% 54%; transform: rotate(-4deg); }
  50% { border-radius: 52% 48% 54% 46%; transform: rotate(-2deg) scale(1.03); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 currentColor; }
  70% { box-shadow: 0 0 0 9px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

@keyframes sweep {
  from { left: -150%; }
  to { left: 150%; }
}

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

/* ── Responsive ── */
@media (max-width: 991px) {
  .page-hero-grid,
  .story-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: 1fr; }
  .timeline-item { border-right: 0; border-bottom: 1px solid rgba(240, 200, 137, 0.12); }
  .timeline-item:last-child { border-bottom: 0; }
  .hero-visual { min-height: 320px; }
  .hero-visual img { height: 300px; width: 92%; }
}

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .orb { filter: blur(60px); }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .orb, .glass-card .card-icon, .status-dot, .page-hero h1, .page-eyebrow, .page-hero .lead, .hero-actions, .hero-visual, .page-trust-marquee {
    animation: none !important;
  }
  .reveal, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ═══ Rich content components ═══ */

/* ── Services / "What we offer" grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 250px;
  border: 1px solid rgba(240, 200, 137, 0.18);
  background: rgba(20, 23, 22, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  transition: opacity 0.45s ease, transform 0.7s ease;
}
.service-card:hover img { opacity: 0.5; transform: scale(1.07); }
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,13,13,0.2) 0%, rgba(11,13,13,0.55) 45%, rgba(11,13,13,0.95) 100%);
}
.service-card-body { position: relative; z-index: 2; padding: 24px; }
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(197,138,75,0.28), rgba(201,43,43,0.18));
  border: 1px solid rgba(240,200,137,0.3);
  color: var(--amber-light);
  font-size: 1.2rem;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--paper);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.service-card p {
  color: rgba(245,241,232,0.62);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
  border-color: rgba(240,200,137,0.4);
}

/* ── Features strip ("Why choose us") ── */
.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-item {
  text-align: center;
  padding: 30px 18px;
  border-radius: 14px;
  background: rgba(20,23,22,0.45);
  border: 1px solid rgba(240,200,137,0.14);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.feature-item:hover {
  transform: translateY(-5px);
  border-color: rgba(240,200,137,0.38);
  background: rgba(20,23,22,0.65);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(197,138,75,0.22), rgba(201,43,43,0.14));
  border: 1px solid rgba(240,200,137,0.28);
  color: var(--amber-light);
  font-size: 1.4rem;
  animation: iconBob 3.8s ease-in-out infinite;
}
.feature-item:hover .feature-icon { animation-play-state: paused; transform: scale(1.12); }
.feature-item h3 {
  font-family: 'Playfair Display', serif;
  color: var(--paper);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.feature-item p {
  color: rgba(245,241,232,0.6);
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 0;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial-card {
  position: relative;
  padding: 28px;
  border-radius: 16px;
  background: rgba(20,23,22,0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(240,200,137,0.16);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 6px;
  right: 22px;
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(201,43,43,0.25);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0,0,0,0.45);
  border-color: rgba(240,200,137,0.38);
}
.testimonial-stars { color: var(--amber-light); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text {
  color: rgba(245,241,232,0.78);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--amber), var(--signal));
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
}
.testimonial-author strong { display: block; color: var(--paper); font-size: 0.92rem; }
.testimonial-author span { color: rgba(245,241,232,0.5); font-size: 0.78rem; }

/* ── FAQ accordion (native details/summary) ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 840px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid rgba(240,200,137,0.16);
  border-radius: 12px;
  background: rgba(20,23,22,0.45);
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.faq-item[open] {
  border-color: rgba(240,200,137,0.42);
  background: rgba(20,23,22,0.62);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--paper);
  font-weight: 600;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
  flex-shrink: 0;
  color: var(--amber-light);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.faq-item[open] summary i { transform: rotate(135deg); }
.faq-answer {
  padding: 0 24px 22px;
  color: rgba(245,241,232,0.62);
  font-size: 0.92rem;
  line-height: 1.7;
  animation: faqOpen 0.35s ease;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* ── Help / "How we can help" grid (contact) ── */
.help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.help-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 14px;
  background: rgba(20,23,22,0.5);
  border: 1px solid rgba(240,200,137,0.16);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.help-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240,200,137,0.4);
  box-shadow: 0 18px 36px rgba(0,0,0,0.4);
}
.help-card .help-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(197,138,75,0.24), rgba(201,43,43,0.16));
  border: 1px solid rgba(240,200,137,0.28);
  color: var(--amber-light);
  font-size: 1.5rem;
  animation: iconBob 3.8s ease-in-out infinite;
}
.help-card:hover .help-icon { animation-play-state: paused; transform: scale(1.1); }
.help-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--paper);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.help-card p {
  color: rgba(245,241,232,0.6);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-grid figure { margin: 0; position: relative; overflow: hidden; border-radius: 12px; }
.gallery-grid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border: 1px solid rgba(240,200,137,0.16);
  transition: transform 0.5s ease, box-shadow 0.5s ease, filter 0.5s ease;
}
.gallery-grid figure:hover img {
  transform: scale(1.06);
  box-shadow: 0 18px 34px rgba(0,0,0,0.5);
  filter: brightness(1.08);
}

/* ── Dark-themed map embed ── */
.map-embed {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(240,200,137,0.2);
  box-shadow: 0 22px 50px rgba(0,0,0,0.45);
  position: relative;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) grayscale(0.25) contrast(0.9);
  transition: filter 0.4s ease;
}
.map-embed:hover iframe { filter: invert(0.9) hue-rotate(180deg) grayscale(0.1) contrast(1); }

/* ── Split two-column section ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
.split-media img {
  width: 100%;
  height: clamp(300px, 38vw, 460px);
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(240,200,137,0.22);
  box-shadow: 0 26px 50px rgba(0,0,0,0.45);
  transition: transform 0.6s ease;
}
.split-media:hover img { transform: scale(1.02); }
.split-list { list-style: none; padding: 0; margin: 20px 0 0; }
.split-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(240,200,137,0.1);
  color: rgba(245,241,232,0.72);
  font-size: 0.92rem;
  line-height: 1.6;
}
.split-list li:last-child { border-bottom: 0; }
.split-list i { color: var(--amber-light); font-size: 1.1rem; margin-top: 2px; }

/* ── Responsive for new components ── */
@media (max-width: 991px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-strip { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .split-section { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .features-strip { grid-template-columns: 1fr 1fr; }
  .help-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .features-strip { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .feature-icon, .help-card .help-icon { animation: none !important; }
  .faq-answer { animation: none !important; }
}
