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

:root {
  --color-graphite: #121214;
  --color-platinum: #E2E8F0;
  --color-anthracite: #1A1A1D;
  --color-lead: #4B5563;
  --color-oxygen: #FFFFFF;
  --color-gold: #C9A96E;
  --color-gold-muted: rgba(201, 169, 110, 0.2);
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--color-graphite);
  color: var(--color-platinum);
  line-height: 1.6;
  font-size: 0.9rem;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

a {
  color: var(--color-platinum);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-oxygen);
}

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

button, .btn {
  font-family: var(--font-body);
  padding: 0.75rem 2rem;
  border: 1px solid var(--color-platinum);
  background: transparent;
  color: var(--color-platinum);
  cursor: pointer;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

button:hover::before, .btn:hover::before {
  left: 0;
}

button:hover, .btn:hover {
  color: var(--color-graphite);
  border-color: var(--color-oxygen);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: 90%;
  max-width: 1400px;
  padding: var(--space-sm) var(--space-md);
  background: rgba(18, 18, 20, 0.85);
  backdrop-filter: blur(20px);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  z-index: 1000;
  transition: all var(--transition-luxury);
  border: 1px solid rgba(226, 232, 240, 0.1);
  box-shadow: var(--shadow-lg);
}

.header.hidden {
  transform: translateX(-50%) translateY(-120%);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-oxygen);
  letter-spacing: 0.05em;
}

.nav {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-oxygen);
  transition: width var(--transition-smooth);
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  width: 25px;
  height: 2px;
  background: var(--color-platinum);
  transition: all var(--transition-smooth);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

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

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) var(--space-md);
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  animation: fadeInUp var(--transition-luxury) ease-out;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: var(--space-md);
  color: var(--color-oxygen);
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  color: var(--color-platinum);
  font-weight: 300;
  letter-spacing: 0.03em;
}

.section {
  padding: var(--space-xl) var(--space-md);
  position: relative;
}

.section-alt {
  background: var(--color-anthracite);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  font-size: 3rem;
  color: var(--color-oxygen);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.card {
  background: var(--color-anthracite);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.1);
  transition: all var(--transition-luxury);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(226, 232, 240, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

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

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(226, 232, 240, 0.3);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-oxygen);
}

.card p {
  font-size: 0.9rem;
  color: var(--color-platinum);
  line-height: 1.7;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-oxygen);
}

.asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.asymmetric-item {
  background: var(--color-anthracite);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.1);
  transition: all var(--transition-luxury);
}

.asymmetric-item:nth-child(1) {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  transform: rotate(-1deg);
}

.asymmetric-item:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1 / 2;
  transform: rotate(1deg);
}

.asymmetric-item:nth-child(3) {
  grid-column: 8 / 13;
  grid-row: 2 / 4;
  transform: rotate(-0.5deg);
}

.asymmetric-item:nth-child(4) {
  grid-column: 1 / 6;
  grid-row: 3 / 4;
  transform: rotate(0.5deg);
}

.asymmetric-item:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card {
  background: var(--color-anthracite);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.1);
  transition: all var(--transition-luxury);
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-luxury);
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.product-info {
  padding: var(--space-md);
}

.product-title {
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
  color: var(--color-oxygen);
}

.product-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-oxygen);
  margin-bottom: var(--space-sm);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact-info {
  background: var(--color-anthracite);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.1);
  transform: rotate(-1deg);
  transition: all var(--transition-luxury);
}

.contact-info:hover {
  transform: rotate(0deg);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--color-oxygen);
}

.form-wrapper {
  background: var(--color-anthracite);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.1);
  transform: rotate(1deg);
  transition: all var(--transition-luxury);
}

.form-wrapper:hover {
  transform: rotate(0deg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-platinum);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: var(--color-graphite);
  border: 1px solid rgba(226, 232, 240, 0.2);
  border-radius: var(--radius-sm);
  color: var(--color-platinum);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-oxygen);
  box-shadow: 0 0 0 3px rgba(226, 232, 240, 0.1);
}

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

.input-error {
  border-color: #C0392B !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12) !important;
}

.input-error-msg {
  display: block;
  font-size: 0.72rem;
  color: #C0392B;
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.checkbox-group {
  display: flex;
  align-items: start;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: normal;
}

.map-container {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.2);
  margin-top: var(--space-lg);
  position: relative;
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.06), var(--shadow-lg);
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.map-container:hover {
  border-color: rgba(201, 169, 110, 0.45);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1), var(--shadow-lg);
}

.map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  z-index: 1;
  pointer-events: none;
}

.map-container::after {
  content: '\f3c5\00a0 Birger Jarlsgatan 55, Stockholm';
  font-family: 'Font Awesome 6 Free', var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  position: absolute;
  bottom: var(--space-sm);
  left: var(--space-sm);
  background: rgba(18, 18, 20, 0.88);
  backdrop-filter: blur(8px);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 169, 110, 0.2);
  z-index: 1;
  pointer-events: none;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.footer {
  background: var(--color-anthracite);
  padding: var(--space-md);
  text-align: center;
  border-top: 1px solid rgba(226, 232, 240, 0.1);
}

.footer p {
  font-size: 0.8rem;
  color: var(--color-lead);
}

.footer a {
  color: var(--color-platinum);
  margin: 0 var(--space-xs);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 20, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: var(--color-anthracite);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 90%;
  border: 1px solid rgba(226, 232, 240, 0.2);
  position: relative;
  animation: modalSlideIn var(--transition-luxury) ease-out;
}

.modal-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-platinum);
  cursor: pointer;
  padding: 0.5rem;
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
}

.error-content h1 {
  font-size: 8rem;
  color: var(--color-oxygen);
  margin-bottom: var(--space-sm);
}

.error-content h2 {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-content i {
  font-size: 4rem;
  color: var(--color-oxygen);
  margin-bottom: var(--space-md);
}

/* ── Thanks page — named classes (replaces inline styles) ── */
.thanks-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: var(--space-xl);
}

.thanks-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--color-anthracite);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 110, 0.2);
  transform: rotate(-0.5deg);
  transition: all var(--transition-luxury);
  position: relative;
  overflow: hidden;
}

.thanks-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.thanks-card:hover {
  transform: rotate(0deg);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 169, 110, 0.4);
}

.thanks-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.15) 0%, rgba(201, 169, 110, 0.04) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 110, 0.35);
}

.thanks-icon i {
  font-size: 2.8rem;
  color: var(--color-gold);
}

.thanks-title {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  color: var(--color-oxygen);
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.03em;
}

.thanks-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: var(--space-md) auto;
}

.thanks-lead {
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
  line-height: 1.85;
  color: var(--color-platinum);
}

.thanks-body {
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
  color: var(--color-platinum);
  line-height: 1.8;
  opacity: 0.8;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.policy-content h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

.policy-content p {
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.policy-content ul {
  margin-left: var(--space-md);
  margin-bottom: var(--space-sm);
}

/* ── Policy pages — shared named classes ────────────────
   Replaces all inline styles on privacy, terms,
   cookies and return pages so 320px media queries work.
   ──────────────────────────────────────────────────── */
.policy-page {
  padding-top: 8rem;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--color-graphite) 0%, var(--color-anthracite) 100%);
}

.policy-container {
  max-width: 900px;
  padding: var(--space-xl) var(--space-md);
}

.policy-card {
  background: rgba(26, 26, 29, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 110, 0.18);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.policy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.policy-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.policy-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.15) 0%, rgba(201, 169, 110, 0.04) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 110, 0.3);
}

.policy-icon i {
  font-size: 2rem;
  color: var(--color-gold);
}

.policy-title {
  font-size: 3rem;
  color: var(--color-oxygen);
  margin-bottom: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.03em;
}

.policy-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 0 auto;
}

.policy-date {
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--color-platinum);
  font-size: 0.88rem;
}

/* Scoped content typography — removes need for inline styles */
.policy-card h2 {
  color: var(--color-oxygen);
  font-size: 1.5rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

.policy-card h3 {
  color: var(--color-oxygen);
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.policy-card p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.policy-card ul {
  margin-left: var(--space-md);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.policy-card ul li {
  margin-bottom: 0.3rem;
}

.policy-card a {
  color: var(--color-oxygen);
  text-decoration: underline;
}

.policy-card a:hover {
  color: var(--color-gold);
  text-decoration: none;
}

/* Tinted info boxes */
.policy-info-box {
  background: rgba(201, 169, 110, 0.04);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.policy-info-box--accent {
  border-left: 2px solid var(--color-gold);
}

/* Contact box at page bottom */
.policy-contact-box {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.06) 0%, rgba(201, 169, 110, 0.02) 100%);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 169, 110, 0.15);
  margin-top: var(--space-lg);
}

.policy-contact-box h2 {
  margin-top: 0;
}

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

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-luxury);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .header {
    width: 95%;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--color-anthracite);
    flex-direction: column;
    justify-content: center;
    transition: right var(--transition-luxury);
    border-left: 1px solid rgba(226, 232, 240, 0.1);
  }
  
  .nav.active {
    right: 0;
  }
  
  .burger {
    display: flex;
  }
  
  .contact-section {
    grid-template-columns: 1fr;
  }
  
  .asymmetric-grid {
    grid-template-columns: 1fr;
  }
  
  .asymmetric-item {
    grid-column: 1 !important;
    grid-row: auto !important;
    transform: rotate(0deg) !important;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
  
  .error-content h1 {
    font-size: 5rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 0.85rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  button, .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
  }
  
  .section {
    padding: var(--space-md) var(--space-sm);
  }
}

@media (max-width: 320px) {

  /* ── Design tokens ── */
  :root {
    --space-xs: 0.35rem;
    --space-sm: 0.65rem;
    --space-md: 1.1rem;
    --space-lg: 1.8rem;
    --space-xl: 2.5rem;
  }

  /* ── Base typography ── */
  body {
    font-size: 0.8rem;
    line-height: 1.55;
    overflow-x: hidden;
  }

  h1 { font-size: 1.75rem; line-height: 1.1; }
  h2 { font-size: 1.4rem;  line-height: 1.15; }
  h3 { font-size: 1.15rem; line-height: 1.2; }
  h4 { font-size: 0.95rem; }

  /* ── Header ── */
  .header {
    width: 100%;
    left: 0;
    transform: none;
    border-radius: 0;
    padding: 0.6rem 1rem;
  }

  .header.hidden {
    transform: translateY(-120%);
  }

  .logo {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
  }

  /* ── Mobile nav ── */
  .nav {
    width: 88%;
  }

  .nav a {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
  }

  .burger span {
    width: 20px;
  }

  /* ── Buttons ── */
  button,
  .btn {
    padding: 0.55rem 1.1rem;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    min-height: 40px;
  }

  /* ── Sections ── */
  .section {
    padding: var(--space-lg) var(--space-sm);
  }

  .section-title {
    font-size: 1.55rem;
    margin-bottom: var(--space-md);
  }

  /* ── Cards ── */
  .card {
    padding: var(--space-sm) var(--space-md);
  }

  .card h3 {
    font-size: 1.1rem;
  }

  .card p {
    font-size: 0.8rem;
  }

  .card-icon {
    font-size: 1.8rem;
    margin-bottom: var(--space-xs);
  }

  /* ── Asymmetric grid ── */
  .asymmetric-item {
    padding: var(--space-sm);
  }

  /* ── Product cards ── */
  .product-image {
    height: 160px;
  }

  .product-info {
    padding: var(--space-sm);
  }

  .product-title {
    font-size: 1.05rem;
  }

  .product-price {
    font-size: 1.1rem;
  }

  /* ── Contact form ── */
  .contact-info,
  .form-wrapper {
    padding: var(--space-md);
    transform: none !important;
  }

  .contact-item {
    gap: 0.65rem;
    margin-bottom: var(--space-sm);
  }

  .contact-item i {
    font-size: 1.1rem;
  }

  .form-group {
    margin-bottom: var(--space-sm);
  }

  .form-group label {
    font-size: 0.7rem;
    letter-spacing: 0.04em;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.55rem 0.65rem;
    font-size: 0.8rem;
  }

  .form-group textarea {
    min-height: 90px;
  }

  .checkbox-group label {
    font-size: 0.72rem;
  }

  /* ── Map ── */
  .map-container {
    height: 260px;
    margin-top: var(--space-md);
  }

  .map-container::after {
    font-size: 0.6rem;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.65rem;
  }

  /* ── Footer ── */
  .footer {
    padding: var(--space-sm);
  }

  .footer p {
    font-size: 0.68rem;
  }

  .footer a {
    margin: 0 0.2rem;
  }

  /* ── Modal ── */
  .modal-content {
    padding: var(--space-md);
    width: 95%;
  }

  /* ── Error / Thank-you pages ── */
  .error-content h1 {
    font-size: 4rem;
  }

  .error-content h2 {
    font-size: 1.3rem;
  }

  /* ── Policy pages ── */
  .policy-content {
    padding: var(--space-xl) var(--space-sm);
  }

  .policy-content h2 {
    font-size: 1.3rem;
  }

  .policy-content p,
  .policy-content li {
    font-size: 0.8rem;
    line-height: 1.65;
  }
}

/* ==============================================
   LUXURY HERO REDESIGN
   ============================================== */

/* ---- SHARED HERO OVERLINE ---- */
.hero-overline {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  opacity: 0;
  animation: fadeInDown 1s 0.3s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-overline::before,
.hero-overline::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.5;
}

/* ---- HOME HERO ---- */
.hero-luxury {
  background: var(--color-graphite);
}

.hero-luxury::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 25%, rgba(201, 169, 110, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(226, 232, 240, 0.03) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.hero-luxury::after {
  content: '';
  position: absolute;
  top: 5rem;
  left: 4%;
  right: 4%;
  bottom: 4rem;
  border: 1px solid rgba(201, 169, 110, 0.1);
  pointer-events: none;
  z-index: 0;
}

.hero-luxury-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  width: 100%;
}

.hero-luxury h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--color-oxygen);
  margin-bottom: 0;
  text-shadow: none;
  opacity: 0;
  animation: fadeInUp 1.2s 0.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-luxury h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--color-gold);
  display: block;
  font-size: 0.8em;
  letter-spacing: 0.06em;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin: var(--space-md) auto;
  opacity: 0;
  animation: fadeIn 1s 0.85s ease forwards;
}

.hero-divider::before {
  content: '';
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold));
}

.hero-divider::after {
  content: '';
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: linear-gradient(to left, transparent, var(--color-gold));
}

.hero-divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero-luxury p {
  font-size: 1rem;
  color: var(--color-platinum);
  font-weight: 300;
  letter-spacing: 0.03em;
  max-width: 580px;
  margin: 0 auto var(--space-lg);
  line-height: 1.85;
  opacity: 0;
  animation: fadeInUp 1.2s 0.9s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-cta-group {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1.2s 1.1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-graphite);
  border-color: var(--color-gold);
  font-weight: 600;
}

.btn-gold::before {
  background: #D9BA82;
}

.btn-gold:hover {
  color: var(--color-graphite);
  border-color: #D9BA82;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s 1.6s ease forwards;
  z-index: 2;
}

.hero-scroll-indicator span {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.7;
}

.hero-scroll-line {
  width: 1px;
  height: 45px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

.hero-ornaments {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-orn {
  position: absolute;
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 50%;
}

/* ---- PAGE HEROES (wrapping, design, contact) ---- */
.page-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 9rem var(--space-md) var(--space-xl);
  background: var(--color-graphite);
}

.page-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 110, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 110, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  z-index: 0;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ---- WRAPPING PAGE HERO ---- */
.wrapping-hero-split {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: var(--space-xl);
  align-items: center;
}

.wrapping-hero-left {
  animation: fadeInLeft 1.2s 0.3s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.wrapping-hero-left .hero-overline {
  justify-content: flex-start;
  animation: none;
  opacity: 1;
}

.wrapping-hero-left .hero-overline::before {
  display: none;
}

.wrapping-hero-left h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--color-oxygen);
  margin-bottom: var(--space-md);
}

.wrapping-hero-left h1 strong {
  font-weight: 700;
  font-style: italic;
  color: var(--color-gold);
  display: block;
}

.wrapping-hero-left > p {
  font-size: 1rem;
  color: var(--color-platinum);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: var(--space-md);
  opacity: 0.8;
}

.wrapping-hero-right {
  animation: fadeInRight 1.2s 0.5s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.hero-pkg-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-pkg-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 1.1rem 1.4rem;
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-radius: var(--radius-md);
  background: rgba(201, 169, 110, 0.03);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: var(--color-platinum);
}

.hero-pkg-item:hover {
  border-color: var(--color-gold);
  background: rgba(201, 169, 110, 0.08);
  transform: translateX(6px);
  color: var(--color-oxygen);
}

.hero-pkg-item .pkg-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-oxygen);
  font-weight: 300;
  flex: 0 0 auto;
}

.hero-pkg-item .pkg-sep {
  flex: 1;
  height: 1px;
  background: rgba(201, 169, 110, 0.18);
}

.hero-pkg-item .pkg-price {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  font-weight: 500;
  text-transform: uppercase;
  flex: 0 0 auto;
}

.hero-marquee-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.8rem;
  overflow: hidden;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  background: rgba(18, 18, 20, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  animation: marqueeScroll 28s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.55;
  flex-shrink: 0;
}

.marquee-dot {
  width: 3px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0.3;
  flex-shrink: 0;
}

/* ---- DESIGN PAGE HERO ---- */
.design-hero-layout {
  text-align: center;
  position: relative;
  padding: var(--space-lg) 0;
}

.design-hero-ghost-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.07);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.06em;
  animation: ghostFade 6s ease-in-out infinite;
  user-select: none;
  z-index: 0;
}

.design-hero-layout > .hero-overline {
  position: relative;
  z-index: 1;
  animation: none;
  opacity: 1;
}

.design-hero-circle-ornament {
  width: 160px;
  height: 160px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  position: relative;
  z-index: 1;
  animation: rotateSlow 30s linear infinite;
}

.design-hero-circle-ornament::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 50%;
  animation: rotateSlow 20s linear infinite reverse;
}

.design-hero-circle-ornament::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  top: -3px;
  left: calc(50% - 3px);
}

.design-hero-circle-ornament i {
  font-size: 2rem;
  color: var(--color-gold);
  position: relative;
  z-index: 1;
  animation: rotateSlow 30s linear infinite reverse;
}

.design-hero-layout h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--color-oxygen);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeInUp 1.2s 0.4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.design-hero-layout h1 span {
  font-weight: 700;
  font-style: italic;
  color: var(--color-gold);
}

.design-hero-body {
  font-size: 1rem;
  color: var(--color-platinum);
  font-weight: 300;
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeInUp 1.2s 0.7s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.design-hero-cta {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeInUp 1.2s 0.9s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  display: inline-block;
  margin-bottom: var(--space-lg);
}

.design-hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(201, 169, 110, 0.13);
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeInUp 1.2s 1.1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.design-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  display: block;
}

.design-stat-lbl {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-platinum);
  opacity: 0.55;
  display: block;
  margin-top: 0.4rem;
}

/* ---- CONTACT PAGE HERO ---- */
.contact-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.contact-hero-left {
  animation: fadeInLeft 1.2s 0.3s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.contact-hero-left .hero-overline {
  justify-content: flex-start;
  animation: none;
  opacity: 1;
}

.contact-hero-left .hero-overline::before {
  display: none;
}

.contact-hero-left h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  color: var(--color-oxygen);
  line-height: 1.08;
  margin-bottom: var(--space-md);
}

.contact-hero-left h1 em {
  font-weight: 700;
  font-style: italic;
  color: var(--color-gold);
  display: block;
}

.contact-hero-left > p {
  font-size: 1rem;
  color: var(--color-platinum);
  font-weight: 300;
  line-height: 1.85;
  opacity: 0.8;
}

.contact-hero-right {
  animation: fadeInRight 1.2s 0.5s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.contact-hero-info-card {
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  background: rgba(201, 169, 110, 0.03);
  position: relative;
  overflow: hidden;
}

.contact-hero-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.contact-detail-row:first-child {
  padding-top: 0;
}

.contact-detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-detail-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon i {
  font-size: 0.85rem;
  color: var(--color-gold);
}

.contact-detail-body h4 {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.8;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.contact-detail-body p,
.contact-detail-body a {
  font-size: 0.88rem;
  color: var(--color-platinum);
  line-height: 1.5;
}

.contact-detail-body a:hover {
  color: var(--color-gold);
}

/* ---- NEW KEYFRAMES ---- */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.8); }
  50%       { opacity: 1;    transform: scaleY(1.2); }
}

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

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes ghostFade {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* ---- RESPONSIVE — luxury heroes ---- */
@media (max-width: 900px) {
  .wrapping-hero-split {
    grid-template-columns: 1fr;
  }

  .wrapping-hero-right {
    display: none;
  }

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

@media (max-width: 768px) {
  .hero-luxury::after {
    display: none;
  }

  .hero-luxury h1 {
    font-size: clamp(2.2rem, 9vw, 4rem);
  }

  .page-hero {
    min-height: 70vh;
    padding: 8rem var(--space-md) var(--space-lg);
  }

  .design-hero-ghost-text {
    display: none;
  }

  .design-hero-stats {
    gap: var(--space-md);
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .design-hero-stats {
    gap: var(--space-sm);
  }

  .design-hero-circle-ornament {
    width: 120px;
    height: 120px;
  }

  .design-hero-circle-ornament::before {
    width: 90px;
    height: 90px;
  }

  .contact-hero-info-card {
    padding: var(--space-md);
  }
}

/* ============================================================
   320px — LUXURY HERO COMPONENTS
   All new hero classes introduced in the redesign.
   ============================================================ */
@media (max-width: 320px) {

  /* ─── Shared overline ─── */
  .hero-overline {
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    gap: 0.4rem;
    margin-bottom: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.6;
  }

  .hero-overline::before,
  .hero-overline::after {
    width: 18px;
  }

  /* ─── Home hero (.hero-luxury) ─── */
  .hero-luxury::after {
    display: none;
  }

  .hero-ornaments {
    display: none;
  }

  .hero-luxury-content {
    padding: 0 var(--space-xs);
  }

  .hero-luxury h1 {
    font-size: 1.65rem;
    letter-spacing: 0.01em;
    line-height: 1.1;
  }

  .hero-luxury h1 em {
    font-size: 0.85em;
    letter-spacing: 0.02em;
  }

  .hero-divider {
    margin: var(--space-sm) auto;
  }

  .hero-divider::before,
  .hero-divider::after {
    max-width: 50px;
  }

  .hero-divider-diamond {
    width: 6px;
    height: 6px;
  }

  .hero-luxury p {
    font-size: 0.78rem;
    letter-spacing: 0.01em;
    line-height: 1.65;
    margin-bottom: var(--space-md);
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-xs);
  }

  .hero-cta-group .btn {
    width: 100%;
    text-align: center;
  }

  .hero-scroll-indicator {
    display: none;
  }

  /* ─── Page heroes (.page-hero) ─── */
  .page-hero {
    padding: 6.5rem var(--space-sm) var(--space-lg);
  }

  .page-hero-grid-bg {
    background-size: 50px 50px;
  }

  /* ─── Wrapping hero ─── */
  .wrapping-hero-left h1 {
    font-size: 1.65rem;
    line-height: 1.1;
    margin-bottom: var(--space-sm);
  }

  .wrapping-hero-left > p {
    font-size: 0.78rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
  }

  .hero-marquee-bar {
    height: 2rem;
  }

  .marquee-track {
    gap: 1.5rem;
  }

  .marquee-track span {
    font-size: 0.52rem;
    letter-spacing: 0.16em;
  }

  .hero-pkg-item {
    padding: 0.75rem 0.85rem;
  }

  .hero-pkg-item .pkg-name {
    font-size: 1.05rem;
  }

  .hero-pkg-item .pkg-price {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  /* ─── Design hero ─── */
  .design-hero-layout {
    padding: var(--space-sm) 0;
  }

  .design-hero-circle-ornament {
    width: 88px;
    height: 88px;
    margin-bottom: var(--space-sm);
  }

  .design-hero-circle-ornament::before {
    width: 65px;
    height: 65px;
  }

  .design-hero-circle-ornament i {
    font-size: 1.4rem;
  }

  .design-hero-layout h1 {
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-xs);
  }

  .design-hero-body {
    font-size: 0.78rem;
    line-height: 1.65;
    margin-bottom: var(--space-md);
  }

  .design-hero-cta {
    margin-bottom: var(--space-md);
  }

  .design-hero-stats {
    gap: 0.6rem var(--space-md);
    padding-top: var(--space-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

  .design-stat-num {
    font-size: 1.7rem;
  }

  .design-stat-lbl {
    font-size: 0.52rem;
    letter-spacing: 0.12em;
  }

  /* ─── Contact hero ─── */
  .contact-hero-left h1 {
    font-size: 1.65rem;
    line-height: 1.1;
    margin-bottom: var(--space-sm);
  }

  .contact-hero-left > p {
    font-size: 0.78rem;
    line-height: 1.6;
  }

  .contact-hero-info-card {
    padding: var(--space-sm);
  }

  .contact-detail-row {
    gap: 0.55rem;
    padding: 0.65rem 0;
  }

  .contact-detail-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }

  .contact-detail-icon i {
    font-size: 0.7rem;
  }

  .contact-detail-body h4 {
    font-size: 0.52rem;
    letter-spacing: 0.18em;
  }

  .contact-detail-body p,
  .contact-detail-body a {
    font-size: 0.75rem;
    line-height: 1.45;
  }
}

/* ============================================================
   320px — THANKS PAGE
   ============================================================ */
@media (max-width: 320px) {

  .thanks-section {
    padding-top: 6rem;
    padding-bottom: var(--space-lg);
    /* Stack from top, not middle — prevents oversized vertical centering */
    align-items: flex-start;
  }

  .thanks-card {
    /* Remove rotation — rotated cards clip on tiny screens */
    transform: none;
    padding: var(--space-md) var(--space-sm);
    border-radius: var(--radius-md);
    /* Tighten the hover too */
  }

  .thanks-card:hover {
    transform: none;
  }

  /* Icon circle: scale down to fit comfortably */
  .thanks-icon {
    width: 68px;
    height: 68px;
    margin-bottom: var(--space-sm);
  }

  .thanks-icon i {
    font-size: 1.9rem;
  }

  /* Heading: 3rem → 1.65rem so it never wraps awkwardly */
  .thanks-title {
    font-size: 1.65rem;
    letter-spacing: 0.01em;
    margin-bottom: var(--space-sm);
  }

  .thanks-divider {
    width: 50px;
    margin: var(--space-sm) auto;
  }

  /* Lead paragraph */
  .thanks-lead {
    font-size: 0.82rem;
    line-height: 1.7;
    margin-bottom: var(--space-sm);
  }

  /* Body paragraph */
  .thanks-body {
    font-size: 0.78rem;
    line-height: 1.65;
    margin-bottom: var(--space-md);
  }

  /* Back button: full width for easy tapping */
  .thanks-card .btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   320px — POLICY PAGES (privacy, terms, cookies, return)
   ============================================================ */
@media (max-width: 320px) {

  /* ── Outer wrapper ── */
  .policy-page {
    padding-top: 6rem;
  }

  /* ── Inner container ── */
  .policy-container {
    padding: var(--space-lg) var(--space-xs);
  }

  /* ── Glass card ── */
  .policy-card {
    padding: var(--space-md) var(--space-sm);
    border-radius: var(--radius-md);
    /* backdrop-filter is expensive — keep it but reduce blur */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  /* ── Header block ── */
  .policy-header {
    margin-bottom: var(--space-md);
  }

  /* ── Icon circle: 80px → 56px ── */
  .policy-icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-sm);
  }

  .policy-icon i {
    font-size: 1.45rem;
  }

  /* ── Page title: 3rem → 1.65rem ── */
  .policy-title {
    font-size: 1.65rem;
    letter-spacing: 0.01em;
  }

  /* ── Date line ── */
  .policy-date {
    font-size: 0.7rem;
    margin-bottom: var(--space-md);
  }

  /* ── Section headings ── */
  .policy-card h2 {
    font-size: 1.08rem;
    margin-top: var(--space-md);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
  }

  .policy-card h3 {
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
  }

  /* ── Body text ── */
  .policy-card p {
    font-size: 0.78rem;
    line-height: 1.65;
    margin-bottom: var(--space-sm);
  }

  /* ── Lists: tighten indent so text doesn't clip ── */
  .policy-card ul {
    font-size: 0.78rem;
    line-height: 1.65;
    margin-left: 1rem;
    margin-bottom: var(--space-sm);
  }

  .policy-card ul li {
    margin-bottom: 0.2rem;
  }

  /* ── Info boxes ── */
  .policy-info-box {
    padding: var(--space-sm);
    margin-bottom: var(--space-sm);
  }

  /* ── Contact box ── */
  .policy-contact-box {
    padding: var(--space-sm);
    margin-top: var(--space-md);
  }
}
