/* ===== CSS variables (Design Tokens) ===== */
:root {
  /* Colors */
  --bg-primary: #fdfcfb;
  /* Ultra Light Alabaster */
  --bg-secondary: #f4f4f4;
  /* Cool Ash */
  --text-primary: #1a1a1a;
  /* Deepest Charcoal, Almost Black */
  --text-secondary: #555555;
  /* Medium Grey */
  --accent: #1a1a1a;
  /* Monochromatic accent for Vogue style */
  --accent-hover: #444444;
  --white: #ffffff;
  --border-color: #dddddd;

  /* Typography - Vogue Style */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;

  /* Spacing */
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  /* Borders / Radii - Minimalist sharp edges */
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;

  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== Reset & Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 15px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.5px;
  overflow-x: hidden;
  /* Prevent horizontal scroll from reveal animations */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
  letter-spacing: 2px;
}

p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
  font-size: 1rem;
}

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

ul {
  list-style: none;
}

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

/* ===== Layout Utility ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.container-sm {
  max-width: 800px;
}

.section {
  padding: 8rem 0;
}

.text-center {
  text-align: center;
}

.bg-light {
  background-color: var(--bg-secondary);
}

/* Typography Utilities */
.subtitle {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-family: var(--font-body);
}

.header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.lead-text {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 300;
  font-family: var(--font-heading);
  font-style: italic;
  text-transform: none;
  letter-spacing: 1px;
}

/* ===== Scroll Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.45s;
}

/* Scale Reveal for images */
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* ===== Buttons - High Fashion Aesthetic ===== */
.btn-primary,
.btn-secondary,
.btn-outline-small,
.btn-whatsapp-chic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

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

.btn-primary:hover {
  background-color: var(--white);
  color: var(--text-primary);
  border-color: var(--text-primary);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--text-primary);
}

.btn-secondary.dark-secondary {
  color: var(--text-primary);
  border-color: var(--text-primary);
}

.btn-secondary.dark-secondary:hover {
  background-color: var(--text-primary);
  color: var(--white);
}

.btn-outline-small {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--text-primary);
  font-size: 0.8rem;
  color: var(--text-primary) !important;
}

.btn-outline-small:hover {
  background-color: var(--text-primary);
  color: var(--white) !important;
}

/* Chic WhatsApp Button for Consultation */
.btn-whatsapp-chic {
  border: 1px solid var(--text-primary);
  background-color: transparent;
  color: var(--text-primary);
  gap: 12px;
}

.btn-whatsapp-chic svg {
  width: 18px;
  height: 18px;
}

.btn-whatsapp-chic:hover {
  background-color: var(--text-primary);
  color: var(--white);
}

/* ===== Sticky Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-color: transparent;
}

.navbar.scrolled {
  background-color: var(--white);
  padding: 1rem 0;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1.5rem;
  transition: border-color 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled .nav-container {
  border-bottom: 1px solid transparent;
  padding-bottom: 0;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.logo-subtitle {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 7px;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-top: 2px;
  margin-left: 2px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 6px;
  color: var(--text-primary);
  text-transform: uppercase;
  transition: color 0.4s ease;
}

.logo-footer {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 6px;
  color: var(--white);
  text-transform: uppercase;
  transition: color 0.4s ease;
}

.navbar.scrolled .logo {
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a.nav-link-item {
  color: var(--text-primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  transition: opacity 0.3s ease, color 0.4s ease;
}

.navbar.scrolled .nav-links a.nav-link-item {
  color: var(--text-primary);
}

.nav-links a.nav-link-item:hover {
  opacity: 0.6;
}

/* Consultation Nav Button */
.btn-nav-cta {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--text-primary);
  font-size: 0.8rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.btn-nav-cta:hover {
  background-color: var(--text-primary);
  color: var(--white);
}

.navbar.scrolled .btn-nav-cta {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.navbar.scrolled .btn-nav-cta:hover {
  background-color: var(--text-primary);
  color: var(--white);
}

/* ===== Hero Section (Split Layout for Portrait) ===== */
.hero.split-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column-reverse;
  background-color: var(--bg-primary);
  padding-top: 80px;
  /* navbar spacing on mobile */
  overflow: hidden;
}

@media (min-width: 900px) {
  .hero.split-hero {
    flex-direction: row;
    align-items: stretch;
    padding-top: 0;
  }
}

.hero-split-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 40px 5% 60px;
}

@media (min-width: 900px) {
  .hero-split-content {
    padding: 120px 5% 60px;
  }
}

.hero-text-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

@media (min-width: 900px) {
  .hero-text-content {
    margin-right: 0;
    margin-left: auto;
    padding-right: 3rem;
  }
}

.hero-text-content h1 {
  color: var(--text-primary);
}

.hero-text-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 300;
  margin-bottom: var(--space-lg);
  max-width: 500px;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-split-image {
  flex: 1;
  position: relative;
  min-height: 45vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: transparent;
}

.hero-split-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  max-height: 70vh;
}

@media (min-width: 900px) {
  .hero-split-image img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;
    height: 95%;
    object-fit: contain;
    object-position: right bottom;
    max-height: none;
  }
}

/* ===== Hero Name Block ===== */
.hero-name-block {
  margin-bottom: 2rem;
  border-left: 2px solid var(--text-primary);
  padding-left: 1.5rem;
}

.designer-name {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: 5px;
}

.designer-title {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* ===== About Section ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 5fr 7fr;
  }
}

.about-img img {
  width: 100%;
  height: auto;
  max-height: 800px;
  object-fit: cover;
  filter: contrast(1.1) grayscale(0.1);
}

.about-content ul {
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.about-content ul li {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.about-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-top: 2.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid var(--text-primary);
  line-height: 1.4;
  letter-spacing: 1px;
}

/* ===== Services Section ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
}

.service-card {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .service-card {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .service-card:nth-child(even) .service-img-wrapper {
    order: 2;
  }
}

.service-img-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 120%;
  overflow: hidden;
}

.service-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.service-category {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid var(--text-primary);
  padding-bottom: 4px;
}

.link-arrow:hover {
  color: var(--text-secondary);
  border-color: var(--text-secondary);
}

/* ===== Consultation Section ===== */
.consultation-section {
  background-color: var(--bg-secondary);
  padding: 8rem 0;
  text-align: center;
}

.consultation-section h2 {
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.consultation-section p {
  max-width: 500px;
  margin: 0 auto 3rem;
}

/* ===== Certificates Section ===== */
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.certificate-item {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
}

.certificate-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cert-placeholder-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-secondary);
}

/* ===== Instagram Feed Section ===== */
.instagram-section {
  padding: 6rem 0;
  background-color: var(--white);
  overflow: hidden;
}

.insta-scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
}

.insta-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}

.insta-track:hover {
  animation-play-state: paused;
}

.insta-item {
  position: relative;
  width: 25vw;
  height: 30vw;
  min-width: 250px;
  min-height: 300px;
  flex-shrink: 0;
  display: block;
  overflow: hidden;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: grayscale(0.2);
}

.insta-item:hover img {
  transform: scale(1.03);
  filter: grayscale(0);
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.insta-overlay span {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--text-primary);
  color: var(--white);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: transform 0.4s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: var(--white);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* ===== EU Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  padding: 1.5rem 2rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 9999;
  border-top: 1px solid var(--border-color);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.cookie-content p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .cookie-content p {
    max-width: 70%;
  }

  .cookie-content button {
    margin-top: 0 !important;
  }
}

/* ===== Footer ===== */
.footer {
  background-color: var(--text-primary);
  color: var(--white);
  padding: 8rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 4rem;
  margin-bottom: 5rem;
}

.brand-col {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .brand-col {
    grid-column: span 2;
  }
}

.logo-footer {
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.footer-col ul li {
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

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

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== Media Queries ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.5);
  }
}