/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

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

:root {
  --bg: #f4efea;
  --panel: #f7f5f3;
  --beige: #e9e0d7;
  --taupe: #9b8475;
  --taupe-dark: #8b7466;
  --text: #1b1714;
  --muted: #655a53;
  --line: #d2c8c0;
  --white: #ffffff;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

.container { width: min(100%, var(--container)); margin: 0 auto; padding: 0 24px; }

@media (min-width: 1280px) {
  .container { padding: 0 50px; }
}
.serif { font-family: 'Cormorant Garamond', serif; font-weight: 500; letter-spacing: 0.01em; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.18em; font-size: 11px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 132px; padding: 11px 18px; border: 1px solid currentColor;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  transition: 0.25s ease; background: transparent; cursor: pointer;
}
.btn:hover { background: var(--white); color: var(--taupe-dark); }
.btn--solid { background: var(--taupe); color: var(--white); border-color: var(--taupe); }
.btn--solid:hover { background: var(--taupe-dark); border-color: var(--taupe-dark); color: var(--white); }

header.site-header {
  background: var(--white); border-bottom: 1px solid #ece8e4;
  position: sticky; top: 0; z-index: 30;
  display: flex;
  height: 144px;;
}
.main-navigation .main-nav ul li a, .main-navigation .menu-toggle, .main-navigation .menu-bar-items {
  font-size: 22px;
  font-weight: 600; 
}
.main-navigation .main-nav ul li[class*="current-menu-"] > a {
    color: #988476!important;
}
.header-inner {
  min-height: 144px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; padding: 0 24px;
}
.brand { font-size: 20px; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; }
.header-image.is-logo-image { max-height: 36px; width: auto; display: block; margin-left: 30px; }
.nav-toggle { display: none; background: none; border: 0; padding: 0; width: 42px; height: 42px; cursor: pointer; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; display: block; width: 24px; height: 1.5px;
  background: var(--text); margin: 6px auto; transition: 0.25s ease;
}
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a { font-size: 18px; letter-spacing: 0.04em; font-family: 'Cormorant Garamond', serif; }
.main-nav a:hover { opacity: 0.7; }
.main-nav .current-menu-item a,
.main-nav .current_page_item a { color: #9A8475; }

.amm-hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: 50% 50%;
  background: #89776b;
  overflow: hidden;
}

.amm-hero__image {
  position: relative;
  background: #89776b;
  height: 610px;
}

.amm-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.amm-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 610px;
  text-align: center;
  color: #fff;
  padding: 60px 40px;
}

.amm-hero__eyebrow {
  font-size: 14px;
  line-height: 1;
  margin: 0 0 26px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.amm-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 47px;
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 26px;
  color: #fff;
}

.amm-hero__text {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
  margin: 0 0 46px;
}

.amm-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.amm-hero__btn:hover {
  background: rgba(255,255,255,0.12);
}

@media (max-width: 900px) {
  .amm-hero {
    grid-template-columns: 1fr;
  }

  .amm-hero__image {
    height: auto;
    min-height: auto;
  }

  .amm-hero__content {
    height: auto;
    min-height: unset;
    padding: 50px 32px;
  }

  .amm-hero h1 {
    font-size: 40px;
  }
}

.social-strip { background: #f7f7f7; border-top: 1px solid #cfcfcf; border-bottom: 1px solid #cfcfcf; overflow: hidden; }

.social-ticker-wrap { overflow: hidden; width: 100%; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.social-ticker {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 18s linear infinite;
}

.social-ticker:hover { animation-play-state: paused; }

.social-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 600;
  white-space: nowrap;
}

.social-divider {
  color: #bfb7b1;
  font-size: 14px;
  padding: 0 8px;
  user-select: none;
}

section { overflow: hidden; }

.about { background: var(--beige); padding: 82px 24px 88px; }
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 72px; align-items: start; }
.section-title { margin: 0 0 28px; font-size: clamp(34px, 3.2vw, 52px); font-family: 'Cormorant Garamond', serif; font-weight: 500; }
.about-card { max-width: 360px; margin-left: 54px; }
.about-portrait { width: 440px; aspect-ratio: 0.72 / 1; object-fit: cover; border-radius: 120px 120px 0 0; margin-bottom: 22px; }
.about-copy { font-size: 14px; max-width: 290px; margin-bottom: 22px; }
.about-image { max-width: 440px; justify-self: start; margin-top: 18px; }
.about-image img { min-height: 540px; object-fit: cover; }

.values { background: #ffffff; border-top: 1px solid #bfb7b1; border-bottom: 1px solid #bfb7b1; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.value-item { min-height: 280px; display: grid; place-items: center; padding: 60px 48px; text-align: center; font-family: 'Geist', sans-serif; font-size: 24px; font-weight: 300; font-style: normal; text-transform: none; text-decoration: none; line-height: 1.8; color: var(--text); }
.value-item + .value-item { border-left: 1px solid #bfb7b1; }

.services { background: var(--beige); display: grid; grid-template-columns: 1.1fr 1fr; align-items: stretch; }
.services-left { padding: 72px 48px; }
.services-list { margin-top: 34px; border-top: 1px solid #7f736c; }
.service-item { border-bottom: 1px solid #7f736c; }
.service-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; background: transparent !important; border: 0; cursor: pointer; text-align: left; font: inherit; color: #9A8475; text-transform: uppercase; letter-spacing: 0.08em; font-size: 14px; }
.service-trigger:hover { background: transparent !important; color: #9A8475; }
.service-trigger span:hover { color: #9A8475; }
.service-trigger span:last-child { font-size: 20px; line-height: 1; transition: transform 0.25s ease; }
.service-item.active .service-trigger span:last-child { transform: rotate(45deg); }
.service-panel { display: none; padding: 0 0 20px; max-width: 510px; color: var(--muted); font-size: 14px; }
.service-item.active .service-panel { display: block; }
.services-right { position: relative; overflow: hidden; }
.services-right img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }

.stories { background: #f3f3f3; padding: 68px 0 80px; }
.stories .container { padding: 0 24px; }
.stories-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 30px; padding: 0 24px; }

.stories-carousel-wrap {
  overflow: hidden;
  width: 100%;
}

@media (min-width: 780px) {
  .stories-carousel-wrap {
    margin: 0 50px;
    width: calc(100% - 100px);
  }
}

.stories-carousel {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
  padding: 0 24px 6px;
}

.story-card {
  flex: 0 0 380px;
  background: #fff;
  border: 1px solid #e8e4df;
}
.story-card img { aspect-ratio: 0.82 / 1; object-fit: cover; }
.story-body { padding: 12px 12px 10px; }
.story-top { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; margin-bottom: 8px; font-size: 13px; font-weight: 600; }
.story-metric { color: #d55637; white-space: nowrap; }
.story-copy { font-size: 12px; color: #666; min-height: 38px; margin-bottom: 14px; }
.story-meta { display: flex; align-items: center; gap: 14px; font-size: 12px; color: #555; border-top: 1px solid #efefef; padding-top: 10px; }

.cta { background: var(--beige); padding: 100px 24px 86px; text-align: center; border-top: 1px solid #d8cec5; }
.cta h2 { margin: 0 auto 30px; max-width: 700px; font-size: 4.2rem; line-height: 1.4; font-family: 'Cormorant Garamond', serif; font-weight: 400; }

.gallery-strip { overflow: hidden; width: 100%; }

@keyframes gallery-scroll {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.gallery-ticker {
  display: flex;
  width: max-content;
  animation: gallery-scroll 30s linear infinite;
}

.gallery-strip img { aspect-ratio: 1 / 0.92; object-fit: cover; width: calc(100vw / 6); flex-shrink: 0; }

footer { background: var(--taupe); color: var(--white); padding: 62px 24px 44px; width: 100%; box-sizing: border-box; }
.footer-brand { text-align: center; text-transform: uppercase; letter-spacing: 0.16em; font-size: clamp(28px, 3vw, 44px); margin-bottom: 48px; }
.footer-grid { display: grid; grid-template-columns: 0.9fr 0.9fr 1.2fr; gap: 48px; align-items: start; }
.footer-title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 18px; color: rgba(255,255,255,0.95); }
.footer-links { display: grid; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.9); list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 0; padding: 0; }
.newsletter-form { display: flex; flex-direction: column; gap: 16px; max-width: 360px; }
.newsletter-form input { width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,0.7); padding: 10px 0; color: var(--white); font: inherit; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.75); }
.footer-bottom { margin-top: 42px; text-align: right; font-size: 12px; color: rgba(255,255,255,0.8); }

@media (max-width: 1100px) {
  .hero, .about-grid, .services, .footer-grid { grid-template-columns: 1fr; }
  .hero-left, .hero-right { min-height: 420px; }
  .services-right { min-height: 420px; }
  .about-card { margin-left: 0; max-width: 100%; width: 100%; }
  .about-image { display: none; }
  .about-portrait { width: 100%; max-width: 440px; }
  .stories-grid { grid-template-columns: repeat(2, minmax(260px, 1fr)); }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 800px) {
  .header-inner { padding: 14px 18px; min-height: 68px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid #ece8e4;
    display: none; flex-direction: column; align-items: flex-start;
    gap: 0; padding: 8px 18px 18px;
  }
  .main-navigation.toggled .main-nav { display: flex; }
  .main-nav a { padding: 12px 0; width: 100%; }
  .social-strip-inner, .gallery-strip { grid-template-columns: 1fr 1fr; }
  .social-item { min-height: 48px; font-size: 18px; }
  .values-grid { grid-template-columns: 1fr; gap: 0; }
  .value-item + .value-item { border-left: 0; }
  .value-item { border-bottom: 1px solid #bfb7b1; }
  .value-item:last-child { grid-column: auto; border-bottom: 0; }
  .gallery-strip img { width: calc(100vw / 3); }
  .services-left, .about, .stories, .cta, footer { padding-left: 20px; padding-right: 20px; }
  .footer-bottom { text-align: left; }
}

@media (max-width: 560px) {
  .brand { font-size: 16px; }
  .social-strip-inner, .stories-grid, .gallery-strip { grid-template-columns: 1fr; }
  .stories-head { align-items: flex-start; flex-direction: column; }
}

/* -------------------------
   ABOUT PAGE
------------------------- */

/* HERO */
.about-hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 45% 55%;
  position: relative;
  background: #89766a;
  overflow: hidden;
  width: 100%;
}

.about-hero__left {
  background-size: cover;
  background-position: center;
}

.about-hero__image {
  position: absolute;
  left: 33.5%;
  top: 50%;
  transform: translateY(-50%);
  width: 390px;
  height: 460px;
  border-radius: 210px 210px 0 0;
  overflow: hidden;
  z-index: 2;
}

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

.about-hero__content {
  grid-column: 2;
  max-width: 900px;
  padding: 205px 80px 120px 230px;
  color: #f6f0eb;
}

.about-hero__content h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 24px;
}

.about-hero__content h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 26px;
  text-transform: uppercase;
}

.about-hero__content p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(246, 240, 235, 0.68);
  margin: 0 0 34px;
}

.about-hero__content strong {
  color: #f6f0eb;
  font-weight: 700;
}

/* QUOTE */
.quote-section {
  background: #f8f8f8;
  text-align: center;
  padding: 70px 20px 60px;
  border-top: 1px solid #cfc7bf;
  border-bottom: 1px solid #cfc7bf;
}

.quote-section h2 {
  font-size: 3rem;
  font-weight: 400;
  color: #000000;
  margin: 0 auto 20px;
  max-width: 820px;
}

.quote-signature {
  font-size: 2.5rem;
  color: #7a726d;
}

.signature-img {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* MISSION / VISION */
.mission-vision {
  background: #efe7dd;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 80px 6%;
  border-bottom: 1px solid #cfc7bf;
}

.mission-box,
.vision-box {
  max-width: 320px;
}

.mission-box h3,
.vision-box h3 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 24px;
  color: #4a4038;
}

.mission-box p,
.vision-box p {
  font-size: 0.95rem;
  color: #4f463f;
}

.mission-image {
  display: flex;
  justify-content: center;
}

.mission-image img {
  max-width: 360px;
  width: 100%;
}

/* SOCIAL BAR */
.social-bar {
  background: #f5f5f5;
  border-top: 1px solid #bdb6ae;
  border-bottom: 1px solid #bdb6ae;
  padding: 18px 4%;
}

.social-bar ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.social-bar a {
  text-decoration: none;
  color: #3a3531;
  font-size: 2rem;
  font-weight: 600;
  transition: color 0.2s;
}

.social-bar a:hover {
  color: #a18d81;
}

/* VALUES */
.values-section {
  min-height: 665px;
  display: grid;
  grid-template-columns: 58% 42%;
  background: #efe4da;
  overflow: hidden;
}

.values-section__content {
  padding: 105px 0 90px 18%;
}

.values-section__content h2 {
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  color: #171717;
  margin: 0 0 68px 55px;
}

.values-list {
  max-width: 830px;
}

.values-item {
  display: grid;
  grid-template-columns: 35% 65%;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.55);
}

.values-item:first-child {
  border-top: none;
}

.values-item h3 {
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #1f1f1f;
  margin: 0;
  padding-left: 55px;
}

.values-item p {
  max-width: 420px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(31, 31, 31, 0.48);
  margin: 0;
}

.values-section__image {
  height: 665px;
}

.values-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* TEAM */
.team-section {
  background: #f8f8f8;
  padding: 90px 6% 70px;
  text-align: center;
}

.team-section h3 {
  font-size: 2rem;
  font-weight: 400;
  color: #8b837d;
  margin-bottom: 60px;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.team-member {
  text-align: center;
  width: 285px;
}

.team-member-img {
  width: 285px;
  height: 450px;
  overflow: hidden;
  margin: 0 auto 16px;
  border-radius: 0;
  transition: border-radius 0.4s ease;
}

.team-member-img:hover {
  border-radius: 25% 25% 0 0;
}

.team-member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%);
}

.team-member h4 {
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 500;
  color: #5c554f;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.team-member span {
  font-size: 0.8rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #9f9892;
}

/* CTA */
.cta-section {
  background: #efe7dd;
  text-align: center;
  padding: 100px 20px;
}

.cta-section h3 {
  font-size: 4.2rem;
  font-weight: 400;
  color: #000
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.4;
}

.cta-btn {
  display: inline-block;
  padding: 12px 34px;
  text-decoration: none;
  border: 1px solid #826F62;
  background: #826F62;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #6e5d52;
  border-color: #6e5d52;
  color: #fff;
}

/* GALLERY STRIP — About page (scrolling marquee, same as homepage) */

/* About Page Responsive */
@media (max-width: 900px) {
  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-hero__left {
    min-height: 360px;
  }

  .about-hero__image {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 300px;
    height: 360px;
    margin: -180px auto 40px;
  }

  .about-hero__content {
    grid-column: 1;
    padding: 0 28px 70px;
    text-align: left;
  }
}

@media (max-width: 1100px) {
  .mission-vision {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mission-box,
  .vision-box {
    max-width: 100%;
    margin: 0 auto;
  }

  .values-section {
    grid-template-columns: 1fr;
  }

  .values-section__image {
    min-height: 400px;
    height: auto;
  }

  /* .about-page .gallery-strip — uses shared scrolling marquee styles */
}

@media (max-width: 768px) {
  .about-hero__content h1 {
    font-size: 2.2rem;
  }

  .quote-section h2,
  .mission-box h3,
  .team-section h3,
  .cta-section h3 {
    font-size: 1.8rem;
    padding: 0px 30px;
  }

  .values-section__content {
    padding: 70px 24px 50px;
  }

  .values-section__content h2 {
    margin: 0 0 45px;
    font-size: 32px;
  }

  .values-list {
    max-width: none;
  }

  .values-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .values-item h3 {
    padding-left: 0;
    font-size: 20px;
  }

  .values-item p {
    max-width: none;
  }

  .social-bar a {
    font-size: 1.3rem;
  }

  .about-page .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    gap: 60px;
  }
}


/* -------------------------
   SERVICES PAGE
------------------------- */

/* Hero */
.svc-hero {
  background: var(--taupe);
  padding: 80px 0;
  overflow: hidden;
}

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

.svc-hero-content {
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.svc-hero-content .eyebrow {
  color: rgba(255,255,255,0.7);
}

.svc-hero-content h1 {
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1.1;
  color: var(--white);
  margin: 0;
}

.svc-hero-content p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  max-width: 440px;
  margin: 0;
}

.svc-hero-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

/* Intro */
.svc-intro {
  background: var(--beige);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.svc-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 200px;
}

.svc-intro-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 44px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 20px;
  line-height: 1.9;
  color: Black;
}

.svc-intro-item + .svc-intro-item {
  border-left: 1px solid var(--line);
}

/* Service Cards */
.svc-list {
  background: var(--bg);
  padding: 88px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 64px 0;
  gap: 80px;
}

.svc-card:last-child {
  border-bottom: 1px solid var(--line);
}

.svc-card--flip {
  direction: rtl;
}

.svc-card--flip > * {
  direction: ltr;
}

.svc-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.svc-card-num {
  font-size: 42px;
  color: var(--taupe);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: -4px;
}

.svc-card-body h2 {
  font-size: clamp(26px, 3vw, 40px);
  margin: 0;
  color: var(--text);
}

.svc-tagline {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--taupe);
  margin: 0;
}

.svc-card-body > p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  margin: 0;
}

.svc-features {
  list-style: none;
  padding: 0;
  margin: 4px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.svc-features li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}

.svc-features li::before {
  content: '✦';
  font-size: 8px;
  color: var(--taupe);
  position: absolute;
  left: 0;
  top: 2px;
}

/* Process */
.svc-process {
  background: var(--beige);
  padding: 88px 0;
}

.svc-process-title {
  font-size: clamp(28px, 3vw, 44px);
  text-align: center;
  margin: 0 0 56px;
  color: var(--text);
}

.svc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.svc-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 24px;
  background: rgba(255,255,255,0.5);
  border-top: 2px solid var(--taupe);
}

.svc-step-num {
  font-size: 36px;
  color: var(--taupe);
  opacity: 0.6;
  line-height: 1;
}

.svc-step h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.svc-step p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

/* Packages */
.svc-packages {
  background: var(--white);
  padding: 88px 0;
}

.svc-packages-title {
  font-size: clamp(28px, 3vw, 44px);
  text-align: center;
  margin: 0 0 12px;
  color: var(--text);
}

.svc-packages-sub {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin: 0 auto 52px;
  max-width: 520px;
}

.svc-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.svc-pkg {
  border: 1px solid var(--line);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  background: var(--white);
}

.svc-pkg--featured {
  background: var(--taupe);
  border-color: var(--taupe);
  color: var(--white);
  padding-top: 52px;
}

.svc-pkg-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--taupe-dark);
  color: var(--white);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-align: center;
  padding: 6px;
}

.svc-pkg-name {
  font-size: 28px;
  color: inherit;
}

.svc-pkg--featured .svc-pkg-name {
  color: var(--white);
}

.svc-pkg-price {
  font-size: 22px;
  font-weight: 600;
  color: inherit;
}

.svc-pkg--featured .svc-pkg-price {
  color: var(--white);
}

.svc-pkg-price span {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.75;
}

.svc-pkg-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

.svc-pkg--featured .svc-pkg-desc {
  color: rgba(255,255,255,0.8);
}

.svc-pkg-features {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.svc-pkg--featured .svc-pkg-features {
  border-color: rgba(255,255,255,0.25);
}

.svc-pkg-features li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}

.svc-pkg--featured .svc-pkg-features li {
  color: rgba(255,255,255,0.85);
}

.svc-pkg-features li::before {
  content: '✓';
  font-size: 11px;
  color: var(--taupe);
  position: absolute;
  left: 0;
  top: 1px;
}

.svc-pkg--featured .svc-pkg-features li::before {
  color: var(--white);
}

.svc-pkg .btn {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
}

.svc-pkg--featured .btn {
  background: var(--white);
  color: var(--taupe-dark);
  border-color: var(--white);
}

.svc-pkg--featured .btn:hover {
  background: rgba(255,255,255,0.85);
}

/* FAQ */
.svc-faq {
  background: var(--beige);
  padding: 88px 0;
}

.svc-faq-inner {
  max-width: 760px;
}

.svc-faq h2 {
  font-size: clamp(26px, 3vw, 40px);
  color: var(--text);
  margin: 0 0 40px;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  gap: 16px;
}

.faq-icon {
  font-size: 20px;
  flex-shrink: 0;
  color: var(--taupe);
  transition: transform 0.25s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  padding-bottom: 0;
}

.faq-item.active .faq-panel {
  padding-bottom: 20px;
}

/* Services Responsive */
@media (max-width: 1100px) {
  .svc-hero-inner { grid-template-columns: 1fr; }
  .svc-hero-img { max-height: 360px; aspect-ratio: unset; }
  .svc-card, .svc-card--flip {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }
  .svc-card--flip > * { direction: ltr; }
  .svc-steps { grid-template-columns: repeat(2, 1fr); }
  .svc-packages-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .svc-steps { grid-template-columns: 1fr; }
}

.grid-container {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Prevent horizontal overflow */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Override all GeneratePress wrappers on the homepage to be full width */
#page,
#content,
.site-content,
.grid-container,
.inside-page-hero,
main, .site-main {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* All sections are full width */
.hero,
.social-strip,
.about,
.values,
.services,
.stories,
.cta,
.gallery-strip,
footer {
  width: 100%;
  box-sizing: border-box;
}

/* Social icon rotation on hover */
@keyframes spin-once {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.social-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  transition: transform 0.4s ease;
}

.social-item:hover .social-icon {
  animation: spin-once 0.5s ease forwards;
}

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

/* Contact gallery — scrolling marquee, same as homepage */

@media (max-width: 1100px) {
  /* .contact-page .gallery-strip — uses shared scrolling marquee styles */
}

@media (max-width: 768px) {
  /* .contact-page .gallery-strip — uses shared scrolling marquee styles */
  /* .contact-page .gallery-strip img — uses shared scrolling marquee styles */
}

/* Hero */
.contact-hero {
  background: var(--taupe);
  color: var(--white);
  padding: 100px 24px 80px;
  text-align: center;
}

.contact-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.contact-hero .eyebrow {
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}

.contact-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.contact-hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto;
}

/* Contact body */
.contact-body {
  background: var(--white);
  padding: 80px 0;
}

.contact-body-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

/* Info column */
.contact-info h2 {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.15;
}

.contact-info-tagline {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 600;
}

.contact-details a {
  color: var(--text);
  font-size: 16px;
  transition: color 0.2s;
}

.contact-details a:hover {
  color: var(--taupe);
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 4px;
}

.contact-socials a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}

.contact-socials a.serif {
  font-style: italic;
  font-weight: 500;
}

.contact-socials a:hover {
  color: var(--taupe);
}

/* Form column */
.contact-form-wrap {
  background: var(--bg);
  border-radius: 4px;
  padding: 44px 40px;
}

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

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

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

.form-group label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.form-group .required {
  color: var(--taupe);
}

.form-group input,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

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

.form-group textarea {
  resize: vertical;
}

.contact-form .btn--solid {
  align-self: flex-start;
}

/* Success / error states */
.contact-success {
  text-align: center;
  padding: 40px 20px;
}

.contact-success p.serif {
  font-size: 26px;
  color: var(--text);
  margin-bottom: 10px;
}

.contact-success p:last-child {
  color: var(--muted);
  font-size: 15px;
}

.contact-error {
  background: #fdf0f0;
  border: 1px solid #e0a5a5;
  border-radius: 3px;
  padding: 12px 16px;
  font-size: 14px;
  color: #7a3535;
  margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-body-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 600px) {
  .form-row--two {
    grid-template-columns: 1fr;
  }

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

  .contact-hero {
    padding: 72px 24px 60px;
  }
}

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

/* Hero */
.port-hero { background: var(--taupe); color: var(--white); padding: 80px 0 0; overflow: hidden; }
.port-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; }
.port-hero-copy { padding-bottom: 64px; }
.port-hero-copy h1 { font-size: clamp(36px, 4vw, 62px); line-height: 1.05; color: var(--white); margin: 0; }
.port-hero-image { position: relative; }
.port-hero-image img { display: block; width: 100%; height: 520px; object-fit: contain; border-radius: 4px 4px 0 0; }

/* Intro */
.port-intro { background: var(--bg); padding: 80px 24px; text-align: center; }
.port-intro .container { display: flex; flex-direction: column; align-items: center; gap: 28px; max-width: 700px; }
.port-intro-img { width: 120px; height: 120px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.port-intro-img img { width: 100%; height: 100%; object-fit: cover; }
.port-intro-copy { font-size: 15px; line-height: 1.75; color: var(--muted); margin: 0; }

/* Stats */
.port-stats { background: var(--beige); padding: 64px 24px; }
.port-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.port-stat { text-align: center; padding: 40px 24px; border-left: 1px solid var(--line); }
.port-stat:first-child { border-left: none; }
.port-stat-number { font-size: clamp(48px, 6vw, 80px); line-height: 1; color: var(--taupe); margin-bottom: 10px; }
.port-stat-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* Works Nav */
.port-works-nav { background: var(--white); padding: 72px 24px; border-bottom: 1px solid var(--line); }
.port-works-nav .container { max-width: 900px; }
.port-works-nav h2 { font-size: clamp(28px, 3vw, 42px); margin-bottom: 36px; }
.port-works-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.port-works-links a {
  display: block; padding: 20px 0; border-top: 1px solid var(--line);
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text); text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.port-works-links a:hover { color: var(--taupe); padding-left: 8px; }

/* Case Studies */
.port-cases { background: var(--bg); }
.port-case { padding: 80px 0; border-top: 1px solid var(--line); }
.port-case:first-child { border-top: none; }
.case-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 48px; }
.case-inner { padding-right: 16px; }
.case-inner h3 { font-size: clamp(28px, 3vw, 42px); margin-bottom: 16px; }
.case-inner p { font-size: 14px; line-height: 1.8; color: var(--muted); margin-bottom: 28px; }
.case-meta { display: flex; gap: 16px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.case-meta span:first-child { color: var(--taupe); }
.case-meta span:last-child { color: var(--muted); }
.case-image img { width: 100%; height: 420px; object-fit: cover; border-radius: 3px; }

/* Case Gallery */
.case-gallery-block { background: var(--beige); border-radius: 4px; padding: 36px; }
.case-gallery-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.case-gallery-head h4 { font-size: 22px; margin: 0; }
.case-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.case-gallery-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 2px; }

/* Portfolio CTA */
.port-cta { background: var(--taupe); color: var(--white); padding: 96px 24px; text-align: center; }
.port-cta h3 { font-size: clamp(28px, 3vw, 46px); color: var(--white); max-width: 640px; margin: 0 auto 32px; line-height: 1.2; }
.port-cta .btn { border-color: var(--white); color: var(--white); }
.port-cta .btn:hover { background: var(--white); color: var(--taupe-dark); }

/* Portfolio Responsive */
@media (max-width: 900px) {
  .port-hero-grid { grid-template-columns: 1fr; }
  .port-hero-copy { padding-bottom: 0; }
  .port-hero-image img { height: 360px; border-radius: 0; }
  .port-stats-grid { grid-template-columns: 1fr; }
  .port-stat { border-left: none; border-top: 1px solid var(--line); }
  .port-stat:first-child { border-top: none; }
  .port-works-links { grid-template-columns: 1fr; }
  .case-row { grid-template-columns: 1fr; gap: 32px; }
  .case-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .port-hero { padding: 56px 0 0; }
  .port-hero-copy h1 { font-size: 32px; }
  .port-intro { padding: 56px 24px; }
  .port-cases { padding: 0; }
  .port-case { padding: 56px 0; }
  .case-gallery-block { padding: 24px 16px; }
  .case-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==============================================
   PORTFOLIO PAGE (new Figma design)
   ============================================== */

/* HERO */
.portfolio-hero {
  display: grid;
  grid-template-columns: 70% 30%;
  min-height: 340px;
  background: #988476;
}

.portfolio-hero-left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #fff;
}

.portfolio-hero-left h1 {
  font-size: 3.6rem;
  line-height: 1.05;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.portfolio-hero-right {
  overflow: hidden;
}

.portfolio-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* INTRO */
.portfolio-intro {
  background: #eee7de;
  text-align: center;
  padding: 70px 20px 80px;
}

.portfolio-intro-inner {
  max-width: 620px;
  margin: 0 auto;
}

.portfolio-intro-image {
  width: 210px;
  margin: 0 auto 28px;
  overflow: hidden;
}

.portfolio-intro-image img {
  width: 100%;
  height: auto;
  display: block;
}

.portfolio-intro p {
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto 28px;
  color: #322c27;
  line-height: 1.75;
}

.portfolio-btn {
  display: inline-block;
  border: 1px solid #6e645d;
  color: #6e645d;
  padding: 11px 28px;
  font-size: 0.75rem;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.portfolio-btn:hover {
  background: #988476;
  border-color: #988476;
  color: #fff;
}

/* STATS */
.stats-section {
  background: #f7f7f6;
  border-top: 1px solid rgba(70, 60, 52, 0.08);
  border-bottom: 1px solid rgba(70, 60, 52, 0.08);
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.stat-item {
  padding: 34px 20px;
}

.stat-number {
  display: block;
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 10px;
  color: #2f2a26;
}

.stat-label {
  font-size: 0.9rem;
  color: #4f4842;
}

/* CLIENTS */
.clients-section {
  background: #eee7de;
  text-align: center;
  padding: 65px 20px 80px;
}

.clients-section h2 {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 40px;
  color: #3a342f;
}

.clients-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 80px;
}

.clients-grid a {
  font-size: 0.88rem;
  text-transform: uppercase;
  text-decoration: underline;
  letter-spacing: 0.4px;
  color: #3c3630;
}

.clients-grid a:hover {
  color: #988476;
}

/* CASE STUDIES */
.case-studies {
  background: #f6f6f4;
  border-top: 1px solid rgba(70, 60, 52, 0.08);
  border-bottom: 1px solid rgba(70, 60, 52, 0.08);
}

.case-study-row {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 58%;
  height: 560px;
  border-bottom: 1px solid rgba(70, 60, 52, 0.1);
}

.case-study-row:last-child {
  border-bottom: none;
}

.case-study-image {
  overflow: hidden;
  position: relative;
}

.case-study-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-study-content {
  border-left: 1px solid rgba(70, 60, 52, 0.18);
  padding: 80px 10% 70px;
  display: flex;
  align-items: center;
}

.case-study-content-inner {
  max-width: 640px;
}

.case-study-content h3 {
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 44px;
  color: #423a35;
  line-height: 1.2;
}

.case-study-content p {
  font-size: 1.05rem;
  color: #4e4741;
  margin-bottom: 44px;
  line-height: 1.9;
}

.case-meta {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9f968e;
  display: flex;
  gap: 32px;
}

.case-meta span {
  margin-right: 0;
}

/* PORTFOLIO CTA */
.portfolio-cta {
  background: #eee7de;
  text-align: center;
  padding: 95px 20px;
}

.portfolio-cta h2 {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.35;
  color: #000;
  max-width: 700px;
  margin: 0 auto 28px;
}

/* Portfolio gallery — scrolling marquee, same as homepage */

/* Portfolio Responsive */
@media (max-width: 1100px) {
  .portfolio-hero { grid-template-columns: 1fr; }
  .portfolio-hero-right { min-height: 320px; }
  .case-study-row { grid-template-columns: 1fr; height: auto; min-height: auto; }
  .case-study-image { min-height: 320px; position: relative; }
  .case-study-content { border-left: none; border-top: 1px solid rgba(70, 60, 52, 0.18); padding: 48px 24px; }
  .case-study-content h3 { font-size: 2rem; margin-bottom: 24px; }
  .case-study-content p { margin-bottom: 28px; }
  .case-meta { flex-direction: column; gap: 6px; }
  .case-meta span { white-space: nowrap; }
  /* .portfolio-page .gallery-strip — uses shared scrolling marquee styles */
}

@media (max-width: 768px) {
  .portfolio-hero-left h1 { font-size: 2.4rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .clients-section h2, .portfolio-cta h2, .case-study-content h3 { font-size: 1.8rem; }
  /* .portfolio-page .gallery-strip — uses shared scrolling marquee styles */
  /* .portfolio-page .gallery-strip img — uses shared scrolling marquee styles */
}

/* ==============================================
   SERVICES PAGE (new Figma design)
   ============================================== */

/* HERO */
.services-hero {
  background: #968276;
  min-height: 540px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.services-hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.services-hero-image {
  width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.services-hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 1200px;
  max-width: 1200pxpx;
  z-index: 2;
  color: #fff;
  font-size: 4.5rem;
  line-height: 1.2;
  font-weight: 400;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

/* SERVICE ROWS */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 600px;
  align-items: stretch;
  border-top: 1px solid black;
}

.service-row.light { background: #f8f8f6; }
.service-row.beige { background: #eee6db; }

.service-row--flip {
  direction: rtl;
}

.service-row--flip > * {
  direction: ltr;
}

.service-image {
  min-height: 600px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 9%;
}

.service-content-inner {
  max-width: 420px;
  width: 100%;
}

.service-content h2 {
  font-size: 2.2rem;
  font-weight: 400;
  color: #3d3631;
  margin-bottom: 28px;
}

.service-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4e4741;
  margin-bottom: 34px;
  max-width: 360px;
}

.service-link {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #826F62;
  border-bottom: 1px solid #826F62;
  padding-bottom: 4px;
  transition: opacity 0.2s;
}

.service-link:hover { opacity: 0.7; }

/* PAGE SPACER */
.page-spacer {
  background: #f4f4f2;
  min-height: 130px;
}

/* CTA BANNER */
.cta-banner {
  background: #eee6db;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  height: 600px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

.cta-banner-left {
  padding: 40px 8%;
  display: flex;
  align-items: center;
}

.cta-banner-btn {
  display: inline-block;
  border: 1px solid #826F62;
  background: #826F62;
  color: #fff;
  padding: 12px 28px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: 0.3s ease;
}

.cta-banner-btn:hover {
  background: #6e5d52;
  border-color: #6e5d52;
  color: #fff;
}

.cta-banner-right {
  min-height: 210px;
  overflow: hidden;
}

.cta-banner-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT GAP */
.content-gap {
  background: #f4f4f4;
  min-height: 420px;
}

/* SERVICES MAIN CTA */
.svc-main-cta {
  background: #efe7dd;
  text-align: center;
  padding: 95px 20px;
}

.svc-main-cta h3 {
  font-size: 2.4rem;
  font-weight: 400;
  color: #756b63;
  line-height: 1.35;
  max-width: 700px;
  margin: 0 auto 28px;
}

/* Services gallery — scrolling marquee, same as homepage */

/* Services Responsive */
@media (max-width: 1100px) {
  .services-hero-text { font-size: 3rem; max-width: 580px; }
  .service-row {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .service-row--flip { direction: ltr; }
  .service-row--flip > * { direction: ltr; }
  .service-image { min-height: 320px; }
  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner-right { min-height: 180px; }
  /* .services-page .gallery-strip — uses shared scrolling marquee styles */
}

@media (max-width: 767px) {
  .services-hero { min-height: 380px; }
  .services-hero-text { font-size: 2.5rem; max-width: 350px; width: 350px; }
  .service-content { padding: 52px 6%; }
	.services-hero-image img { width: 380px; margin-left: -20px;  }
  /* .services-page .gallery-strip — uses shared scrolling marquee styles */
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

