:root {
  --bg: #f6f6f3;
  --bg-soft: #ffffff;
  --bg-light: #fdfcfb;
  --bg-warm: #f4f1ee;
  --bg-white: #ffffff;
  --accent: #0f172a;
  --accent-soft: #ededeb;
  --accent-dark: #0a0a0a;
  --text: #0a0a0a;
  --text-soft: #3f3f3f;
  --border: #e4e4e4;
  --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.12);
  --radius-lg: 22px;
  --radius-xl: 28px;
  --transition-fast: 200ms ease;
}

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

body {
  font-family: "Plus Jakarta Sans", "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-light);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(248, 248, 248, 0.96));
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.logo-text-main {
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 17px;
}

.logo-text-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: var(--text-soft);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f172a, #4a4a4a);
  transition: width var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
  white-space: nowrap;
}

.btn-primary {
  background: #121826;
  color: #f7f7f5;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.26);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.28);
}

.btn-ghost {
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text);
}

.btn-ghost:hover {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.hero {
  padding: 40px 0 48px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f2f0ec;
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #4b4f58;
  margin-bottom: 14px;
}

.hero-badge span.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #60a5fa;
  box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.22);
}

.hero-title {
  font-size: clamp(42px, 5.2vw, 54px);
  line-height: 1.02;
  margin-bottom: 12px;
  letter-spacing: -0.035em;
  color: #24262d;
}

.hero-highlight {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: #4c4035;
}

.hero-text {
  font-size: 15.5px;
  line-height: 1.6;
  color: #61656f;
  margin-bottom: 16px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 13px;
  color: #344054;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(15, 23, 42, 0.04);
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.trust-avatars {
  display: flex;
  align-items: center;
}

.trust-avatars .avatar {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid #fff;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.trust-avatars .avatar + .avatar {
  margin-left: -10px;
}

.trust-text {
  font-size: 13px;
  color: #5b6470;
}

.hero-note-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #0f172a;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-soft);
}

.hero-meta-pill {
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.04);
  font-size: 11px;
}

.hero-photo-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #0c0c0c;
  color: #f9fafb;
  min-height: 280px;
  isolation: isolate;
}

.hero-photo-main {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(0.12) saturate(0.95) contrast(1.05);
  transform: scale(1.02);
  transform-origin: center;
}

.hero-photo-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.16) 50%, rgba(0, 0, 0, 0.04));
  mix-blend-mode: multiply;
}

.hero-photo-overlay {
  position: absolute;
  inset: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 14px 12px;
  gap: 14px;
  align-items: flex-start;
}

.hero-tag {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0f172a;
}

.hero-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f1f1ed;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
}

.hero-stat-card {
  background: rgba(15, 23, 42, 0.82);
  border-radius: 16px;
  padding: 8px 10px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.35);
  min-width: 110px;
}

.hero-stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 4px;
}

.hero-stat-value {
  font-size: 14px;
  font-weight: 600;
}

.hero-floating-badge {
  position: absolute;
  right: 14px;
  top: 46px;
  background: rgba(255, 255, 255, 0.9);
  color: #0a0a0a;
  border-radius: 20px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.hero-floating-badge span.icon {
  font-size: 13px;
}

section {
  padding: 36px 0 10px;
}

section.section-warm {
  background: var(--bg-warm);
}

section.section-white {
  background: var(--bg-white);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 18px;
  gap: 12px;
}

.section-title {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 13px;
  color: var(--text-soft);
  max-width: 360px;
}

.fineart-slider,
.story-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #0a0a0a, #161616);
  color: #f7f7f5;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.fineart-track,
.story-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 12px 12px 24px;
  touch-action: pan-y;
  will-change: scroll-position;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.fineart-track::-webkit-scrollbar,
.story-track::-webkit-scrollbar {
  display: none;
}

.fineart-card,
.story-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #0a0a0a;
  flex: 0 0 90vw;
  max-width: 520px;
  aspect-ratio: 3 / 4;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.fineart-card img,
.story-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0.2) saturate(0.9);
  transform: scale(1.02);
  transition: transform 900ms ease, filter 900ms ease;
}

.fineart-card.active img,
.story-card.active img {
  transform: scale(1.05);
  filter: grayscale(0);
}

.fineart-card::after,
.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  mix-blend-mode: normal;
}

.fineart-meta,
.story-meta {
  position: absolute;
  inset: auto 18px 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.45));
  padding: 10px 12px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

.fineart-text,
.story-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.fineart-tag,
.story-tag {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
}

.fineart-title,
.story-title {
  font-size: 17px;
  letter-spacing: -0.02em;
}

.fineart-note,
.story-note {
  font-size: 12px;
  color: rgba(247, 247, 245, 0.78);
}

.fineart-controls,
.story-controls {
  position: absolute;
  right: 16px;
  top: 14px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #f7f7f5;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease;
}

.slider-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.26);
}

.fineart-dots,
.story-dots {
  position: absolute;
  left: 18px;
  bottom: 10px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.fineart-dot,
.story-dot {
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.fineart-dot.active,
.story-dot.active {
  width: 46px;
  background: #ffffff;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.package-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 10px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.package-image {
  position: relative;
  height: 180px;
  border-radius: 18px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.package-card:hover .package-image img {
  transform: scale(1.03);
}

.package-price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
}

.package-chip {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(15, 118, 110, 0.9);
  color: #e9fffa;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.package-body {
  padding: 0 4px 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.package-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
}

.package-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.package-price {
  display: none;
}

.package-meta {
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.package-desc {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
}

.package-features {
  list-style: none;
  font-size: 13px;
  color: #4b5563;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
  margin-bottom: 8px;
}

.package-features li::before {
  content: "•";
  color: #1f2937;
  margin-right: 6px;
}

.package-note {
  font-size: 12px;
  color: #6b7280;
}

.package-cta {
  display: none;
}

.package-cta-row {
  margin-top: 4px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.package-card.highlight {
  border: 1px solid rgba(15, 118, 110, 0.3);
  box-shadow: 0 20px 40px rgba(15, 118, 110, 0.16);
}

.why-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f9f9f7, #f1f1ef);
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  font-size: 13px;
  color: #1f2937;
}

.why-card strong {
  font-weight: 700;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: start;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.why-icon {
  font-size: 18px;
  line-height: 1;
}

.why-title {
  font-weight: 600;
  margin-bottom: 2px;
}

.cta {
  margin: 30px 0 40px;
  padding: 18px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.48)), url("delapre.jpg");
  background-size: cover;
  background-position: center;
  color: #f7f7f5;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.cta-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.cta-text {
  font-size: 13px;
  max-width: 420px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: #f7f7f5;
  border-radius: 999px;
  padding: 9px 15px;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid rgba(248, 250, 252, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.btn-cta-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
}

.founders {
  margin: 28px 0 34px;
}

.founders-card {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  padding: 16px 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.founder {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  justify-content: space-between;
  flex-wrap: wrap;
}

.founder img {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.founder-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.founder-role {
  font-size: 12px;
  color: var(--text-soft);
}

.founder-linkedin {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
  flex-shrink: 0;
}

.founder-linkedin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-block {
  margin: 20px 0 34px;
}

.map-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  position: relative;
  height: clamp(200px, 40vw, 360px);
}

.map-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.map-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
}

.map-btn {
  background: rgba(0, 0, 0, 0.76);
  color: #f7f7f5;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

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

.contact-card {
  margin: 24px 0 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  padding: 16px 18px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-iframe-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.contact-iframe {
  width: 100%;
  height: 620px;
  border: 0;
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: #1f2937;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 10px 12px;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.02);
  transition: border-color 120ms ease, box-shadow 120ms ease;
  appearance: none;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
  background: #fff;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.form-note {
  font-size: 12px;
  color: #4b5563;
}

@media (max-width: 720px) {
  .contact-card {
    padding: 14px 14px;
  }

  .contact-form {
    gap: 10px;
  }

  .form-field {
    font-size: 14px;
  }

  .form-field input,
  .form-field textarea {
    font-size: 14px;
    padding: 12px 12px;
  }

  .form-actions {
    gap: 8px;
  }
}

.faq {
  margin: 20px 0 10px;
}

.faq-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 240, 240, 0.9));
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  padding: 16px 18px;
}

.faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.faq-item {
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 10px 12px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.faq-item.open {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.faq-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.faq-q {
  font-weight: 700;
  font-size: 13px;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.08);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  flex-shrink: 0;
}

.faq-a {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
  margin-top: 8px;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

.awards {
  margin-top: 34px;
  padding: 26px 0 6px;
}

.awards-card {
  background: linear-gradient(140deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.22)), url("https://happyfamilyphotography.co.uk/wp-content/uploads/elementor/thumbs/160283097_3948562635206365_5470302596933657616_n-pbp2vxix7o931kozr27lte1tih03sq7tk4le0qw6yo.jpg");
  background-size: cover;
  background-position: center;
  color: #f7f7f5;
  border-radius: var(--radius-xl);
  padding: 26px 24px 30px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.awards-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.38));
  z-index: 0;
}

.awards-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.awards-title {
  font-size: 18px;
  letter-spacing: -0.02em;
  font-family: "Playfair Display", "DM Sans", serif;
}

.awards-sub {
  font-size: 13px;
  color: rgba(247, 247, 245, 0.7);
}

.awards-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  position: relative;
  z-index: 1;
}

.award-item {
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 12px 12px 14px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.award-title {
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Playfair Display", "DM Sans", serif;
}

.award-meta {
  font-size: 12px;
  color: rgba(247, 247, 245, 0.7);
  line-height: 1.5;
}

.award-title::before {
  content: "🏆";
  font-size: 13px;
  color: #d1a854;
  display: inline-block;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.fade-in-delayed {
  transition-delay: 0.12s;
}

.fade-in-late {
  transition-delay: 0.22s;
}

footer {
  padding: 18px 0 26px;
  font-size: 12px;
  color: #6b7280;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(209, 213, 219, 0.8);
  padding-top: 12px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-locations {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
  color: #374151;
}

.footer-location {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  padding: 4px 9px;
}

.breadcrumb {
  font-size: 12px;
  color: #4b5563;
  margin: 8px 0 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 60;
  padding: 0 12px;
  display: none;
}

.mobile-sticky-inner {
  background: #0f172a;
  color: #f7f7f5;
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
}

.mobile-sticky-inner .btn {
  width: 100%;
  justify-content: center;
}

.mobile-sticky-inner .btn-primary {
  background: #fff;
  color: #0f172a;
}

.mobile-sticky-inner .btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #0f7b4f;
}

.contact-helper {
  font-size: 13px;
  color: #1f2937;
  margin: 6px 0 10px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

details.awards-details {
  position: relative;
  overflow: hidden;
  transition: max-height 260ms ease, border-radius 200ms ease, background 200ms ease;
  max-height: 120px;
  border-radius: 22px;
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.18)), url('https://happyfamilyphotography.co.uk/wp-content/uploads/elementor/thumbs/160283097_3948562635206365_5470302596933657616_n-pbp2vxix7o931kozr27lte1tih03sq7tk4le0qw6yo.jpg');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
}
details.awards-details[open] {
  max-height: 2400px;
}

details.awards-details summary {
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  list-style: none;
  color: #f7f7f5;
  min-height: 68px;
}
details.awards-details summary::-webkit-details-marker {
  display: none;
}

.awards-summary-content {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  width: 100%;
}
.awards-icon {
  font-size: 18px;
}
.awards-chevron {
  margin-left: auto;
  font-size: 14px;
  color: #f7f7f5;
  transition: transform 160ms ease;
}
details.awards-details[open] .awards-chevron {
  transform: rotate(180deg);
}

.awards-card {
  background: rgba(0, 0, 0, 0.25);
  color: #f7f7f5;
  padding: 22px;
  border-radius: 18px;
  backdrop-filter: blur(1px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: opacity 200ms ease, max-height 220ms ease, padding 200ms ease;
}
details.awards-details:not([open]) .awards-card {
  opacity: 0;
  max-height: 0;
  padding: 0 22px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 16px;
}

.modal-backdrop.open {
  display: flex;
}

.modal-panel {
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
  font-weight: 600;
}

.modal-close {
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 999px;
}

.modal-close:hover {
  background: #f3f4f6;
}

.modal-body {
  flex: 1;
  overflow: auto;
  background: #f9fafb;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.fade-in-delayed {
  transition-delay: 0.12s;
}

.fade-in-late {
  transition-delay: 0.22s;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 26px;
  }

  .hero-photo-card {
    order: -1;
    min-height: 360px;
  }

  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .fineart-card {
    flex-basis: 82vw;
  }

  .story-card {
    flex-basis: 82vw;
  }

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

@media (max-width: 720px) {
  header {
    border-radius: 0 0 18px 18px;
  }

  .nav {
    padding: 10px 0;
  }

  .nav-links {
    position: absolute;
    inset: 54px 16px auto 16px;
    background: rgba(248, 250, 252, 0.98);
    border-radius: 18px;
    padding: 10px 14px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.19);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-mobile-toggle {
    display: block;
  }

  .hero-title {
    font-size: 30px;
  }

  .packages-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta {
    border-radius: 18px;
  }

  .fineart-controls {
    right: 12px;
  }

  .fineart-dots {
    left: 14px;
    bottom: 14px;
  }

  .map-frame {
    height: 260px;
  }

  .map-frame img {
    transform: scale(1.18);
    transform-origin: center;
  }

  .founders-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .founder {
    justify-content: flex-start;
    gap: 12px;
  }

  .founder-linkedin {
    margin-left: auto;
  }

  .mobile-sticky-cta {
    display: block;
  }

  .page {
    padding-bottom: 110px;
  }
}

@media (max-width: 480px) {
  .hero-photo-card {
    min-height: 230px;
  }

  .awards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .fineart-card {
    flex-basis: 100%;
    max-width: 100%;
  }

  .story-card {
    flex-basis: 100%;
    max-width: 100%;
  }

  .map-frame {
    height: 230px;
  }

  .map-frame img {
    transform: scale(1.26);
  }

  .founder {
    flex-wrap: nowrap;
    align-items: center;
  }
}

@media (min-width: 1100px) {
  .fineart-card {
    flex-basis: 55vw;
  }

  .story-card {
    flex-basis: 55vw;
  }
}

@media (min-width: 1400px) {
  .fineart-card {
    flex-basis: 45vw;
  }

  .story-card {
    flex-basis: 45vw;
  }
}
