/* stripped external import */

:root {
  --imperial-moss: #064E3B;
  --ivory-linen: #FDFCF0;
  --burnished-gold: #A68A56;
  --deep-forest: #022C22;
  --muted-gold: #C5A021;
  
  --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(6, 78, 59, 0.08);
  --shadow-md: 0 4px 16px rgba(6, 78, 59, 0.12);
  --shadow-lg: 0 8px 32px rgba(6, 78, 59, 0.16);
  
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s 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 {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--deep-forest);
  background: var(--ivory-linen);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--burnished-gold);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
}

p {
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
  font-weight: 300;
}

a {
  color: var(--burnished-gold);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--muted-gold);
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all var(--transition-smooth);
}

.header.scrolled {
  position: fixed;
  background: rgba(253, 252, 240, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-sm) 0;
  transform: translateY(0);
}

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

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

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--burnished-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
}

.logo:hover {
  transform: scale(1.05);
  color: var(--muted-gold);
}

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

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

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--muted-gold);
  transition: width var(--transition-fast);
}

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

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

.burger span {
  width: 1.75rem;
  height: 2px;
  background: var(--burnished-gold);
  transition: all var(--transition-fast);
}

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

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

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

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

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 50%;
  animation: fadeInUp var(--transition-luxury) ease-out;
}

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

.hero-subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--imperial-moss);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

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

.hero p {
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
  color: var(--imperial-moss);
  opacity: 0.8;
}

/* ——— Luxury hero variants ——— */
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--burnished-gold), transparent);
  height: 1px;
  opacity: 0.6;
  transform-origin: left center;
}

.hero__line--top {
  top: 0;
  left: 0;
  width: 0;
  animation: heroLineExpand 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.4s forwards;
}

.hero__line--bottom {
  bottom: 0;
  left: 0;
  width: 0;
  animation: heroLineExpand 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.8s forwards;
}

@keyframes heroLineExpand {
  to { width: 120px; }
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: heroGlowIn 1.8s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
}

.hero__glow--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(166, 138, 86, 0.15) 0%, transparent 70%);
  top: -10%;
  right: 10%;
}

.hero__glow--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 78, 59, 0.12) 0%, transparent 70%);
  bottom: 10%;
  left: -5%;
  animation-delay: 0.6s;
}

.hero__shape {
  position: absolute;
  border: 1px solid rgba(166, 138, 86, 0.2);
  border-radius: 50%;
  opacity: 0;
}

.hero__shape--1 {
  width: 60px;
  height: 60px;
  top: 20%;
  right: 15%;
  animation: heroShapeFloat 6s ease-in-out 1s infinite;
}

.hero__shape--2 {
  width: 40px;
  height: 40px;
  bottom: 25%;
  right: 25%;
  animation: heroShapeFloat 5s ease-in-out 2s infinite;
}

.hero__shape--3 {
  width: 30px;
  height: 30px;
  top: 40%;
  left: 10%;
  animation: heroShapeFloat 7s ease-in-out 0.5s infinite;
}

@keyframes heroGlowIn {
  to { opacity: 1; }
}

@keyframes heroShapeFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50% { transform: translate(15px, -20px) scale(1.1); opacity: 0.7; }
}

/* Home hero: layered reveal + gold accent */
.hero--home .hero-content {
  animation: none;
}

.hero--home .hero-subtitle {
  opacity: 0;
  transform: translateY(20px);
  animation: heroRevealUp 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
}

.hero--home .hero h1 {
  opacity: 0;
  transform: translateY(30px);
  animation: heroRevealUp 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.35s forwards;
}

.hero--home .hero-content > p {
  opacity: 0;
  transform: translateY(20px);
  animation: heroRevealUp 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.5s forwards;
}

.hero--home .hero-content .btn {
  opacity: 0;
  transform: translateY(20px);
  animation: heroRevealUp 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.65s forwards;
}

@keyframes heroRevealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero--home .hero__accent {
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0;
  background: linear-gradient(180deg, transparent, var(--muted-gold), transparent);
  opacity: 0.5;
  animation: heroAccentGrow 1.4s cubic-bezier(0.19, 1, 0.22, 1) 0.6s forwards;
}

@keyframes heroAccentGrow {
  to { height: 200px; }
}

/* Objects hero: refined marquee shimmer */
.hero--objects .hero-canvas {
  opacity: 0.85;
}

.hero--objects .hero__shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(166, 138, 86, 0.06),
    transparent
  );
  animation: heroShimmer 4s ease-in-out 1s infinite;
}

@keyframes heroShimmer {
  0% { left: -50%; }
  60%, 100% { left: 150%; }
}

.hero--objects .hero-content .hero-subtitle,
.hero--objects .hero-content h1,
.hero--objects .hero-content p {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  animation: heroClipReveal 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero--objects .hero-content .hero-subtitle { animation-delay: 0.15s; }
.hero--objects .hero-content h1 { animation-delay: 0.3s; }
.hero--objects .hero-content p { animation-delay: 0.45s; }

@keyframes heroClipReveal {
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

/* Daily Use hero: soft gradient morph + floating cards */
.hero--daily-use {
  background: linear-gradient(
    135deg,
    var(--ivory-linen) 0%,
    rgba(253, 252, 240, 0.97) 40%,
    rgba(166, 138, 86, 0.04) 70%,
    var(--ivory-linen) 100%
  );
  background-size: 200% 200%;
  animation: heroGradientMorph 12s ease-in-out infinite;
}

@keyframes heroGradientMorph {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero--daily-use .hero__float {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--burnished-gold);
  border-radius: 50%;
  opacity: 0.3;
}

.hero--daily-use .hero__float--1 {
  top: 25%;
  left: 20%;
  animation: heroFloatDot 5s ease-in-out 0s infinite;
}

.hero--daily-use .hero__float--2 {
  top: 60%;
  right: 20%;
  animation: heroFloatDot 6s ease-in-out 1s infinite;
}

.hero--daily-use .hero__float--3 {
  bottom: 30%;
  left: 15%;
  animation: heroFloatDot 5.5s ease-in-out 0.5s infinite;
}

@keyframes heroFloatDot {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  33% { transform: translate(10px, -15px); opacity: 0.5; }
  66% { transform: translate(-5px, 10px); opacity: 0.4; }
}

.hero--daily-use .hero-content .hero-subtitle,
.hero--daily-use .hero-content h1,
.hero--daily-use .hero-content p {
  opacity: 0;
  transform: translateY(24px);
  animation: heroRevealUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero--daily-use .hero-content .hero-subtitle { animation-delay: 0.1s; }
.hero--daily-use .hero-content h1 { animation-delay: 0.25s; }
.hero--daily-use .hero-content p { animation-delay: 0.4s; }

/* Contact hero: minimal line-draw elegance */
.hero--contact {
  min-height: 50vh;
}

.hero--contact .hero-canvas {
  opacity: 0.5;
}

.hero--contact .hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(166, 138, 86, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166, 138, 86, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  opacity: 0;
  animation: heroGridFade 1.5s ease-out 0.3s forwards;
}

@keyframes heroGridFade {
  to { opacity: 1; }
}

.hero--contact .hero-content .hero-subtitle {
  opacity: 0;
  letter-spacing: 0.4em;
  animation: heroContactReveal 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.1s forwards;
}

.hero--contact .hero-content h1 {
  opacity: 0;
  animation: heroContactReveal 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.25s forwards;
}

.hero--contact .hero-content p {
  opacity: 0;
  animation: heroContactReveal 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.4s forwards;
}

@keyframes heroContactReveal {
  to { opacity: 1; }
}

.hero--contact .hero__underline {
  display: inline-block;
  position: relative;
}

.hero--contact .hero__underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.15em;
  width: 0;
  height: 2px;
  background: var(--muted-gold);
  animation: heroUnderlineDraw 1s cubic-bezier(0.19, 1, 0.22, 1) 0.5s forwards;
}

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

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width var(--transition-smooth), height var(--transition-smooth);
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--deep-forest);
  color: var(--ivory-linen);
}

.btn-primary:hover {
  background: var(--imperial-moss);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--burnished-gold);
  border: 2px solid var(--burnished-gold);
}

.btn-secondary:hover {
  background: var(--burnished-gold);
  color: var(--ivory-linen);
  transform: translateY(-2px);
}

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

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  transform: translateY(2rem);
  transition: all var(--transition-luxury);
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--imperial-moss);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  transform: translateY(2rem);
}

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

.card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

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

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

.card-content {
  padding: var(--space-md);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--burnished-gold);
}

.card-text {
  color: var(--imperial-moss);
  margin-bottom: var(--space-sm);
}

.price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--muted-gold);
  margin: var(--space-sm) 0;
}

.asymmetric-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.asymmetric-layout:nth-child(even) {
  direction: rtl;
}

.asymmetric-layout:nth-child(even) > * {
  direction: ltr;
}

.overlap-section {
  position: relative;
  margin-top: -5rem;
}

.angled-section {
  transform: skewY(-2deg);
  padding: var(--space-xl) 0;
  background: var(--imperial-moss);
  margin: var(--space-xl) 0;
}

.angled-section > * {
  transform: skewY(2deg);
}

.angled-section h2,
.angled-section p {
  color: var(--ivory-linen);
}

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

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--imperial-moss);
  letter-spacing: 0.05em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 2px solid rgba(6, 78, 59, 0.2);
  border-radius: var(--radius-sm);
  background: white;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--burnished-gold);
  box-shadow: 0 0 0 3px rgba(166, 138, 86, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 1.125rem;
  height: 1.125rem;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.875rem;
  cursor: pointer;
}

.contact-section {
  background: linear-gradient(135deg, var(--imperial-moss) 0%, var(--deep-forest) 100%);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 40%;
  height: 200%;
  background: rgba(166, 138, 86, 0.05);
  transform: rotate(15deg);
}

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

.contact-info h2,
.contact-info p,
.contact-info a {
  color: var(--ivory-linen);
}

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

.contact-details {
  margin-top: var(--space-md);
}

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

.contact-item i {
  font-size: 1.25rem;
  color: var(--muted-gold);
}

.contact-form {
  background: rgba(253, 252, 240, 0.98);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-md);
  position: relative;
}

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

.map-container .map-fallback {
  margin: var(--space-sm) 0 0;
  font-size: 0.875rem;
  text-align: center;
}

.map-container .map-fallback a {
  color: var(--imperial-moss);
  text-underline-offset: 0.2em;
}

.map-container .map-fallback a:hover {
  color: var(--burnished-gold);
}

.footer {
  background: var(--deep-forest);
  color: var(--ivory-linen);
  padding: var(--space-md) 0;
  text-align: center;
  font-size: 0.875rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--ivory-linen);
  font-size: 0.8125rem;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 44, 34, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

.modal-content {
  background: var(--ivory-linen);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform var(--transition-smooth);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  font-size: 2rem;
  color: var(--imperial-moss);
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--burnished-gold);
}

.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: clamp(4rem, 10vw, 8rem);
  margin-bottom: var(--space-sm);
}

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

.thankyou-content {
  max-width: 600px;
}

.thankyou-icon {
  font-size: 4rem;
  color: var(--muted-gold);
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--ivory-linen);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-smooth);
  }

  .nav.active {
    right: 0;
  }

  .burger {
    display: flex;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero__shape,
  .hero__accent {
    display: none;
  }

  .hero__glow--1,
  .hero__glow--2 {
    filter: blur(50px);
    opacity: 0.6;
  }

  .hero--daily-use .hero__float {
    width: 6px;
    height: 6px;
  }

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

  .asymmetric-layout:nth-child(even) {
    direction: ltr;
  }

  .angled-section {
    transform: none;
  }

  .angled-section > * {
    transform: none;
  }

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

@media (max-width: 480px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }

  .card-image {
    height: 220px;
  }

  .contact-form {
    padding: var(--space-md);
  }
}

/* ——— 320px: best responsive support for small phones ——— */
@media (max-width: 320px) {
  :root {
    --space-xs: 0.375rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 2.5rem;
  }

  html {
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 0.875rem;
    overflow-x: hidden;
    min-width: 280px;
  }

  h1 {
    font-size: 1.75rem;
    line-height: 1.2;
    word-wrap: break-word;
  }

  h2 {
    font-size: 1.375rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  h4 {
    font-size: 1rem;
  }

  .header-content {
    padding: 0 0.5rem;
    min-height: 3.25rem;
  }

  .container {
    padding: 0 0.75rem;
    min-width: 0;
  }

  .logo {
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav {
    width: 85%;
    max-width: 280px;
    padding: 2rem 1rem;
  }

  .nav a {
    font-size: 0.8125rem;
    padding: 0.5rem 0;
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .burger {
    padding: 0.5rem;
  }

  .burger span {
    width: 1.5rem;
  }

  .hero {
    padding: 2.5rem 0;
    min-height: 70vh;
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-subtitle {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
  }

  .hero p {
    font-size: 0.9375rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
    min-height: 2.75rem;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .section {
    padding: 2rem 0;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
  }

  .grid {
    gap: 0.75rem;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .card {
    min-width: 0;
  }

  .card-image {
    height: 180px;
  }

  .card-content {
    padding: 0.875rem;
  }

  .card-title {
    font-size: 1.125rem;
  }

  .card-text {
    font-size: 0.8125rem;
  }

  .price {
    font-size: 1.375rem;
  }

  .asymmetric-layout {
    gap: 1.5rem;
  }

  .asymmetric-layout img {
    max-width: 100%;
    height: auto;
  }

  .angled-section {
    padding: 2rem 0;
    margin: 2rem 0;
  }

  .angled-section h2 {
    font-size: 1.25rem;
  }

  .footer {
    padding: 1.25rem 0;
  }

  .footer-content {
    gap: 0.75rem;
    flex-direction: column;
    text-align: center;
  }

  .footer-content p {
    font-size: 0.75rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-links a {
    font-size: 0.75rem;
  }

  .contact-section {
    padding: 2rem 0;
  }

  .contact-container {
    gap: 1.5rem;
  }

  .contact-info h2 {
    font-size: 1.25rem;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .contact-item p,
  .contact-item strong {
    font-size: 0.8125rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .contact-form h3 {
    font-size: 1.125rem;
  }

  .form-group {
    margin-bottom: 0.875rem;
  }

  .form-label {
    font-size: 0.8125rem;
  }

  .form-input,
  .form-textarea {
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
    min-height: 2.75rem;
  }

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

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

  .map-container {
    height: 280px;
    margin-top: 0.75rem;
  }

  .map-container .map-fallback {
    margin-top: 0.5rem;
    font-size: 0.75rem;
  }

  .modal-content {
    padding: 1rem;
    width: 95%;
    max-height: 85vh;
  }

  .modal-content h3 {
    font-size: 1.25rem;
  }

  .modal-content p {
    font-size: 0.8125rem;
  }

  .modal-close {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.5rem;
  }

  /* ——— Thanks & policy pages: reduce top padding when inline style used ——— */
  .section[style*="padding-top: 8rem"],
  .section[style*="min-height: 100vh"] {
    padding-top: 4.5rem !important;
  }

  /* ——— Thanks (appreciation) page ——— */
  .section .container > div > div.fade-in {
    padding: 1.5rem 1rem !important;
    border-radius: 0.75rem;
    margin: 0 0.25rem;
  }

  .section .container > div > div.fade-in > div:first-child {
    width: 70px !important;
    height: 70px !important;
    margin-bottom: 1.25rem !important;
  }

  .section .container > div > div.fade-in > div:first-child i {
    font-size: 2rem !important;
  }

  .section .container > div > div.fade-in h1 {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
  }

  .section .container > div > div.fade-in > div[style*="width: 80px"] {
    width: 50px !important;
    margin-bottom: 1rem !important;
  }

  .section .container > div > div.fade-in p {
    font-size: 0.875rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.6;
  }

  .section .container > div > div.fade-in p:last-of-type {
    margin-bottom: 1.5rem !important;
  }

  .section .container > div > div.fade-in > div:last-child {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }

  .section .container > div > div.fade-in > div:last-child .btn {
    width: 100%;
    margin: 0;
  }

  .section > div[style*="position: absolute"][style*="border-radius: 50%"]:first-of-type {
    width: 150px !important;
    height: 150px !important;
    top: 5%;
    right: -20%;
  }

  .section > div[style*="position: absolute"][style*="border-radius: 50%"]:last-of-type {
    width: 100px !important;
    height: 100px !important;
    bottom: 10%;
    left: -15%;
  }

  /* ——— Terms, Cookies, Return, Privacy pages ——— */
  .section .container > div > div:first-child:not(:only-child) {
    margin-bottom: 2rem !important;
  }

  .section .container > div > div:first-child:not(:only-child) > div {
    padding: 0.375rem 1rem !important;
    border-radius: 1.5rem;
    margin-bottom: 1rem !important;
  }

  .section .container > div > div:first-child:not(:only-child) p {
    font-size: 0.6875rem !important;
    letter-spacing: 0.1em;
  }

  .section .container > div > div:first-child:not(:only-child) h1 {
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .section .container > div > div:first-child:not(:only-child) p:last-child {
    font-size: 0.8125rem !important;
  }

  .section .container > div > div:nth-child(2) {
    padding: 1rem !important;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(6, 78, 59, 0.08);
  }

  .section .container > div > div:nth-child(2) > div[style*="border-left"] {
    padding-left: 1rem !important;
    margin-bottom: 1.5rem !important;
    border-left-width: 3px !important;
  }

  .section .container > div > div:nth-child(2) > div[style*="border-left"] p {
    font-size: 0.875rem !important;
    line-height: 1.65;
  }

  .section .container > div > div:nth-child(2) h2 {
    font-size: 1.0625rem !important;
    margin: 1.5rem 0 0.75rem !important;
    padding-top: 1.25rem !important;
  }

  .section .container > div > div:nth-child(2) p {
    font-size: 0.8125rem !important;
    line-height: 1.65;
    margin-bottom: 0.75rem !important;
  }

  .section .container > div > div:nth-child(2) ul,
  .section .container > div > div:nth-child(2) ol {
    margin-left: 1.25rem;
    padding-right: 0.25rem;
    font-size: 0.8125rem;
    line-height: 1.7;
  }

  .section .container > div > div:nth-child(2) li {
    margin-bottom: 0.5rem !important;
  }

  .section .container > div > div:nth-child(2) a {
    word-break: break-word;
  }

  .section .container > div > div:nth-child(2) > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
  }

  .section .container > div > div:nth-child(2) > div[style*="grid-template-columns"] > div {
    padding: 1rem !important;
  }

  .section .container > div > div:nth-child(2) > div[style*="grid-template-columns"] h3 {
    font-size: 1rem !important;
    margin-bottom: 0.5rem !important;
  }

  .section .container > div > div:nth-child(2) > div[style*="grid-template-columns"] p {
    font-size: 0.8125rem !important;
  }

  .section .container > div > div:nth-child(2) > div[style*="width: 60px"] {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: 1rem !important;
  }

  .section .container > div > div:nth-child(2) > div[style*="width: 60px"] i {
    font-size: 1.25rem !important;
  }

  .section .container > div > div:nth-child(2) > div:last-child {
    margin-top: 1.5rem !important;
    padding: 1rem !important;
    border-radius: 0.5rem;
  }

  .section .container > div > div:nth-child(2) > div:last-child h3 {
    font-size: 1rem !important;
    margin-bottom: 0.75rem !important;
  }

  .section .container > div > div:nth-child(2) > div:last-child p {
    font-size: 0.75rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.6;
  }

  .section .container > div > div:nth-child(2) > div:last-child a {
    font-size: 0.75rem;
    word-break: break-all;
  }
}

.fade-in {
  animation: fadeIn var(--transition-smooth) ease-out;
}

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

.slide-in-left {
  animation: slideInLeft var(--transition-luxury) ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-3rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight var(--transition-luxury) ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(3rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.scale-in {
  animation: scaleIn var(--transition-smooth) ease-out;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.rotate-in {
  animation: rotateIn var(--transition-luxury) ease-out;
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-5deg) scale(0.95);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}
