/* ===== TOKENS ===== */
:root {
  --primary: #A20256;
  --primary-light: #F1D5DA;
  --salmon: #e1766e;
  --salmon-light: #f4b5b8;
  --text: #222222;
  --white: #ffffff;
  --footer-bg: #191919;
  --footer-text: #d3d3d3;
  --radius: 65px;
  --transition: 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-light); }
ul { padding-left: 1.25rem; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--text);
}
h2 { font-size: 2.5rem; text-transform: uppercase; line-height: 1.4; }
h3 { font-size: 1.5rem; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.transparent { background: rgba(255,255,255,0.01); }
.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 80px;
  gap: 40px;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  padding: 0;
}
.nav-menu a {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--white);
  transition: color var(--transition);
}
.site-header.scrolled .nav-menu a { color: var(--text); }
.nav-menu a:hover { color: var(--salmon); }
.site-header.scrolled .nav-menu a:hover { color: var(--primary); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: background var(--transition);
}
.site-header.scrolled .menu-toggle span { background: var(--text); }

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('assets/images/hero-bg.jpg');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 120px 20px 100px;
}
.hero-logo {
  margin: 0 auto;
}
.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--primary);
  margin: 10px auto 0;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  color: var(--white);
  padding: 13px 0 20px;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  line-height: 1;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.btn:hover { background: var(--primary-light); color: var(--white); }

/* ===== SECTIONS ===== */
.section { padding: 60px 0; }
.white-bg { background: var(--white); padding-top: 40px; }

.section-title {
  text-align: left;
  margin-bottom: 4px;
  color: var(--text);
}
.section-divider {
  width: 12.5%;
  min-width: 60px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 30px;
}
.section-divider.left { margin-left: 0; }
.section-divider.small { height: 2px; width: 80px; margin-bottom: 20px; }

/* ===== TWO COLS ===== */
.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.mt-section { margin-top: 60px; }
.reverse { direction: rtl; }
.reverse > * { direction: ltr; }

.col-text { font-size: 1rem; }
.col-text p { margin-bottom: 1em; }
.col-text ul { margin-bottom: 1em; }
.col-text li { margin-bottom: 0.4em; }

.profile-photo {
  width: 80%;
  border-radius: 36px;
  filter: brightness(103%) contrast(96%) saturate(134%);
  margin: 0 auto 20px;
}

/* ===== SERVICES ===== */
.services-section {
  position: relative;
  background: var(--white);
  padding-bottom: 40px;
}
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #F1D5DA 0%, #FFFFFF 100%);
  opacity: 0.3;
  pointer-events: none;
}
.services-section .container { position: relative; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 30px;
}
.service-card {
  text-align: center;
  padding: 20px;
}
.service-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p, .service-card li { font-size: 1rem; text-align: left; }
.service-card ul { margin-top: 8px; }

/* ===== CONTACT ===== */
.contact-section {
  position: relative;
  background-image: url('assets/images/contact-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0 60px;
}
.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255,255,255,0.4) 100%);
  pointer-events: none;
}
.contact-section .container { position: relative; }
.contact-section .section-title { text-align: left; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}
.contact-form-col h3,
.contact-social-col h3 {
  margin-bottom: 4px;
  font-size: 1.5rem;
}
.phone-link { color: var(--primary); }
.phone-link:hover { color: var(--primary-light); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}
.contact-form input,
.contact-form textarea {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1rem;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--primary); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
  align-self: flex-start;
  background: var(--primary);
  color: var(--white);
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.contact-form button:hover { background: var(--primary-light); }

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.1rem;
  transition: background var(--transition);
  text-decoration: none;
}
.social-icon:hover { background: var(--primary-light); color: var(--white); }

/* ===== FOOTER ===== */
.site-footer { background: var(--footer-bg); }
.footer-widgets { padding: 50px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.footer-col { color: var(--footer-text); }
.widget-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--footer-text);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: var(--footer-text); transition: color var(--transition); }
.footer-col a:hover { color: var(--primary); }
.footer-col p { font-size: 0.9rem; }

.footer-social { list-style: none; padding: 0; }
.footer-social li { margin-bottom: 10px; }
.footer-social a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--footer-text);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--primary); }
.footer-social svg { fill: var(--footer-text); flex-shrink: 0; transition: fill var(--transition); }
.footer-social a:hover svg { fill: var(--primary); }

.footer-bottom {
  background: var(--footer-bg);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
  text-align: center;
  color: var(--footer-text);
  font-size: 0.85rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Hero animations (auto-fire on load) */
.hero-content .animate {
  opacity: 0;
  animation-fill-mode: both;
}
.hero-content .fadeInUp { animation-name: fadeInUp; animation-duration: 0.8s; }

/* Scroll-triggered animations */
.animate-scroll {
  opacity: 0;
  transition: opacity 0.1s;
}
.animate-scroll.fadeInUp  { transform: translateY(30px); }
.animate-scroll.fadeInLeft { transform: translateX(-40px); }
.animate-scroll.visible {
  opacity: 1;
  transform: none;
  animation-fill-mode: both;
}
.animate-scroll.fadeInUp.visible {
  animation: fadeInUp 0.8s ease both;
}
.animate-scroll.fadeInLeft.visible {
  animation: fadeInLeft 0.8s ease both;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-section { background-attachment: scroll; }
  .hero-content { padding: 120px 20px 100px; }
}

@media (max-width: 921px) {
  h2 { font-size: 2rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .menu-toggle { display: flex; }
  .site-header { background: var(--white); }
  .site-header.transparent { background: var(--white); }
  .nav-menu a { color: var(--text); }
  .menu-toggle span { background: var(--text); }

  nav#site-navigation {
    position: fixed;
    top: 0; right: -100%;
    width: 260px;
    height: 100vh;
    background: var(--white);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  }
  nav#site-navigation.open { right: 0; }
  .nav-menu { flex-direction: column; gap: 20px; }
  .nav-menu a { color: var(--text); font-size: 1.1rem; }
}

@media (max-width: 767px) {
  .hero-section { min-height: 500px; }
  .hero-content { padding: 120px 20px 60px; }
  .hero-title { font-size: 1.8rem; }

  .two-cols { grid-template-columns: 1fr; }
  .reverse { direction: ltr; }
  .profile-photo { width: 90%; }

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

  .footer-grid { grid-template-columns: 1fr; }
  h2 { font-size: 1.75rem; }
}

@media (max-width: 544px) {
  body { font-size: 0.9375rem; }
  .section { padding: 40px 0; }
}
