/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --bg-alt: #f7f6f3;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --accent: #1a1a1a;
  --accent-hover: #333333;
  --border: #e5e5e5;
  --radius: 12px;
  --nav-h: 64px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Accessibility ── */
.skip-link {
  position: absolute;
  top: -48px;
  left: 8px;
  z-index: 100;
  background: var(--text);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: top var(--transition);
}
.skip-link:focus {
  top: 8px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.nav:not(.scrolled) a:focus-visible,
.hero a:focus-visible,
.btn-hero:focus-visible {
  outline-color: #ffffff;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }

.btn-hero {
  background: #fff;
  color: var(--text);
  border: 1.5px solid #fff;
}
.btn-hero:hover { background: transparent; color: #fff; transform: translateY(-1px); }

/* ── Section Labels & Titles ── */
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 48px;
  text-align: center;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

/* White nav text over dark hero */
.nav:not(.scrolled) .nav-logo,
.nav:not(.scrolled) .nav-links a:not(.nav-cta) { color: rgba(255,255,255,0.9); }
.nav:not(.scrolled) .nav-toggle span { background: #fff; }
.nav:not(.scrolled) .nav-cta { background: rgba(255,255,255,0.15) !important; border: 1.5px solid rgba(255,255,255,0.5); color: #fff !important; }
.nav:not(.scrolled) .nav-cta:hover { background: #fff !important; color: var(--text) !important; }

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 6px;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--accent-hover) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 48px) 24px 80px;
  position: relative;
  background-image: url('images/IMG_1310-1-jpg-e1669511250699.webp');
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.hero-heading { color: #ffffff; }

.hero-sub {
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-heading span { color: #ffffff; }


/* ── ABOUT ── */
.about {
  padding: 96px 0;
  background: var(--bg-alt);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 440px;
}

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

.about-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.about-role {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.about-bio {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

/* ── BRANDS ── */
.brands {
  padding: 96px 0;
}

.brands .section-label,
.brands .section-title,
.brands .section-sub {
  text-align: center;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  background: var(--bg);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.brand-item:hover { background: var(--bg-alt); }
.brand-item:nth-child(3n) { border-right: none; }
.brand-item:nth-child(n+4) { border-bottom: none; }

.brand-item img {
  max-height: 44px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter var(--transition), opacity var(--transition);
}
.brand-item:hover img { filter: none; opacity: 1; }

/* ── GALLERY ── */
.gallery {
  padding: 96px 0;
  background: var(--bg-alt);
}

.gallery .section-label,
.gallery .section-title {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

/* ── INTERESTS ── */
.interests {
  padding: 96px 0;
}

.interests-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.interests-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.interests-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.tag:hover { border-color: var(--text); color: var(--text); }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 96px 0;
  background: var(--bg-alt);
}

.testimonials .section-label,
.testimonials .section-title {
  text-align: center;
}

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

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.testimonial-quote {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--border);
}

.author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── CONTACT ── */
.contact {
  padding: 96px 0;
}

.contact-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.contact-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.contact-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.contact-link:hover {
  border-color: var(--text);
  background: var(--text);
  color: #fff;
  transform: translateY(-2px);
}
.contact-link svg { flex-shrink: 0; }

/* ── FOOTER ── */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.footer-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta {
    background: none !important;
    color: var(--text) !important;
    border-radius: 0;
    padding: 14px 24px !important;
  }
  .nav-toggle { display: flex; }

  .hero { min-height: auto; padding: calc(var(--nav-h) + 40px) 24px 64px; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image { max-height: 340px; max-width: 280px; }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .brand-item:nth-child(2n) { border-right: none; }
  .brand-item:nth-child(n+5) { border-bottom: none; }
  .brand-item:nth-child(-n+4):not(:nth-last-child(-n+2)) { border-bottom: 1px solid var(--border); }

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

  .testimonials-grid { max-width: 100%; }
}

@media (max-width: 480px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-links { flex-direction: column; }
  .contact-link { justify-content: center; }
}

/* iOS Safari does not support background-attachment: fixed on body-level scroll */
@media (hover: none) {
  .hero {
    background-attachment: scroll;
  }
}

/* ── Print ── */
@media print {
  .nav,
  .skip-link,
  .btn-hero,
  .contact-links {
    display: none;
  }
  .hero {
    min-height: auto;
    background: none;
    padding: 40px 24px;
  }
  .hero::before {
    display: none;
  }
  .hero-heading,
  .hero-heading span,
  .hero-sub {
    color: #000;
  }
  body {
    background: #fff;
    color: #000;
  }
}
