/* Base theme */
:root {
  --bg: #0b0b0c;
  --bg-soft: #121214;
  --surface: #19191b;
  --surface-2: #202024;
  --text: #f8f4eb;
  --muted: #d2c4a9;
  --line: rgba(255, 255, 255, 0.11);
  --gold: #c69c48;
  --gold-strong: #e2b761;
  --white: #ffffff;
  --ok: #7ed39e;
  --error: #ff7b7b;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --container: min(1140px, 92vw);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 10% 10%, #1a1a1e 0%, var(--bg) 45%),
    linear-gradient(180deg, #09090a 0%, #0d0d0f 100%);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
.brand {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  line-height: 1.2;
  margin-top: 0;
}

p {
  margin-top: 0;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

input,
textarea,
select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold-strong);
  outline-offset: 2px;
}

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

.section-pad {
  padding: clamp(3.8rem, 8vw, 6.8rem) 0;
}

.section-contrast {
  background: linear-gradient(160deg, rgba(198, 156, 72, 0.08), rgba(255, 255, 255, 0.02));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  display: inline-block;
  color: var(--gold-strong);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
}

.section-head {
  margin-bottom: clamp(1.8rem, 4vw, 2.6rem);
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 0.6rem;
}

.section-head p {
  color: var(--muted);
}

/* Loader */
.loader-screen {
  position: fixed;
  inset: 0;
  background: #080809;
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 9999;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  animation: loader-fallback-hide 0.5s ease 2.5s forwards;
}

.loader-screen p {
  margin-top: 1rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.loader-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--gold-strong);
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loader-fallback-hide {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  background: var(--gold-strong);
  color: #151515;
  padding: 0.65rem 0.95rem;
  border-radius: 6px;
  z-index: 10000;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

/* Header and nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 800;
  backdrop-filter: blur(14px);
  background: rgba(9, 9, 10, 0.76);
  border-bottom: 1px solid var(--line);
}

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand span {
  color: var(--gold-strong);
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav-menu a {
  color: #f0ebdf;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -0.32rem;
  height: 2px;
  background: var(--gold-strong);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after,
.nav-menu a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  width: 46px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero-section {
  position: relative;
  overflow: clip;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 10% auto auto -12%;
  width: 44vw;
  height: 44vw;
  background: radial-gradient(circle, rgba(198, 156, 72, 0.18) 0%, rgba(198, 156, 72, 0) 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  margin-bottom: 1rem;
}

.hero-content p {
  max-width: 52ch;
  color: var(--muted);
}

.hero-visual img {
  border-radius: var(--radius);
  border: 1px solid rgba(198, 156, 72, 0.32);
  box-shadow: var(--shadow);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

/* Buttons */
.btn {
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  text-align: center;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  color: #161311;
  box-shadow: 0 14px 30px rgba(226, 183, 97, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 32px rgba(226, 183, 97, 0.38);
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold-strong);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(198, 156, 72, 0.12);
}

.text-link {
  color: var(--gold-strong);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.text-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

/* Cards and grids */
.collection-grid,
.product-grid,
.gallery-grid,
.team-grid,
.spec-grid,
.review-grid,
.card-grid-2 {
  display: grid;
  gap: 1.2rem;
}

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

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

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

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

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

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

.collection-card,
.product-card,
.panel-card,
.spec-card,
.review-card,
.team-card,
.info-card,
.clock-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.collection-card:hover,
.product-card:hover,
.team-card:hover,
.clock-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226, 183, 97, 0.65);
  box-shadow: var(--shadow);
}

.collection-card img,
.product-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.card-body {
  padding: 1rem 1rem 1.2rem;
}

.card-body h3 {
  font-size: 1.45rem;
  margin-bottom: 0.45rem;
}

.card-body p {
  color: var(--muted);
  font-size: 0.95rem;
}

.price {
  color: var(--gold-strong);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

/* Intro and stats */
.brand-intro {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.brand-intro h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.brand-intro p {
  color: var(--muted);
}

.stats-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card {
  background: rgba(198, 156, 72, 0.08);
  border: 1px solid rgba(198, 156, 72, 0.26);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.stat-card strong {
  display: block;
  color: var(--gold-strong);
  font-size: 1.55rem;
  margin-bottom: 0.2rem;
}

.stat-card span {
  color: #f0e6d3;
}

/* Parallax sections */
.parallax-band {
  position: relative;
  min-height: clamp(18rem, 42vw, 27rem);
  display: grid;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background-image: linear-gradient(130deg, rgba(7, 7, 8, 0.78), rgba(7, 7, 8, 0.62)), url("images/lifestyle-4.jpg");
  background-size: cover;
  background-position: center calc(50% + var(--parallax-offset, 0px));
  background-attachment: fixed;
}

.parallax-about {
  background-image: linear-gradient(130deg, rgba(7, 7, 8, 0.8), rgba(7, 7, 8, 0.64)), url("images/craftsmanship.jpg");
}

.parallax-content {
  position: relative;
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
}

.parallax-content h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 0.8rem;
}

.parallax-content p {
  color: #f4e5cb;
}

/* Testimonials */
.testimonial-slider {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.testimonial-slide.is-active {
  display: block;
}

.testimonial-slide p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: #efe3cd;
  margin-bottom: 1.2rem;
}

.testimonial-slide h3 {
  margin: 0;
  font-size: 1.35rem;
}

.testimonial-slide span {
  color: var(--muted);
  font-size: 0.92rem;
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0 1.2rem 1rem;
}

.icon-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 700;
  cursor: pointer;
}

.icon-btn:hover {
  border-color: var(--gold);
  color: var(--gold-strong);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding-bottom: 1.1rem;
}

.slider-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--gold-strong);
  border-color: var(--gold-strong);
}

/* Gallery */
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.38s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item figcaption {
  padding: 0.7rem 0.9rem 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Newsletter */
.newsletter-wrap {
  padding-top: 2rem;
}

.newsletter-card {
  border: 1px solid rgba(198, 156, 72, 0.35);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 4vw, 2.2rem);
  background: linear-gradient(160deg, rgba(198, 156, 72, 0.13), rgba(198, 156, 72, 0.04));
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.newsletter-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: 0.55rem;
}

.newsletter-card p {
  color: #f0e2c8;
}

.newsletter-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.newsletter-row {
  display: flex;
  gap: 0.7rem;
}

.newsletter-row .btn {
  white-space: nowrap;
}

.form-feedback {
  min-height: 1.4rem;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-feedback.success {
  color: var(--ok);
}

.form-feedback.error {
  color: var(--error);
}

/* Page hero */
.page-hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(198, 156, 72, 0.1), transparent);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 0.7rem;
}

.page-hero p {
  max-width: 70ch;
  color: var(--muted);
}

.collections-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.collections-nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.52rem 0.88rem;
  color: var(--muted);
  font-weight: 700;
}

.collections-nav a:hover {
  border-color: var(--gold);
  color: var(--gold-strong);
}

/* Product detail page */
.product-detail {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.3rem;
  align-items: start;
}

.product-gallery,
.product-summary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.main-product-image {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  width: 100%;
  margin-bottom: 0.85rem;
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.thumb-btn {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.thumb-btn img {
  aspect-ratio: 1;
  object-fit: cover;
}

.thumb-btn.is-active {
  border-color: var(--gold-strong);
}

.product-summary h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.price-display {
  color: var(--gold-strong);
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 1rem;
}

.feature-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.feature-list li + li {
  margin-top: 0.3rem;
}

.spec-card,
.review-card {
  padding: 1rem;
}

.spec-card h3,
.review-card h3 {
  margin-bottom: 0.4rem;
}

.spec-card p,
.review-card p {
  color: var(--muted);
}

.review-rating {
  color: var(--gold-strong);
  font-weight: 700;
}

/* About page */
.two-column {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.panel-card {
  padding: 1rem;
}

.process-list {
  padding-left: 1.25rem;
  color: var(--muted);
}

.process-list li + li {
  margin-top: 0.5rem;
}

.image-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.team-card {
  text-align: center;
  padding-bottom: 1rem;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.team-card h3 {
  margin: 0.85rem 0 0.2rem;
}

.team-card p {
  color: var(--muted);
  margin: 0;
}

/* Timezones page */
.clock-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 0.8rem;
}

.field-group {
  display: grid;
  gap: 0.45rem;
}

.field-group label {
  font-weight: 700;
}

.city-highlight {
  border: 1px solid rgba(198, 156, 72, 0.35);
  border-radius: var(--radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
  background: linear-gradient(140deg, rgba(198, 156, 72, 0.12), rgba(255, 255, 255, 0.02));
}

.city-highlight h2 {
  margin-bottom: 0.2rem;
  font-size: clamp(2rem, 5vw, 3rem);
}

.highlight-time {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--gold-strong);
  margin: 0.3rem 0;
}

.highlight-date {
  color: var(--muted);
  margin: 0;
}

.clock-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.clock-card {
  padding: 0.95rem;
}

.clock-card h3 {
  margin-bottom: 0.4rem;
}

.clock-time {
  font-size: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--gold-strong);
  margin: 0;
}

.clock-date {
  color: var(--muted);
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
}

.clock-remove {
  margin-top: 0.7rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.28rem 0.58rem;
  font-size: 0.76rem;
  cursor: pointer;
  color: #f0e6d3;
}

.clock-remove:hover {
  border-color: var(--gold);
  color: var(--gold-strong);
}

.map-wrapper {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
}

.contact-info,
.contact-form-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

.contact-info h2,
.contact-form-wrap h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.info-card {
  padding: 0.8rem;
}

.info-card + .info-card {
  margin-top: 0.7rem;
}

.info-card h3 {
  margin-bottom: 0.3rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

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

textarea {
  resize: vertical;
}

/* Footer and back-to-top */
.site-footer {
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
  background: #0a0a0b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 0.9rem;
  padding-bottom: 1rem;
}

.footer-grid h3 {
  font-size: 1.65rem;
  margin-bottom: 0.35rem;
}

.footer-grid h4 {
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
}

.footer-grid p {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-grid a {
  color: #f4e8cf;
}

.footer-grid a:hover {
  color: var(--gold-strong);
}

.footer-copy {
  margin: 0;
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 0.9rem 0 1rem;
  color: var(--muted);
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(198, 156, 72, 0.55);
  border-radius: 999px;
  background: rgba(10, 10, 11, 0.9);
  color: var(--gold-strong);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  z-index: 700;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Reveal animation */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* Responsive styles */
@media (max-width: 1080px) {
  .collection-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-grid,
  .brand-intro,
  .product-detail,
  .two-column,
  .contact-layout,
  .newsletter-card {
    grid-template-columns: 1fr;
  }

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

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

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

  .parallax-band {
    background-attachment: scroll;
  }
}

@media (max-width: 780px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    width: min(320px, calc(100vw - 2rem));
    background: #0f0f11;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 0.8rem;
    display: grid;
    gap: 0.6rem;
    transform-origin: top right;
    transform: scale(0.95);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
  }

  .nav-menu a {
    display: block;
    padding: 0.4rem 0.3rem;
  }

  .newsletter-row {
    flex-direction: column;
  }

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

  .team-grid,
  .card-grid-2,
  .spec-grid,
  .review-grid,
  .stats-grid,
  .clock-grid,
  .collection-grid,
  .product-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: clamp(2.1rem, 9vw, 3.2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .parallax-band {
    background-attachment: scroll;
  }
}
