/* ============================================================
   VISURIA OCCHIALI — CSS
   Stile Apple-inspired: minimalismo, tipografia pulita,
   animazioni fluide, palette monocromatica con accenti oro
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:       #000000;
  --near-black:  #0a0a0a;
  --dark-1:      #111111;
  --dark-2:      #1a1a1a;
  --dark-3:      #222222;
  --mid:         #555555;
  --light-mid:   #888888;
  --light-1:     #bbbbbb;
  --light-2:     #dddddd;
  --off-white:   #f5f5f7;
  --white:       #ffffff;
  --gold:        #c8a96e;
  --gold-light:  #e0c48a;

  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-h:       90px;
  --max-w:       1200px;
  --section-pad: clamp(80px, 10vw, 140px);

  --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark-1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ---------- UTILITIES ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.label--light {
  color: var(--gold-light);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dark-1);
  margin-bottom: 20px;
}

.section-desc {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--mid);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--dark-1);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--dark-3);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn--ghost {
  background: transparent;
  color: var(--dark-1);
  border: 1.5px solid rgba(0,0,0,0.25);
}

.btn--ghost:hover {
  border-color: var(--dark-1);
  background: rgba(0,0,0,0.04);
}

.btn--white {
  background: var(--white);
  color: var(--dark-1);
}

.btn--white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}

.btn--large {
  padding: 18px 48px;
  font-size: 17px;
}

.btn--full {
  width: 100%;
}

.link-arrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: letter-spacing 0.3s var(--ease-out);
}

.link-arrow:hover {
  letter-spacing: 0.06em;
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  flex-shrink: 0;
}

.nav__logo-img {
  height: 64px;
  width: auto;
  filter: brightness(0);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
}

.nav__links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--dark-1);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

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

.nav__cta {
  font-size: 13px;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 980px;
  background: var(--dark-1);
  color: var(--white);
  transition: background 0.3s;
  flex-shrink: 0;
}

.nav__cta:hover {
  background: var(--dark-3);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark-1);
  transition: all 0.3s var(--ease-out);
}

.nav__mobile {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px clamp(20px, 5vw, 60px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav__mobile a {
  font-size: 18px;
  font-weight: 300;
  color: var(--dark-1);
}

.nav__mobile.open {
  display: block;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.2) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(24px, 8vw, 120px);
  max-width: 760px;
  animation: heroFadeIn 1.2s var(--ease-out) 0.3s both;
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__actions .btn--ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.hero__actions .btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

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

/* ---------- STATEMENT ---------- */
.statement {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--off-white);
}

.statement__text {
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--dark-1);
  max-width: 900px;
  margin: 0 auto;
}

/* ---------- PRODUCT HERO ---------- */
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  overflow: hidden;
}

.product-hero__visual {
  overflow: hidden;
}

.product-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.product-hero:hover .product-hero__img {
  transform: scale(1.03);
}

.product-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 100px) clamp(40px, 7vw, 90px);
  background: var(--white);
}

.product-hero__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--dark-1);
  margin-bottom: 24px;
}

.product-hero__desc {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--mid);
  margin-bottom: 36px;
}

.product-hero__specs {
  margin-bottom: 40px;
  border-top: 1px solid var(--light-2);
}

.product-hero__specs li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-2);
  font-size: 14px;
  color: var(--dark-1);
}

.product-hero__specs li span {
  color: var(--light-mid);
  font-weight: 400;
}

/* ---------- COLLECTION ---------- */
.collection {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

.collection__item {
  cursor: pointer;
}

.collection__img-wrap {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1 / 1;
  margin-bottom: 24px;
  background: var(--off-white);
}

.collection__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.collection__item:hover .collection__img-wrap img {
  transform: scale(1.05);
}

.collection__info h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--dark-1);
}

.collection__info p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--mid);
  margin-bottom: 16px;
}

/* ---------- PHILOSOPHY ---------- */
.philosophy {
  background: var(--off-white);
  overflow: hidden;
}

.philosophy__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}

.philosophy__visual {
  overflow: hidden;
}

.philosophy__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.philosophy__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 120px) clamp(40px, 7vw, 90px);
}

.philosophy__content h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--dark-1);
  margin-bottom: 28px;
}

.philosophy__content p {
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 20px;
}

.philosophy__values {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.value-number {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding-top: 3px;
  flex-shrink: 0;
}

.value-item h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-1);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 13px;
  color: var(--light-mid);
  margin: 0;
  line-height: 1.5;
}

/* ---------- CRAFT ---------- */
.craft {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.craft__bg {
  position: absolute;
  inset: 0;
}

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

.craft__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.6) 60%,
    rgba(0,0,0,0.3) 100%
  );
}

.craft__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.craft__title {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}

.craft__desc {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 56px;
}

.craft__stats {
  display: flex;
  gap: clamp(32px, 5vw, 64px);
}

.stat__number {
  display: block;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.stat__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ---------- MAN SECTION ---------- */
.man-section {
  background: var(--white);
  overflow: hidden;
}

.man-section__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.man-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 120px) clamp(40px, 7vw, 90px);
  order: 1;
}

.man-section__content h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--dark-1);
  margin-bottom: 24px;
}

.man-section__content p {
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 36px;
}

.man-section__visual {
  overflow: hidden;
  order: 2;
}

.man-section__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ---------- LIFESTYLE ---------- */
.lifestyle {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.lifestyle__bg {
  position: absolute;
  inset: 0;
}

.lifestyle__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.lifestyle__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.55) 100%
  );
}

.lifestyle__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.lifestyle__title {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.lifestyle__desc {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

.testimonial {
  background: var(--white);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.testimonial__text {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--dark-1);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial__text::before {
  content: '"';
  font-size: 48px;
  line-height: 0;
  vertical-align: -18px;
  color: var(--gold);
  margin-right: 4px;
  font-style: normal;
}

.testimonial__name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-1);
  margin-bottom: 2px;
}

.testimonial__role {
  font-size: 12px;
  color: var(--light-mid);
  letter-spacing: 0.04em;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  padding: var(--section-pad) 0;
  background: var(--dark-1);
  text-align: center;
}

.final-cta .label {
  color: var(--gold);
}

.final-cta__title {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.final-cta__desc {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .btn--primary {
  background: var(--white);
  color: var(--dark-1);
}

.final-cta .btn--primary:hover {
  background: var(--off-white);
}

/* ---------- CONTACT ---------- */
.contact {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.contact__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.contact__info h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--dark-1);
  margin-bottom: 24px;
}

.contact__info p {
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact__detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact__detail a,
.contact__detail span {
  font-size: 15px;
  color: var(--dark-1);
  font-weight: 300;
}

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

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
}

.form__group input,
.form__group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--light-2);
  border-radius: 12px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 300;
  color: var(--dark-1);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
  -webkit-appearance: none;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--light-1);
}

.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--dark-1);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--near-black);
  color: var(--white);
  padding: clamp(60px, 8vw, 100px) 0 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  margin-bottom: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer__brand p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
}

.footer__col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: rgba(255,255,255,0.7);
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .product-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-hero__visual {
    height: 55vw;
    min-height: 300px;
  }

  .philosophy__split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .philosophy__visual {
    height: 55vw;
    min-height: 300px;
  }

  .man-section__split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .man-section__visual {
    height: 55vw;
    min-height: 300px;
    order: 1;
  }

  .man-section__content {
    order: 2;
  }

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

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

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

@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .collection__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

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

  .craft__stats {
    flex-direction: column;
    gap: 28px;
  }

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

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer__legal {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}
