/* ═══════════════════════════════════════════════════════════
   GR DESIGN — Main Stylesheet  v3
   Brand colour: Forest Green #2E3A27
   Accent / hover: Terracotta #B5714A
   ═══════════════════════════════════════════════════════════ */

/* ── Custom Properties ─────────────────────────────────── */
:root {
  --green-900: #1e2a1a;
  --green-800: #2e3a27;
  --green-700: #3a4a32;
  --green-600: #4a5e3f;
  --green-200: #c8d6c0;
  --green-100: #eef2eb;
  --green-50:  #f5f7f3;

  --hover:     #b5714a;   /* terracotta accent — used on all link/nav hovers */

  --cream:     #faf8f4;   /* main warm background */
  --white:     #ffffff;
  --text-dark: #1e2a1a;
  --text-mid:  #4a5240;
  --text-light:#7a866e;
  --border:    #d8e0d2;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-card:  0 2px 16px rgba(46,58,39,.08);
  --shadow-hover: 0 8px 32px rgba(46,58,39,.16);

  --max-width:    1200px;
  --section-pad:  clamp(4rem, 8vw, 7rem);
  --side-pad:     clamp(1.25rem, 5vw, 2.5rem);
}

/* ── Reset / Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img   { display: block; max-width: 100%; height: auto; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }

/* ── Utility ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--side-pad);
}

.section-eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: .65rem;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-800);
}
.section-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--green-700);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-intro {
  margin-top: 1rem;
  color: var(--text-mid);
}

/* ── Buttons ─────────────────────────────────────────────*/
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .85rem 1.85rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  border: 2px solid transparent;
}
.btn-primary { background: var(--green-800); color: var(--white); border-color: var(--green-800); }
.btn-primary:hover { background: var(--green-900); border-color: var(--green-900); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-outline  { background: transparent; color: var(--green-800); border-color: var(--green-800); }
.btn-outline:hover { background: var(--green-800); color: var(--white); transform: translateY(-2px); }
.btn-light    { background: var(--white); color: var(--green-800); border-color: var(--white); }
.btn-light:hover  { background: var(--green-100); border-color: var(--green-100); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }


/* ═══════════════════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(46,58,39,.1); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: .9rem;
}

/* Logo: larger at page top, shrinks on scroll via .scrolled class on header */
.site-logo {
  height: 68px;
  width: auto;
  transition: height .35s ease;
}
.site-header.scrolled .site-logo { height: 50px; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.main-nav a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color .2s;
  position: relative;
  white-space: nowrap;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--hover);
  border-radius: 2px;
  transition: width .25s;
}
.main-nav a:hover { color: var(--hover); }
.main-nav a:hover::after { width: 100%; }

.nav-cta {
  background: var(--green-800) !important;
  color: var(--white) !important;
  padding: .5rem 1.25rem !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover  { background: var(--hover) !important; color: var(--white) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--green-800);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 190;
}
.nav-overlay.open { display: block; }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: -300px;
    width: 280px; height: 100dvh;
    background: var(--white);
    z-index: 195;
    padding: 5rem 2rem 2rem;
    transition: right .3s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,.12);
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: .25rem; }
  .main-nav a { font-size: 1rem; padding: .6rem 0; display: block; width: 100%; }
  .nav-cta { display: inline-block; margin-top: .5rem; }
}


/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  background: var(--green-50);
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-eyebrow { font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--green-600); margin-bottom: 1rem; }

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--green-900);
  margin-bottom: 1.25rem;
}
.hero-heading em { font-style: italic; font-weight: 400; color: var(--green-700); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image-wrap { display: flex; justify-content: center; align-items: center; }
.hero-image {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 20px 40px rgba(46,58,39,.18));
  animation: floatY 4s ease-in-out infinite;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.hero-bracket {
  position: absolute;
  top: 2rem; right: 2rem;
  width: clamp(60px, 8vw, 110px);
  height: clamp(60px, 8vw, 110px);
  border-top: 3px solid var(--green-800);
  border-right: 3px solid var(--green-800);
  opacity: .1;
  pointer-events: none;
}

@media (max-width: 760px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub   { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-image { max-width: 260px; }
}


/* ═══════════════════════════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════════════════════════ */
.stats-strip {
  background: var(--green-800);
  padding: 2.25rem 0;
}
.stats-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.stat-item { text-align: center; color: var(--white); }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  display: block;
}
.stat-label { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-top: .3rem; display: block; }


/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about {
  background: var(--cream);
  padding-block: var(--section-pad);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.about-image-frame {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-100);
  box-shadow: var(--shadow-card);
  position: relative;
}
.about-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: .85rem; flex-direction: column; gap: .5rem;
}
.about-text-col .section-heading { margin-bottom: 1.5rem; }
.about-body p { color: var(--text-mid); margin-bottom: 1.1rem; line-height: 1.8; }
.about-text-col .btn { margin-top: 1.25rem; }

@media (max-width: 800px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-image-frame { max-width: 340px; margin-inline: auto; aspect-ratio: 1; }
}


/* ═══════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════ */
.services {
  background: var(--green-50);
  padding-block: var(--section-pad);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.service-icon {
  width: 54px; height: 54px;
  background: var(--green-100);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-800);
  flex-shrink: 0;
}
.service-icon svg { width: 28px; height: 28px; }

.service-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-800);
}
.service-desc { font-size: .92rem; color: var(--text-mid); line-height: 1.7; flex: 1; }
.service-price { font-size: .82rem; font-weight: 600; color: var(--green-600); }
.service-link {
  font-size: .82rem; font-weight: 600; color: var(--green-700);
  letter-spacing: .03em; transition: color .2s; margin-top: .25rem; display: inline-block;
}
.service-link:hover { color: var(--hover); }


/* ═══════════════════════════════════════════════════════════
   PET PORTRAITS
   ═══════════════════════════════════════════════════════════ */
.portraits {
  background: var(--cream);
  padding-block: var(--section-pad);
}
.portraits-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

/* Pricing table */
.portrait-pricing {
  margin: 1.5rem 0;
  width: 100%;
  border-collapse: collapse;
}
.portrait-pricing tr { border-bottom: 1px solid var(--border); }
.portrait-pricing td {
  padding: .65rem .25rem;
  font-size: .92rem;
  color: var(--text-mid);
}
.portrait-pricing td:last-child { text-align: right; font-weight: 600; color: var(--green-800); }
.portrait-pricing tr:last-child { border-bottom: none; }

.portrait-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* Carousel */
.portrait-carousel-wrap { position: relative; }
.carousel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  position: relative;
  background: var(--green-100);
  aspect-ratio: 3/4;
}
.carousel-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  height: 100%;
}
.carousel-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-100);
  color: var(--text-light);
  font-size: .88rem;
}
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }

.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.9);
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  z-index: 5;
  transition: background .2s, transform .2s;
  color: var(--green-800);
}
.carousel-btn:hover { background: var(--white); transform: translateY(-50%) scale(1.1); }
.carousel-prev { left: .75rem; }
.carousel-next { right: .75rem; }

.carousel-dots {
  display: flex; gap: .5rem;
  justify-content: center;
  margin-top: 1rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-200);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  padding: 0;
}
.carousel-dot.active { background: var(--green-800); transform: scale(1.3); }

/* FAQ accordion */
.portraits-faq { margin-top: 3.5rem; }
.faq-list { max-width: 720px; margin-inline: auto; }

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

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem .25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-800);
  transition: color .2s;
}
.faq-btn:hover { color: var(--green-700); }

.faq-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--green-800);
  border-radius: 2px;
  transition: transform .3s;
}
.faq-icon::before { width: 12px; height: 2px; top: 10px; left: 5px; }
.faq-icon::after  { width: 2px; height: 12px; top: 5px; left: 10px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease, padding .3s;
}
.faq-item.open .faq-body { max-height: 400px; }
.faq-body-inner {
  padding: 0 .25rem 1.25rem;
  color: var(--text-mid);
  font-size: .95rem;
  line-height: 1.75;
}

@media (max-width: 800px) {
  .portraits-inner { grid-template-columns: 1fr; }
  .carousel { aspect-ratio: 1; max-width: 400px; margin-inline: auto; }
}


/* ═══════════════════════════════════════════════════════════
   STR CONSULTING
   ═══════════════════════════════════════════════════════════ */
.str-section {
  background: var(--green-50);
  padding-block: var(--section-pad);
}
.str-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.str-intro .section-heading { margin-bottom: 1rem; }
.str-intro p { color: var(--text-mid); line-height: 1.8; margin-bottom: .9rem; }

.str-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--green-100);
  border: 1px solid var(--green-200);
  border-radius: 99px;
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 1rem;
}

.str-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.str-package {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.str-package.featured {
  border-color: var(--green-800);
  background: var(--green-800);
  color: var(--white);
}
.str-package-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .35rem;
}
.str-package.featured .str-package-name { color: var(--white); }
.str-package-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 1rem;
  font-family: var(--font-serif);
}
.str-package.featured .str-package-price { color: var(--green-100); }
.str-package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 1.5rem;
}
.str-package-features li {
  font-size: .9rem;
  color: var(--text-mid);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}
.str-package.featured .str-package-features li { color: rgba(255,255,255,.8); }
.str-package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-600);
  font-weight: 700;
}
.str-package.featured .str-package-features li::before { color: var(--green-200); }
.str-platform-note { font-size: .8rem; color: var(--text-light); margin-top: .5rem; }
.str-package.featured .str-platform-note { color: rgba(255,255,255,.5); }

@media (max-width: 800px) {
  .str-intro { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════ */
.gallery {
  background: var(--cream);
  padding-block: var(--section-pad);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--green-100);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  cursor: pointer;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-hover); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.05); }

/* Hover overlay with "View" label */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,42,26,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.7);
  padding: .45rem 1.1rem;
  border-radius: var(--radius-sm);
}

/* ── Lightbox ─────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(15,20,13,.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 88vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  transform: scale(.96);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: block;
}
.lightbox.open .lightbox-img-wrap img { transform: scale(1); }

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .2s;
  backdrop-filter: blur(4px);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.22); }

.lightbox-close {
  top: 1.25rem; right: 1.25rem;
  width: 44px; height: 44px;
}
.lightbox-prev {
  left: 1.25rem; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
}
.lightbox-prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-next {
  right: 1.25rem; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
}
.lightbox-next:hover { transform: translateY(-50%) scale(1.08); }

.lightbox-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

@media (max-width: 600px) {
  .lightbox-prev { left: .5rem; width: 40px; height: 40px; }
  .lightbox-next { right: .5rem; width: 40px; height: 40px; }
}

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


/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact {
  background: var(--cream);
  padding-block: var(--section-pad);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-text .section-heading { margin-bottom: 1rem; }
.contact-text p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1.5rem; }

.contact-methods { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.contact-method {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .95rem;
  color: var(--text-mid);
}
.contact-method-icon {
  width: 42px; height: 42px;
  background: var(--green-100);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-800);
  flex-shrink: 0;
}
.contact-method-icon svg { width: 20px; height: 20px; }
.contact-method a { color: var(--green-700); text-decoration: underline; text-underline-offset: 3px; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: .9rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(46,58,39,.08);
}
.form-row textarea { resize: vertical; min-height: 130px; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--text-mid); margin-bottom: .4rem; }

@media (max-width: 800px) {
  .contact-inner { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.75rem; }
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--green-900);
  color: rgba(255,255,255,.7);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 2rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
/* Logo sits in a white pill — works with any logo regardless of background colour */
.footer-logo {
  height: 46px;
  width: auto;
  background: rgba(255,255,255,.9);
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}
.footer-tagline { font-size: .9rem; max-width: 280px; line-height: 1.6; }

/* Footer service icons row */
.footer-service-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}
.footer-service-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.1);
  title: attr(data-label);
}
.footer-service-icon:hover { background: rgba(255,255,255,.15); color: var(--white); }
.footer-service-icon svg { width: 20px; height: 20px; }

/* Social icons */
.footer-social { display: flex; gap: .75rem; margin-top: 1rem; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s, transform .2s;
  border: 1px solid rgba(255,255,255,.15);
}
.social-icon:hover { background: var(--hover); color: var(--white); transform: translateY(-2px); }
.social-icon svg { width: 18px; height: 18px; }

.footer-nav-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-nav-col a:hover { color: var(--hover); }

.footer-contact-col { display: flex; flex-direction: column; gap: .6rem; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .88rem; color: rgba(255,255,255,.6);
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: .15em; opacity: .6; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-legal a:hover { color: var(--hover); }

@media (max-width: 840px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: unset; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}


/* ═══════════════════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--green-900);
  color: rgba(255,255,255,.85);
  padding: 1.25rem var(--side-pad);
  border-top: 1px solid rgba(255,255,255,.1);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-text { font-size: .88rem; line-height: 1.6; }
.cookie-text a { color: var(--green-200); text-decoration: underline; }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-actions .btn { font-size: .82rem; padding: .6rem 1.25rem; }
.btn-cookie-accept { background: var(--green-600); color: var(--white); border-color: var(--green-600); }
.btn-cookie-accept:hover { background: var(--green-700); }
.btn-cookie-decline { background: transparent; color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.2); font-size: .82rem; padding: .6rem 1.25rem; }
.btn-cookie-decline:hover { background: rgba(255,255,255,.08); color: var(--white); }


/* ═══════════════════════════════════════════════════════════
   INNER PAGES (Graphic Design sub-page, Privacy, etc.)
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--green-50);
  padding-block: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--border);
}
.page-hero .section-eyebrow { margin-bottom: .5rem; }
.page-hero .section-heading { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: var(--text-mid); max-width: 600px; margin-top: 1rem; }

.page-content { padding-block: var(--section-pad); }

/* Pricing cards for service pages */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.pricing-card-label { font-size: .72rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--green-600); margin-bottom: .4rem; }
.pricing-card-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: .25rem;
}
.pricing-card-price { font-size: 1.4rem; font-weight: 700; color: var(--green-800); font-family: var(--font-serif); margin-bottom: 1rem; }
.pricing-card-desc { font-size: .9rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1.25rem; }
.pricing-card-includes { list-style: none; display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.5rem; }
.pricing-card-includes li { font-size: .88rem; color: var(--text-mid); padding-left: 1.3rem; position: relative; }
.pricing-card-includes li::before { content: '·'; position: absolute; left: .3rem; color: var(--green-600); font-weight: 900; }

/* Legal page */
.legal-content { max-width: 780px; margin-inline: auto; }
.legal-content h2 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--green-800); margin: 2rem 0 .75rem; }
.legal-content h3 { font-size: 1rem; font-weight: 600; color: var(--green-800); margin: 1.5rem 0 .5rem; }
.legal-content p { color: var(--text-mid); line-height: 1.8; margin-bottom: .9rem; }
.legal-content ul { margin: .5rem 0 1rem 1.25rem; list-style: disc; }
.legal-content ul li { color: var(--text-mid); font-size: .95rem; line-height: 1.75; margin-bottom: .35rem; }
.legal-content a { color: var(--green-700); text-decoration: underline; }
.legal-meta { background: var(--green-50); border-radius: var(--radius-md); padding: 1.25rem 1.5rem; margin-bottom: 2rem; font-size: .88rem; color: var(--text-mid); border-left: 3px solid var(--green-700); }

/* ═══════════════════════════════════════════════════════════
   ORDER PAGE — How It Works + Pricing Strip + Form wrap
   ═══════════════════════════════════════════════════════════ */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--green-700);
  transition: color .2s, gap .2s;
}
.back-link:hover { color: var(--hover); gap: .65rem; }

/* How It Works steps */
.how-it-works {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hiw-step {
  text-align: center;
  max-width: 200px;
}
.hiw-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.hiw-step h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-800);
  margin-bottom: .4rem;
}
.hiw-step p { font-size: .88rem; color: var(--text-mid); line-height: 1.6; }
.hiw-arrow { color: var(--green-200); flex-shrink: 0; }

/* Pricing strip */
.portrait-pricing-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.pps-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 2rem;
  gap: .25rem;
  flex: 1;
  min-width: 150px;
  text-align: center;
}
.pps-label { font-size: .8rem; color: var(--text-mid); }
.pps-price { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--green-800); }
.pps-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* Order form wrapper */
.order-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.order-tips { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.25rem; }
.order-tip {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: var(--text-mid);
}
.order-tip svg { color: var(--green-600); flex-shrink: 0; }

/* Tally embed placeholder */
.tally-placeholder {
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tally-placeholder-inner { text-align: center; padding: 2.5rem; }

@media (max-width: 800px) {
  .order-form-wrap { grid-template-columns: 1fr; }
  .hiw-arrow { transform: rotate(90deg); }
  .how-it-works { flex-direction: column; gap: 1rem; }
  .pps-divider { width: 80%; height: 1px; }
  .portrait-pricing-strip { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════
   NEWSLETTER SECTION
   ═══════════════════════════════════════════════════════════ */
.newsletter-section {
  background: var(--green-800);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.newsletter-form-wrap { width: 100%; }
.newsletter-input-wrap {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.newsletter-input-wrap input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: .9rem 1.1rem;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .95rem;
  outline: none;
  transition: border-color .2s, background .2s;
}
.newsletter-input-wrap input[type="email"]::placeholder { color: rgba(255,255,255,.4); }
.newsletter-input-wrap input[type="email"]:focus {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.12);
}
.newsletter-btn { flex-shrink: 0; }
.newsletter-disclaimer {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin-top: .85rem;
  line-height: 1.6;
}
.newsletter-msg {
  font-size: .88rem;
  font-weight: 600;
  margin-top: .75rem;
  min-height: 1.2em;
}
.newsletter-msg.success { color: #7dd8a0; }
.newsletter-msg.error   { color: #f4a4a4; }

@media (max-width: 720px) {
  .newsletter-inner { grid-template-columns: 1fr; }
}

/* ══ Footer newsletter strip (homepage) ══════════════════ */
.footer-newsletter {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 0;
}
.footer-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-newsletter-text p:first-child {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: .25rem;
}
.footer-newsletter-text p:last-child {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  font-weight: 500;
}
.footer-newsletter-form {
  display: flex;
  gap: .6rem;
  flex: 1;
  max-width: 420px;
}
.footer-newsletter-form input[type="email"] {
  flex: 1;
  padding: .7rem 1rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.07);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .88rem;
  outline: none;
  transition: border-color .2s;
}
.footer-newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,.35); }
.footer-newsletter-form input[type="email"]:focus { border-color: rgba(255,255,255,.35); }
.footer-newsletter-form .btn {
  font-size: .82rem;
  padding: .7rem 1.25rem;
  flex-shrink: 0;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  color: var(--white);
}
.footer-newsletter-form .btn:hover { background: var(--hover); border-color: var(--hover); }

@media (max-width: 640px) {
  .footer-newsletter-inner { flex-direction: column; align-items: flex-start; }
  .footer-newsletter-form { max-width: 100%; width: 100%; }
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 500;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  color: var(--white);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5); }
.whatsapp-float svg { width: 28px; height: 28px; }
