/* ============================================
   LUMINESCENE LLC — Floral Design Studio
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --color-gold: #c9a96e;
  --color-gold-light: #e8d5b0;
  --color-cream: #faf8f5;
  --color-white: #ffffff;
  --color-dark: #1a1a1a;
  --color-text: #3d3d3d;
  --color-text-light: #7a7a7a;
  --color-sage: #8a9a7b;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --header-height: 80px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

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

/* ---- Header & Navigation ---- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header.scrolled .logo-text,
.header.scrolled .nav-link {
  color: var(--color-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--color-gold);
  font-weight: 600;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-white);
  font-weight: 500;
}

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

.nav-link {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-white);
  font-weight: 400;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--color-gold);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}

.header.scrolled .menu-toggle span {
  background: var(--color-dark);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero Slider ---- */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  padding: 0 24px;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 0.8s forwards;
}

.hero-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1px;
  max-width: 500px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 1.1s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--color-white);
  border-color: var(--color-white);
}

.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 10;
  pointer-events: none;
}

.hero-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  cursor: pointer;
  pointer-events: all;
  transition: var(--transition);
  background: rgba(0, 0, 0, 0.15);
  font-size: 18px;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--color-white);
}

/* ---- Section Styles ---- */

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--color-dark);
  margin-bottom: 20px;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin: 0 auto;
}

.section-text {
  max-width: 700px;
  margin: 24px auto 0;
  color: var(--color-text-light);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
}

/* ---- Intro Section ---- */

.intro {
  background: var(--color-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-image {
  position: relative;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.intro-image:hover img {
  transform: scale(1.03);
}

.intro-content h2 {
  font-size: 36px;
  margin-bottom: 24px;
  color: var(--color-dark);
}

.intro-content p {
  color: var(--color-text-light);
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.9;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 20px;
}

.btn:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

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

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

/* ---- Services ---- */

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

.service-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--color-white);
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  border-color: var(--color-gold-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 24px;
  color: var(--color-gold);
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--color-dark);
}

.service-card p {
  font-size: 14px;
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.8;
}

/* ---- Portfolio Grid ---- */

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

.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--color-white);
}

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

.portfolio-overlay h3 {
  font-size: 22px;
  margin-bottom: 8px;
  transform: translateY(10px);
  transition: transform 0.4s ease 0.1s;
}

.portfolio-overlay span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: transform 0.4s ease 0.2s;
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay span {
  transform: translateY(0);
}

/* ---- Testimonial ---- */

.testimonial {
  background: var(--color-dark);
  color: var(--color-white);
  text-align: center;
  padding: 100px 0;
}

.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.testimonial cite {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  font-style: normal;
}

/* ---- Blog Cards ---- */

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

.blog-card {
  background: var(--color-white);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.blog-card-image {
  overflow: hidden;
  height: 220px;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 28px;
}

.blog-card-date {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.blog-card-body h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.blog-card-body p {
  font-size: 14px;
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.7;
}

/* ---- Page Header (inner pages) ---- */

.page-header {
  height: 50vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  margin-top: 0;
}

.page-header img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 12px;
}

.page-header p {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ---- About Page ---- */

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--color-dark);
}

.about-content p {
  font-size: 15px;
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 80px;
}

.about-team-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* ---- Contact Page ---- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--color-dark);
}

.contact-info p {
  font-size: 15px;
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 4px;
  font-weight: 500;
}

.contact-detail-text p {
  font-size: 15px;
  color: var(--color-text);
  margin-bottom: 0;
}

.contact-form {
  background: var(--color-white);
  padding: 48px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0ddd8;
  background: var(--color-cream);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-text);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--color-dark);
  color: var(--color-white);
  border: none;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  background: var(--color-gold);
}

/* ---- Legal Pages (Privacy / Terms) ---- */

.page-header-legal {
  background: linear-gradient(135deg, #2a2a2a 0%, #444 100%);
  height: 40vh;
  min-height: 300px;
}

.legal-container {
  max-width: 860px;
}

.legal-intro {
  font-size: 16px;
  color: var(--color-text);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e6e2db;
}

.legal h2 {
  font-size: 26px;
  color: var(--color-dark);
  margin: 40px 0 16px;
}

.legal h3 {
  font-size: 19px;
  color: var(--color-dark);
  margin: 28px 0 12px;
}

.legal p {
  font-size: 15px;
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 16px;
}

.legal ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal li {
  font-size: 15px;
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal a {
  color: var(--color-gold);
  text-decoration: underline;
}

.legal a:hover {
  color: var(--color-dark);
}

.legal strong {
  color: var(--color-text);
  font-weight: 500;
}

/* ---- Cookie Consent Banner ---- */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 24px;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.25);
}

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

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 280px;
}

.cookie-banner-text h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 8px;
}

.cookie-banner-text p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner-text a {
  color: var(--color-gold);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 26px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--color-gold);
  background: transparent;
  color: var(--color-gold);
  transition: var(--transition);
  white-space: nowrap;
}

.cookie-btn:hover {
  background: var(--color-gold);
  color: var(--color-dark);
}

.cookie-btn-accept {
  background: var(--color-gold);
  color: var(--color-dark);
}

.cookie-btn-accept:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

/* ---- Cookie Settings Modal ---- */

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.cookie-modal-box {
  position: relative;
  background: var(--color-white);
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  z-index: 1;
}

.cookie-modal-box h3 {
  font-size: 26px;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.cookie-modal-box > p {
  font-size: 14px;
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 24px;
}

.cookie-option {
  border-top: 1px solid #ebe7e0;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.cookie-option-text h4 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.cookie-option-text p {
  font-size: 13px;
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.6;
}

/* Toggle switch */
.cookie-switch {
  position: relative;
  width: 46px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 4px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  inset: 0;
  background: #cfcac1;
  border-radius: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--color-white);
  border-radius: 50%;
  transition: var(--transition);
}

.cookie-switch input:checked + .cookie-slider {
  background: var(--color-gold);
}

.cookie-switch input:checked + .cookie-slider::before {
  transform: translateX(22px);
}

.cookie-switch input:disabled + .cookie-slider {
  background: var(--color-sage);
  cursor: not-allowed;
  opacity: 0.7;
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.cookie-modal-actions .cookie-btn {
  flex: 1;
  text-align: center;
  min-width: 140px;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}

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

@media (max-width: 768px) {
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
  }
  .cookie-modal-box {
    padding: 28px 24px;
  }
  .footer-legal {
    justify-content: center;
  }
}

/* ---- Footer ---- */

.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo-text {
  color: var(--color-white);
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  max-width: 300px;
}

.footer h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 300;
}

/* ---- CTA Banner ---- */

.cta-banner {
  background: linear-gradient(135deg, var(--color-sage) 0%, #6b7d5e 100%);
  text-align: center;
  padding: 80px 24px;
  color: var(--color-white);
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 32px;
  opacity: 0.9;
}

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

.btn-white:hover {
  background: var(--color-white);
  color: var(--color-sage);
}

/* ---- Animations on scroll ---- */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */

@media (max-width: 1024px) {
  .services-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transition: var(--transition);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  }

  .nav.open {
    right: 0;
  }

  .nav-link {
    color: var(--color-dark);
    font-size: 14px;
  }

  .intro-grid,
  .contact-grid,
  .about-team {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid,
  .portfolio-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero-arrows {
    display: none;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .section {
    padding: 60px 0;
  }
}
