/* ============================================
   AIANE KARLA DESIGN — MAIN STYLESHEET
   ============================================ */

/* Fonts loaded via <link> in HTML head */

/* ---- CSS Custom Properties ---- */
:root {
  --color-primary: #A8BBA3;
  --color-bg: #F7F4EA;
  --color-accent: #EBD9D1;
  --color-dark-accent: #B87C4C;
  --color-text: #474747;
  --color-white: #ffffff;
  --color-text-light: #616161;
  --color-primary-dark: #6e9469;
  --color-footer-bg: #f9f8f4;

  --font-display: 'Minerva Modern', Georgia, serif;
  --font-body: 'Lato', -apple-system, sans-serif;

  --max-width: 1440px;
  --nav-height: 96px;
  --section-padding: 100px;
  --section-padding-mobile: 60px;

  --transition: 0.3s ease;
  --shadow: 0 4px 30px rgba(0,0,0,0.06);
}

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

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

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- Typography ---- */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  color: var(--color-text);
  font-synthesis: none;
}

h3, h4, h5 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
h4 { font-size: 1rem; }
p { font-size: 1rem; line-height: 1.8; font-family: var(--font-body); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text);
  display: block;
  margin-bottom: 1rem;
}

/* ---- Layout ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

section { padding: var(--section-padding) 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 20px;
  border: 1.5px solid currentColor;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  text-align: center;
}

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

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

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

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

.nav.scrolled {
  border-bottom-color: rgba(168,187,163,0.3);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

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

/* Logo — constrain by width since logo is 2.74:1 wide */
.nav-logo img {
  width: 147px;
  height: auto;
  object-fit: contain;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-text);
}

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

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary-dark);
}
.nav-links a.active {
  font-weight: 700;
}

/* Nav dropdown */
.has-dropdown { position: relative; }

.has-dropdown > a::after {
  content: none;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  transform: none;
  background: var(--color-white);
  min-width: 210px;
  padding: 20px 0 8px;
  border: none;
  box-shadow: none;
  z-index: 200;
  display: none;
  flex-direction: column;
}
.has-dropdown:hover .nav-dropdown { display: flex; }

.nav-dropdown li { list-style: none; }
.nav-dropdown li a {
  display: block;
  padding: 10px 22px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown li a:hover {
  color: var(--color-primary-dark);
  background: rgba(168,187,163,0.08);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background-color: var(--color-text);
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background-color: var(--color-white);
  padding: 40px;
  border-bottom: 1px solid rgba(168,187,163,0.3);
  z-index: 999;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
}
.mobile-menu a:hover { color: var(--color-primary-dark); }

/* ---- Page Hero (interior pages) ---- */
.page-hero {
  padding-top: calc(var(--nav-height) + 70px);
  padding-bottom: 70px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 760px;
  margin: 0 auto 1.5rem;
  font-style: normal;
  text-wrap: balance;
}
.page-hero p {
  max-width: 500px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: 1.05rem;
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 540px; margin: 0 auto; color: var(--color-text-light); }
.solutions-section .section-header { margin-bottom: 40px; }

/* ---- Divider ---- */
.divider { display: none; }

/* ============================================
   HOME PAGE
   ============================================ */

.hero {
  display: flex;
  align-items: flex-start;
  padding-top: calc(var(--nav-height) + 154px);
  padding-bottom: 152px;
  background-image: url('../images/aiane-karla-design-homepage.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 36, 18, 0.41);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 860px;
  text-align: center;
}
.hero-content .eyebrow { margin-bottom: 1.5rem; }

.hero-content h1 {
  margin-bottom: 1.5rem;
  font-style: normal;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  white-space: nowrap;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--color-primary-dark);
}

.hero .btn-primary {
  background-color: transparent;
  color: hsl(108, 3%, 97%);
  border-color: hsl(108, 3%, 97%);
}
.hero .btn-primary:hover {
  background-color: hsl(108, 3%, 97%);
  color: var(--color-text);
  border-color: hsl(108, 3%, 97%);
}

.hero-cycle-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  height: 1.15em;
  position: relative;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes word-exit {
  from { transform: translateY(0);    opacity: 1; }
  to   { transform: translateY(-110%); opacity: 0; }
}
@keyframes word-enter {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.hero-cycle-word {
  display: inline-block;
  color: #ffffff;
  font-style: italic;
}
.hero-cycle-word.is-exiting {
  animation: word-exit 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.hero-cycle-word.is-entering {
  animation: word-enter 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.page-hero .hero-tagline {
  text-shadow: none;
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background-color: var(--color-accent);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(168,187,163,0.3);
  border-radius: 5px;
}

.placeholder-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(58,58,58,0.4);
  letter-spacing: 0.1em;
}

/* About Teaser */
.about-teaser { background-color: var(--color-white); }

.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-teaser-content h2 { margin-bottom: 1.5rem; }
.about-teaser-content p { color: var(--color-text-light); margin-bottom: 1rem; }

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: var(--color-primary);
  opacity: 0.6;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Services Preview */
.services-preview { background-color: var(--color-bg); }

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

.service-card {
  padding: 44px 36px;
  border: 1px solid rgba(168,187,163,0.4);
  transition: all var(--transition);
  background-color: var(--color-white);
}
.service-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card-icon {
  width: 44px; height: 44px;
  margin-bottom: 24px;
  color: var(--color-primary-dark);
}

.service-card h3 { margin-bottom: 0.8rem; }
.service-card p { color: var(--color-text-light); font-size: 0.95rem; margin-bottom: 1.5rem; }

.learn-more {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 2px;
  display: inline-block;
  transition: opacity var(--transition);
}
.learn-more:hover { opacity: 0.7; }

/* Portfolio Teaser */
.portfolio-teaser { background-color: rgba(235,217,209,0.3); }

.portfolio-grid-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.portfolio-card-preview {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-card-preview:nth-child(1) .portfolio-bg { background-color: var(--color-primary); }
.portfolio-card-preview:nth-child(2) .portfolio-bg { background-color: var(--color-accent); }
.portfolio-card-preview:nth-child(3) .portfolio-bg { background-color: #c9b8ae; }

.portfolio-bg {
  width: 100%; height: 100%;
  transition: transform 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-card-preview:hover .portfolio-bg { transform: scale(1.03); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(58,58,58,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.portfolio-card-preview:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-white);
  margin-bottom: 8px;
  font-weight: 400;
}
.portfolio-overlay span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* Testimonials */
.testimonials { background-color: var(--color-primary); }

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

.testimonial-card {
  background-color: rgba(255,255,255,0.15);
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* CTA Banner */
.cta-banner {
  background-color: var(--color-primary);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--color-white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.05rem; }

/* CTA Banner — pink variant (homepage) */
.cta-banner--white {
  background-color: var(--color-accent);
  padding: 0;
  text-align: left;
}
.cta-banner--cream {
  background-color: rgba(247, 244, 234, 0.80);
}
.cta-banner--white h2 {
  color: var(--color-text);
  margin-bottom: 0;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 400;
  white-space: nowrap;
}
.cta-banner--white p { color: var(--color-text-light); margin-bottom: 0; }
.cta-banner--white .btn-primary {
  background-color: transparent;
  color: var(--color-text-light);
  border-color: var(--color-text-light);
}
.cta-banner--white .btn-primary:hover {
  background-color: var(--color-text-light);
  color: #ffffff;
  border-color: var(--color-text-light);
}
.cta-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 420px;
}
.cta-banner-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  padding: 100px 72px;
  background-image: url('../images/palette-pattern-pink-small.png');
  background-size: cover;
  background-position: center;
}
.cta-banner-right { padding: 80px 80px 80px 72px; }
.cta-left-card {
  background-color: #ffffff;
  padding: 58px 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.05), 0 2px 8px rgba(0,0,0,0.03);
}
.cta-brands-heading {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 1rem;
}
.cta-banner--white .cta-brands-sub {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 1.6rem;
  margin-top: 0;
}
.cta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cta-tag {
  display: inline-block;
  background-color: rgba(255,255,255,0.65);
  border: none;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 0;
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.featured-package { background-color: var(--color-bg); }

.package-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background-color: var(--color-white);
  padding: 60px;
  border: 1px solid rgba(168,187,163,0.3);
  margin-bottom: 40px;
}

.package-card.image-right { direction: rtl; }
.package-card.image-right > * { direction: ltr; }

.package-image {
  width: 100%;
  aspect-ratio: 1;
  background-color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.package-content h2 { margin-bottom: 1.2rem; }
.package-content p { color: var(--color-text-light); margin-bottom: 1.2rem; }

.package-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-primary-dark);
  margin-bottom: 1.5rem;
  display: block;
}

.package-features { margin-bottom: 2rem; }
.package-features li {
  padding: 5px 0;
  font-size: 0.9rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.package-features li::before {
  content: '·';
  color: var(--color-primary-dark);
  font-size: 1.4rem;
  line-height: 1;
}

.addon-section { background-color: rgba(235,217,209,0.3); }

.addon-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 60px;
  background-color: var(--color-white);
  border: 1px solid rgba(168,187,163,0.3);
}
.addon-card h2 { margin-bottom: 1rem; }
.addon-card p { color: var(--color-text-light); margin-bottom: 1.5rem; }

.clients-section { background-color: var(--color-white); text-align: center; }

.client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.client-tag {
  padding: 10px 22px;
  border: 1px solid rgba(168,187,163,0.6);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  border-radius: 0;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

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

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-image {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: var(--color-primary);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-story-content h2 { margin-bottom: 1.5rem; }
.about-story-content p { color: var(--color-text-light); margin-bottom: 1.2rem; }

.values-section { background-color: var(--color-bg); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.value-card {
  padding: 44px 36px;
  text-align: center;
  background-color: var(--color-white);
  border-radius: 5px;
  transition: box-shadow var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); }

.value-icon {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-primary-dark);
  margin-bottom: 20px;
  display: block;
}
.value-card h3 { margin-bottom: 1rem; }
.value-card p { color: var(--color-text-light); font-size: 0.95rem; }

.about-cta { background-color: rgba(235,217,209,0.4); text-align: center; }

/* ============================================
   PORTFOLIO PAGE
   ============================================ */

.portfolio-intro {
  background-color: var(--color-white);
  text-align: center;
  padding: 60px 0;
}
.portfolio-intro p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.portfolio-grid-section { background-color: var(--color-white); }

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

.portfolio-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-card-bg {
  width: 100%; height: 100%;
  transition: transform 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-card:nth-child(1) .portfolio-card-bg { background-color: var(--color-primary); }
.portfolio-card:nth-child(2) .portfolio-card-bg { background-color: var(--color-accent); }
.portfolio-card:nth-child(3) .portfolio-card-bg { background-color: #c9b8ae; }
.portfolio-card:nth-child(4) .portfolio-card-bg { background-color: #d4cbb9; }
.portfolio-card:nth-child(5) .portfolio-card-bg { background-color: #b5c5b0; }
.portfolio-card:nth-child(6) .portfolio-card-bg { background-color: #e0c9bb; }

.portfolio-card:hover .portfolio-card-bg { transform: scale(1.04); }

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(58,58,58,0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--transition);
  padding: 30px;
  text-align: center;
}
.portfolio-card:hover .portfolio-card-overlay { opacity: 1; }
.portfolio-card--coming-soon .portfolio-card-overlay { opacity: 1; cursor: default; }
.portfolio-card--coming-soon { cursor: default; }
.portfolio-card--coming-soon .portfolio-card-overlay .tag { font-size: 0.75rem; color: rgba(255,255,255,0.9); letter-spacing: 0.22em; }

.portfolio-card-overlay h3 {
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
}
.portfolio-card-overlay .tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

/* Contact split layout */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-height));
  margin-top: var(--nav-height);
}

.about-split .contact-split-content {
  justify-content: center;
}

.contact-split-photo {
  background-color: hsl(108, 22%, 94%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 56px 72px;
}

.contact-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.contact-photo-badge {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: hsl(108, 20%, 54%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.contact-photo-badge img {
  width: 55%;
  height: 55%;
  object-fit: contain;
  display: block;
}

.contact-photo-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 0;
  border: 10px solid #ffffff;
  box-sizing: border-box;
}

.contact-split-content {
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 72px 72px 80px;
}

.contact-split-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 400;
  font-style: normal;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.contact-split-intro {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}

/* About page — compact values */
.about-values-compact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 2rem;
}
.about-value-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-value-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 400;
}
.about-value-desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

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

.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  background-color: var(--color-bg);
  border: 1px solid rgba(104,104,104,0.15);
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

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

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

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-light); opacity: 0.6; }

/* ============================================
   FOOTER — Inspired layout
   ============================================ */

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

.footer-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 38px 40px 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: flex-start;
}

.footer-logo-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
.footer-logo-center img {
  width: 200px;
  height: auto;
  display: block;
}
.footer-tagline-divider {
  width: 100%;
  height: 1px;
  background-color: var(--color-text-light);
  margin: 14px 0 28px;
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  text-align: center;
  line-height: 1.4;
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
}

.footer-social a {
  color: var(--color-text-light);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.footer-social a:hover { color: var(--color-primary-dark); }
.footer-social svg { width: 20px; height: 20px; }

.footer-logo-link {
  display: block;
  margin-bottom: 18px;
}
.footer-logo-link img {
  width: 200px;
  height: auto;
}
.footer-logo-link-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-text);
  display: none;
}

.footer-brand-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text);
  display: block;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 320px;
}

.btn-footer {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 11px 26px;
  border: 1.5px solid var(--color-text);
  color: var(--color-text);
  transition: all var(--transition);
  background: transparent;
}
.btn-footer:hover {
  background: var(--color-text);
  color: var(--color-white);
}

/* Link columns */
.footer-col {
  justify-self: center;
  text-align: center;
}

.footer-col-heading {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 20px;
  display: block;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-col ul li a {
  font-size: 0.92rem;
  color: var(--color-text-light);
  transition: color var(--transition);
  line-height: 1.3;
}
.footer-col ul li a:hover { color: var(--color-primary-dark); }

/* Footer badge — 75% of btn-footer width */
.footer-brand a img[alt="Squarespace Circle Silver Partner"] {
  width: 140px !important;
  height: auto !important;
  display: block !important;
  margin-bottom: 1.2rem !important;
}

/* Bottom bar */
.footer-bottom {
  background-color: #B87C4C;
  width: 100%;
  position: relative;
}
.footer-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}
.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-bottom-left a,
.footer-bottom-left span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-bottom-left a:hover { color: #fff; }
.footer-sep { color: rgba(255,255,255,0.35); }
.footer-design-credit {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}
.scroll-top-btn { display: none; }

.scroll-top-sticky {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(184,124,76,0.85);
  border: 0.75px solid rgba(255,255,255,0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background-color 0.2s ease;
  box-shadow: 0 3px 14px rgba(0,0,0,0.22);
}
.scroll-top-sticky.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top-sticky:hover { background-color: #B87C4C; }
.scroll-top-sticky svg { width: 15px; height: 15px; display: block; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .container { padding: 0 30px; }

  .about-teaser-grid,
  .about-story-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-split-photo { padding: 80px 32px 48px; }
  .contact-split-content { padding: 56px 32px; }
  .contact-split-heading { font-size: clamp(2rem, 8vw, 2.8rem); }

  .hero { min-height: auto; padding: calc(var(--nav-height) + 60px) 0 80px; }
  .hero-inner { padding: 0 30px; }

  .services-grid, .testimonials-grid, .values-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .package-card {
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 40px;
  }
  .package-card.image-right { direction: ltr; }
  .package-image { aspect-ratio: 16/9; }

  .footer-main { grid-template-columns: 1fr auto 1fr; gap: 40px; }
  .footer-design-credit { text-align: right; }

  /* About page: keep 2-col layout at tablet, smaller photo, vertically centered */
  .about-split { grid-template-columns: 1fr; }
  .about-split .contact-split-photo { padding: 60px 32px 40px; }
  .about-split .contact-photo-wrap { max-width: 264px; margin: 0 auto; }
  .about-split .contact-split-content { justify-content: center; padding: 48px 32px; }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 80px;
    --section-padding: var(--section-padding-mobile);
  }

  .nav-logo img { width: 150px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .container,
  .nav-inner,
  .hero-inner { padding-left: 24px; padding-right: 24px; }

  .footer-main { grid-template-columns: 1fr; padding: 50px 24px 40px; text-align: center; }
  .footer-brand { grid-column: auto; display: flex; flex-direction: column; align-items: center; }
  .footer-logo-center { display: none !important; }
  .footer-bottom-left .footer-sep:nth-child(4) { display: none; }
  .cta-banner--white h2 { font-size: clamp(0.82rem, 3.8vw, 1.55rem); }
  .cta-left-card { padding: 48px 32px; }
  .solutions-section .section-header { margin-bottom: 16px; }
  .footer-col { text-align: center; justify-self: center; }
  .footer-col ul { display: flex; flex-direction: column; align-items: center; }
  .footer-bottom { padding: 18px 24px; }
  .footer-bottom-inner { flex-direction: column; align-items: center; gap: 5px; }
  .footer-design-credit { margin-left: 0; text-align: center; }
  .footer-bottom-left { flex-wrap: wrap; justify-content: center; }

  .services-grid, .testimonials-grid, .values-grid,
  .portfolio-grid, .portfolio-grid-preview { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .hero-content h1 {
    white-space: normal;
    font-size: 2.2rem;
    line-height: 1.25;
    max-width: 7ch;
  }
  .hero-tagline {
    white-space: normal;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 14ch;
  }

  .cta-banner { padding: 60px 24px; }
  .cta-banner--white { padding: 0; }
  .cta-banner-inner { grid-template-columns: 1fr; }
  .cta-banner-left {
    padding: 60px 24px;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  .cta-banner-right { padding: 48px 24px; }
  .addon-card { padding: 40px 24px; }
  .page-hero { padding-top: calc(var(--nav-height) + 50px); }

  /* About page mobile */
  .about-split .contact-photo-wrap { max-width: 65%; margin: 0 auto; }
  .about-split .contact-split-content .eyebrow { text-align: center; }
  .about-split .contact-split-heading { text-align: center; }
  .about-split .contact-split-intro { text-align: left; width: 100%; }
  .about-split .contact-split-content .btn-primary { align-self: center; margin-top: 1rem; }
  /* Contact page mobile photo size */
  .contact-split:not(.about-split) .contact-photo-wrap { max-width: 65%; margin: 0 auto; }

  /* Services mobile */
  .product-content h2 { text-align: center; }
  .process-phase { text-align: left; max-width: 100%; }
}

/* ============================================
   HOME — SOLUTIONS SECTION
   ============================================ */

.solutions-section {
  background-color: rgba(247, 244, 234, 0.80);
  padding: var(--section-padding) 0;
}

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

.solution-card {
  background-color: var(--color-white);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 0.9px solid rgba(104,104,104,0.15);
  border-radius: 5px;
  box-shadow: 0 4px 20px rgba(168,187,163,0.22);
  overflow: visible;
  transition: box-shadow var(--transition);
}
/* Per-card top accent stripe — overlaid on the photo via ::before */
.solution-card:hover {
  box-shadow: 0 10px 40px rgba(168,187,163,0.35);
}

.solution-card--featured {
  box-shadow: 0 4px 20px rgba(168,187,163,0.22);
  z-index: 2;
}

.solution-image {
  width: 100%;
  aspect-ratio: 6/4;
  background-color: rgba(235,217,209,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  position: relative;
}
.solution-card--featured .solution-image {
  aspect-ratio: 6/4;
  background-color: transparent;
}
/* Top accent stripe on each card's photo — no gap */
.solution-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  z-index: 1;
}
.solutions-grid .solution-card:nth-child(1) .solution-image::before { background: hsl(18, 49%, 82%); }
.solutions-grid .solution-card:nth-child(2) .solution-image::before { background: #A8BBA3; }
.solutions-grid .solution-card:nth-child(3) .solution-image::before { background: hsl(26, 43%, 61%); }

.solution-body {
  padding: 32px 28px 38px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
  align-items: center;
}
.solution-card--featured .solution-body {
  padding: 32px 28px 38px;
}

.solution-label {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
  display: block;
}

.solution-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.solution-card--featured .solution-body h3 {
  font-size: 1.25rem;
}

.solution-body p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 1.4rem;
  flex: 1;
  line-height: 1.75;
}

.solution-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-primary-dark);
  margin-bottom: 1.4rem;
  display: block;
}

/* Rotating badge */
.rotating-badge {
  position: absolute;
  width: 104px;
  height: 104px;
  top: -20px;
  right: -20px;
  z-index: 20;
  pointer-events: none;
}
.rotating-badge svg {
  width: 100%;
  height: 100%;
  animation: badge-spin 28s linear infinite;
  display: block;
  position: relative;
  z-index: 20;
}
.badge-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48%;
  height: 48%;
  object-fit: contain;
  pointer-events: none;
  z-index: 21;
}
@keyframes badge-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ============================================
   HOME — BRAND COLOR STRIPE
   ============================================ */

.brand-stripe {
  display: flex;
  height: 10px;
  width: 100%;
}
.brand-stripe span {
  flex: 1;
  display: block;
}
.brand-stripe .stripe-cream    { background-color: #F7F4EA; }
.brand-stripe .stripe-caramel  { background-color: #B87C4C; }
.brand-stripe .stripe-blush    { background-color: #EBD9D1; }
.brand-stripe .stripe-green    { background-color: #A8BBA3; }
.brand-stripe .stripe-dark   { background-color: #8aaa84; }
.brand-stripe .stripe-text   { background-color: #c4d4c0; }

/* ============================================
   HOME — MEET THE DESIGNER
   ============================================ */

.meet-designer {
  background-color: hsl(108, 22%, 96%);
  padding: var(--section-padding) 0;
}

.meet-designer-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.meet-designer-image {
  width: 80%;
  aspect-ratio: 3/4;
  background-color: transparent;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}
.meet-designer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
  border: 10px solid #ffffff;
  box-sizing: border-box;
}
.meet-designer-image::after {
  content: none;
}

.meet-designer-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: normal;
  color: var(--color-text);
  display: block;
  margin-bottom: 1.4rem;
  line-height: 1.1;
}

.meet-designer-content .eyebrow {
  margin-bottom: 0.6rem;
  color: var(--color-text);
}

.meet-designer-content {
  padding-right: 10%;
}

.meet-designer-content p {
  color: var(--color-text-light);
  margin-bottom: 1.2rem;
  text-align: left;
}

.meet-designer-cta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  margin-top: calc(1.2rem + 7px);
}
.meet-designer-badge-link img {
  width: 152px;
  height: auto;
  display: block;
}

/* ============================================
   HOME — TESTIMONIALS CAROUSEL
   ============================================ */

.testimonials-carousel-section {
  background-color: var(--color-white);
  padding: var(--section-padding) 0;
  position: relative;
}
.testimonials-carousel-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/aiane-karla-design-testimonial-background.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(0.9) contrast(0.86) brightness(1.14);
  z-index: 0;
}
.testimonials-carousel-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18, 30, 20, 0.50);
  z-index: 1;
}
.testimonials-carousel-section .container {
  position: relative;
  z-index: 2;
}

.testimonials-carousel-section .section-header h2 {
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(100,100,100,0.45);
}
.testimonials-carousel-section .section-header {
  margin-bottom: calc(var(--section-padding) / 3);
}

.carousel-wrapper {
  position: relative;
  max-width: 907px;
  margin: 0 auto;
  overflow: hidden;
  user-select: none;
  background-color: var(--color-white);
  border-radius: 0;
  padding-bottom: 36px;
}

.carousel-track {
  display: flex;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  padding: 50px 52px;
  background-color: transparent;
  box-sizing: border-box;
  text-align: center;
}

.slide-headline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: normal;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 1.1rem;
  display: block;
}

.slide-quote {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: normal;
  color: var(--color-text-light);
  line-height: 1.85;
  margin-bottom: 28px;
  display: block;
}

.slide-author {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: block;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.carousel-dot {
  width: 6.4px;
  height: 6.4px;
  border-radius: 50%;
  background-color: rgba(104,104,104,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color var(--transition);
}
.carousel-dot.active {
  background-color: var(--color-text-light);
}

/* ============================================
   HOME — VALUES (reuses about page .values-*)
   ============================================ */

.home-values {
  background-color: var(--color-bg);
  padding: var(--section-padding) 0;
}

/* ============================================
   PORTFOLIO — WIDE HERO HEADING
   ============================================ */

/* Portfolio hero — full background image with homepage-style overlay */
.page-hero--wide {
  background-image: url('../images/aiane-karla-design-portfolio.jpg');
  background-size: cover;
  background-position: center top;
  position: relative;
  padding-top: calc(var(--nav-height) + 96px);
  padding-bottom: 96px;
}
.page-hero--wide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 36, 18, 0.41);
  pointer-events: none;
  z-index: 1;
}
.page-hero--wide .container {
  position: relative;
  z-index: 2;
}
.page-hero--wide h1 {
  max-width: 900px;
  white-space: nowrap;
  color: var(--color-white);
}
.page-hero--wide p,
.page-hero--wide .hero-tagline {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: none;
}
.page-hero--wide .btn {
  position: relative;
}

/* ============================================
   RESPONSIVE — NEW SECTIONS
   ============================================ */

@media (max-width: 1024px) {
  .solutions-grid { grid-template-columns: 1fr; gap: 16px; justify-items: center; }
  .solution-card { max-width: 680px; width: 100%; }
  .solution-card--featured { margin-top: 0; margin-bottom: 0; }
  .solution-image { aspect-ratio: 16/6; object-position: center center; }
  .solution-card--featured .solution-image { aspect-ratio: 16/6; }
  .meet-designer-grid { grid-template-columns: 1fr; gap: 40px; }
  .meet-designer-image { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; }
  .meet-designer-image img { width: 65%; height: auto; object-fit: cover; }
  .cta-brands-heading { text-align: center; }
  .cta-banner--white .cta-brands-sub { text-align: center; }
}

@media (max-width: 768px) {
  .solution-image { aspect-ratio: 12/7; }
  .solution-card--featured .solution-image { aspect-ratio: 12/7; }
  .rotating-badge { width: 85px; height: 85px; top: -14px; right: -14px; }
  .carousel-slide { padding: 36px 28px; }
  .slide-quote { font-size: 1rem; }
  .page-hero--wide h1 { white-space: normal; max-width: 100%; }
  .meet-designer-content { text-align: center; align-items: center; display: flex; flex-direction: column; padding-right: 0; }
  .meet-designer-cta-row { flex-direction: column; gap: calc(1.2rem + 10px); align-items: center; margin-top: 0.6rem; }
  .meet-designer-cta-row .meet-designer-badge-link { order: -1; }
  .meet-designer-cta-row .btn-footer { align-self: center; }
  .meet-designer-content .eyebrow { text-align: center; }
  .meet-designer-name { text-align: center; }
  .solutions-cta { font-size: 0.75rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
}

/* ============================================
   HOME — INTRO BAND
   ============================================ */

.intro-band {
  background-color: var(--color-bg);
  padding: 100px 40px;
  text-align: center;
  border-top: 1px solid rgba(168,187,163,0.25);
  border-bottom: 1px solid rgba(168,187,163,0.25);
}

.intro-band-subtitle {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: 1.4rem;
}

.intro-band-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.intro-band-body {
  color: var(--color-text-light);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.85;
}

.btn-outline-dark {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 20px;
  border: 1.5px solid var(--color-text);
  color: var(--color-text);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline-dark:hover {
  background-color: var(--color-text);
  color: var(--color-white);
}

/* ============================================
   SERVICES — CARD HERO
   ============================================ */

.services-hero-full {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background-color: rgb(247, 244, 234);
  padding: 0;
}

/* Photo area — starts immediately below nav, no gap */
.services-hero-photo {
  width: 100%;
  height: 56vh;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background-color: hsl(108, 22%, 94%);
  background-image: url('../images/aiane-karla-design-services-1.jpg');
  background-size: cover;
  background-position: center bottom;
}
.services-hero-photo--combo {
  background-image: url('../images/aiane-karla-design-brand-website-combo.jpg');
  background-position: center center;
}
.services-hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 36, 18, 0.54);
  pointer-events: none;
}

/* Card — pulled up so its midpoint sits on the photo's bottom edge */
.services-hero-card {
  background-color: var(--color-white);
  max-width: 960px;
  width: calc(100% - 48px);
  text-align: center;
  padding: 72px 80px 64px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
  position: relative;
  z-index: 2;
  margin-top: -220px;
  margin-bottom: 40px;
}

/* Badge straddling the top border of the card */
.services-hero-badge {
  width: 99px;
  height: 99px;
  border-radius: 50%;
  background-color: hsl(108, 20%, 54%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -49.5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.services-hero-badge img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  display: block;
}

.services-hero-card h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 400;
  font-style: normal;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  white-space: nowrap;
}

.services-hero-card p {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.85;
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.scroll-hint {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

/* ============================================
   HOME — PRODUCT SECTIONS (alternating)
   ============================================ */

.product-section,
.product-section--alt {
  background-color: rgba(247, 244, 234, 0.80);
  margin: 0;
  padding: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.product-grid--reverse {
  direction: rtl;
}
.product-grid--reverse > * {
  direction: ltr;
}

.product-image {
  width: 100%;
  border-radius: 0;
  display: block;
  overflow: hidden;
  position: relative;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.product-image--sage img  { object-position: center top; }
.product-image--blush img { object-position: center bottom; transform: scale(1.15); transform-origin: center bottom; }
.product-image--warm img  { object-position: center top; }
.product-image--sage  { background-color: rgba(168,187,163,0.35); }
.product-image--blush { background-color: rgba(235,217,209,0.6); }
.product-image--warm  { background-color: rgba(168,187,163,0.18); }

.product-content {
  background-color: var(--color-white);
  padding: 44px 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-content .eyebrow { margin-bottom: 0.8rem; }
.product-content h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.15;
}
.product-content > p {
  color: var(--color-text-light);
  margin-bottom: 1.4rem;
  font-size: 1.02rem;
  line-height: 1.85;
}

.investment {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-primary-dark);
  margin-bottom: 1.8rem;
  margin-top: 0.4rem;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  background-color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  padding: 14px 20px;
  cursor: pointer;
  transition: all var(--transition);
}
.product-link:hover {
  background-color: transparent;
  color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.product-features {
  list-style: none;
  margin-bottom: 1.3rem;
}
.product-features li {
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--color-text-light);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: none;
}
.product-features li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}
/* green=G: #A8BBA3 #c4d4c0 #8aaa84 | warm=W: #B87C4C #d4a882 | pink=P: #EBD9D1 */
/* Sequences always alternate families: no two G, W, or P dots in a row */
.product-features li:nth-child(1)::before  { background-color: #A8BBA3; } /* G */
.product-features li:nth-child(2)::before  { background-color: #B87C4C; } /* W */
.product-features li:nth-child(3)::before  { background-color: #EBD9D1; } /* P */
.product-features li:nth-child(4)::before  { background-color: #8aaa84; } /* G */
.product-features li:nth-child(5)::before  { background-color: #d4a882; } /* W */
.product-features li:nth-child(6)::before  { background-color: #c4d4c0; } /* G */
.product-features li:nth-child(7)::before  { background-color: #B87C4C; } /* W */
.product-features li:nth-child(8)::before  { background-color: #EBD9D1; } /* P */
.product-features li:nth-child(9)::before  { background-color: #A8BBA3; } /* G */
.product-features li:nth-child(10)::before { background-color: #d4a882; } /* W */
.product-features li:nth-child(11)::before { background-color: #8aaa84; } /* G */
.product-features li:nth-child(12)::before { background-color: #B87C4C; } /* W */

.product-features--alt li:nth-child(1)::before  { background-color: #EBD9D1; } /* P */
.product-features--alt li:nth-child(2)::before  { background-color: #8aaa84; } /* G */
.product-features--alt li:nth-child(3)::before  { background-color: #d4a882; } /* W */
.product-features--alt li:nth-child(4)::before  { background-color: #c4d4c0; } /* G */
.product-features--alt li:nth-child(5)::before  { background-color: #B87C4C; } /* W */
.product-features--alt li:nth-child(6)::before  { background-color: #A8BBA3; } /* G */
.product-features--alt li:nth-child(7)::before  { background-color: #d4a882; } /* W */
.product-features--alt li:nth-child(8)::before  { background-color: #EBD9D1; } /* P */
.product-features--alt li:nth-child(9)::before  { background-color: #8aaa84; } /* G */
.product-features--alt li:nth-child(10)::before { background-color: #B87C4C; } /* W */
.product-features--alt li:nth-child(11)::before { background-color: #c4d4c0; } /* G */
.product-features--alt li:nth-child(12)::before { background-color: #d4a882; } /* W */

.product-features--p1 li:nth-child(1)::before { background-color: #d4a882; } /* W */
.product-features--p1 li:nth-child(2)::before { background-color: #A8BBA3; } /* G */
.product-features--p1 li:nth-child(3)::before { background-color: #B87C4C; } /* W */
.product-features--p1 li:nth-child(4)::before { background-color: #c4d4c0; } /* G */

.product-features--p2 li:nth-child(1)::before { background-color: #EBD9D1; } /* P */
.product-features--p2 li:nth-child(2)::before { background-color: #8aaa84; } /* G */
.product-features--p2 li:nth-child(3)::before { background-color: #d4a882; } /* W */

.product-features--p3 li:nth-child(1)::before { background-color: #A8BBA3; } /* G */
.product-features--p3 li:nth-child(2)::before { background-color: #B87C4C; } /* W */
.product-features--p3 li:nth-child(3)::before { background-color: #EBD9D1; } /* P */
.product-features--p3 li:nth-child(4)::before { background-color: #8aaa84; } /* G */

.product-features--p4 li:nth-child(1)::before { background-color: #B87C4C; } /* W */
.product-features--p4 li:nth-child(2)::before { background-color: #c4d4c0; } /* G */
.product-features--p4 li:nth-child(3)::before { background-color: #d4a882; } /* W */

/* ============================================
   HOME — THE PROCESS
   ============================================ */

.process-section {
  background-color: rgba(168,187,163,0.07);
  padding: var(--section-padding) 0;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.process-phase {
  padding: 56px 50px;
  background-color: var(--color-white);
  border: none;
  border-radius: 5px;
}

.phase-num {
  font-family: var(--font-display);
  font-size: 2.975rem;
  color: rgba(168,187,163,0.35);
  display: block;
  margin-bottom: 0.4rem;
  line-height: 1;
  font-weight: 400;
  font-style: italic;
}

.phase-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  display: block;
  margin-bottom: 1rem;
}

.process-phase h3 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.process-phase p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.85;
}

/* ============================================
   HOME — QUICK RECAP
   ============================================ */

.quick-recap {
  background-color: var(--color-white);
  padding: var(--section-padding) 0;
}

.recap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.recap-col {
  padding: 50px 38px;
  border: none;
  border-radius: 5px;
  text-align: center;
  background-color: var(--color-white);
  transition: box-shadow var(--transition);
}
.recap-col:hover {
  box-shadow: var(--shadow);
}

.recap-col--featured {
  background-color: rgba(168,187,163,0.05);
  padding-top: 57.5px;
  padding-bottom: 57.5px;
}

.recap-icon {
  display: block;
  font-size: 1rem;
  color: var(--color-primary-dark);
  margin-bottom: 1.2rem;
  opacity: 0.7;
}

.recap-col h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.9rem;
}

.recap-col p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.6rem;
}

/* ============================================
   HOME — FAQ
   ============================================ */

.faq-section {
  background-color: var(--color-white);
  padding: var(--section-padding) 0;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  margin-top: 50px;
}

.faq-item {
  border-bottom: 1px solid rgba(168,187,163,0.4);
}
.faq-item:first-child {
  border-top: 1px solid rgba(168,187,163,0.4);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--color-primary-dark); }

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  color: var(--color-primary-dark);
  transition: transform 0.3s ease;
  display: inline-block;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 26px;
  color: var(--color-text-light);
  font-size: 0.97rem;
  line-height: 1.85;
  max-width: 640px;
}

/* ============================================
   RESPONSIVE — NEW HOME SECTIONS
   ============================================ */

@media (max-width: 1024px) {
  .product-grid,
  .product-grid--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 0;
  }
  .product-image { min-height: 300px; aspect-ratio: 4/3; order: -1; }
  .product-content { padding: 32px 40px 48px; order: 1; }
  .process-grid { grid-template-columns: 1fr; }
  .recap-grid { grid-template-columns: 1fr; }
  .intro-band { padding: 80px 30px; }
}

@media (max-width: 768px) {
  .process-phase { padding: 40px 28px; text-align: left; }
  .recap-col { padding: 36px 24px; }
  .intro-band { padding: 60px 24px; }
  .intro-band-title { font-size: 1.8rem; }
  .services-hero-card h1 { white-space: normal; font-size: clamp(1.5rem, 5vw, 2rem); max-width: 12ch; margin-left: auto; margin-right: auto; }
  .services-hero-card { padding: 60px 28px 60px; }
  .services-hero-card p { display: none; }
  .services-hero-photo { height: 36vh; min-height: 200px; }
  .features-two-col { grid-template-columns: 1fr !important; }
  /* Portfolio hero mobile: white card style */
  .page-hero--wide { padding-top: 0; padding-bottom: 0; background: none; }
  .page-hero--wide::before { display: none; }
  .page-hero--wide .container { background: var(--color-white); padding: 60px 28px 60px; box-shadow: 0 4px 40px rgba(0,0,0,0.06); margin: 0; max-width: 100%; }
  .page-hero--wide h1 { color: var(--color-text); font-size: clamp(1.5rem, 5vw, 2rem); }
  .page-hero--wide p, .page-hero--wide .hero-tagline { color: var(--color-text-light); }
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
