@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Lato:wght@300;400;700&display=swap');

/* ════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

html, body {
  width: 100%;
  overflow-x: hidden;
}

:root {
  --gold:        #c8a84b;
  --gold-light:  #e8cc80;
  --gold-pale:   #f5e8c0;
  --gold-dim:    #7a5e25;
  --green-deep:  #132318;
  --green-dark:  #1a2e1e;
  --green-mid:   #1e3d26;
  --green-card:  #1c3422;
  --green-card2: #244030;
  --cream:       #f0e8d0;
  --text-light:  #f0eadc;
  --text-muted:  #9aaa90;
  --border:      rgba(200,168,75,0.32);
  --border-glow: rgba(200,168,75,0.55);
  --shadow-gold: 0 0 40px rgba(200,168,75,0.18);
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--green-deep);
  color: var(--text-light);
  line-height: 1.7;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--green-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* ════════════════════════════════════════
   ARABESQUE SVG ORNAMENT (inline reuse)
════════════════════════════════════════ */
.arabesque {
  display: block;
  text-align: center;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.4em;
  line-height: 1;
  margin: 0.3rem 0;
  opacity: 0.75;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem auto;
}

.divider-line {
  display: block;
  width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.divider-line.rev {
  background: linear-gradient(to left, transparent, var(--gold));
}

.divider-diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: linear-gradient(to bottom, rgba(11,26,14,0.96), transparent);
  backdrop-filter: blur(4px);
  transition: background 0.4s;
}

.nav.scrolled {
  background: rgba(11,26,14,0.97);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: 'Amiri', serif;
  font-size: 1.35rem;
  color: var(--gold-light);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 0.4rem 1.1rem;
  transition: border-color 0.3s, background 0.3s;
}

.nav-phone:hover {
  border-color: var(--gold);
  background: rgba(200,168,75,0.08);
}

/* ════════════════════════════════════════
   HERO / HEADER
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  background-image:
    linear-gradient(to bottom, rgba(11,26,14,0.35) 0%, rgba(11,26,14,0.58) 60%, rgba(19,35,24,0.92) 100%),
    url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

/* geometric corner accents */
.hero-corner {
  position: absolute;
  width: 100px; height: 100px;
  border-color: rgba(200,168,75,0.35);
  border-style: solid;
  pointer-events: none;
}

.hero-corner--tl { top: 70px; left: 30px; border-width: 2px 0 0 2px; }
.hero-corner--tr { top: 70px; right: 30px; border-width: 2px 2px 0 0; }
.hero-corner--bl { bottom: 30px; left: 30px; border-width: 0 0 2px 2px; }
.hero-corner--br { bottom: 30px; right: 30px; border-width: 0 2px 2px 0; }

.hero-arabic {
  font-family: 'Amiri', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 1s 0.1s forwards;
}

.hero h1 {
  font-family: 'Amiri', serif;
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-shadow: 0 0 60px rgba(200,168,75,0.3), 0 2px 4px rgba(0,0,0,0.8);
  opacity: 0;
  animation: fadeUp 1.1s 0.3s forwards;
}

.hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}

.hero-divider {
  width: 200px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 1.8rem auto;
  opacity: 0;
  animation: fadeUp 1s 0.65s forwards;
}

.hero-tagline {
  font-family: 'Amiri', serif;
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  font-style: italic;
  color: var(--cream);
  max-width: 600px;
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards;
  line-height: 1.5;
}

.hero-cta-wrap {
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s 1s forwards;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ════════════════════════════════════════
   CTA BUTTONS
════════════════════════════════════════ */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: var(--green-deep);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  box-shadow: 0 4px 24px rgba(200,168,75,0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 6px 36px rgba(200,168,75,0.55);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-glow);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.btn-outline:hover {
  background: rgba(200,168,75,0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════
   SECTION HEADER
════════════════════════════════════════ */
.section-head {
  text-align: center;
  padding: 4rem 1.5rem 2.5rem;
}

.section-head h2 {
  font-family: 'Amiri', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.section-head p {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ════════════════════════════════════════
   INTRO STRIP
════════════════════════════════════════ */
.intro-strip {
  background: var(--green-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 1.5rem;
  text-align: center;
}

.intro-strip p {
  font-family: 'Amiri', serif;
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  font-style: italic;
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.intro-strip p span {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.services-section {
  background: var(--green-dark);
  padding: 0 1.5rem 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--green-card);
  padding: 2.2rem 1.8rem;
  text-align: center;
  position: relative;
  transition: background 0.3s;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: linear-gradient(to right, var(--gold-dim), var(--gold));
  transition: width 0.4s ease;
}

.service-card:hover { background: var(--green-card2); }
.service-card:hover::before { width: 70%; }

.service-card .icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-family: 'Amiri', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ════════════════════════════════════════
   PHOTO BANNER (full-width image)
════════════════════════════════════════ */
.photo-banner {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.photo-banner img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) sepia(0.1);
}

.photo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,26,14,0.15), rgba(11,26,14,0.52));
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-banner-text {
  font-family: 'Amiri', serif;
  font-size: clamp(1.4rem, 4vw, 2.8rem);
  font-style: italic;
  color: var(--cream);
  text-align: center;
  max-width: 700px;
  padding: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  line-height: 1.4;
}

/* ════════════════════════════════════════
   STAT BANNERS
════════════════════════════════════════ */
.stat-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}

.stat-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(19,35,24,0.72);
}

.stat-banner > * { position: relative; z-index: 1; }

.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.5rem;
  margin-bottom: 2rem;
}

.stat-item { text-align: center; }

.stat-item .num {
  font-family: 'Amiri', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  text-shadow: var(--shadow-gold);
}

.stat-item .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
  display: block;
}

/* ════════════════════════════════════════
   CTA BANNERS (love, curse etc.)
════════════════════════════════════════ */
.cta-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5.5rem 2rem;
  gap: 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(19,35,24,0.73);
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner h2 {
  font-family: 'Amiri', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--cream);
  max-width: 700px;
  line-height: 1.45;
}

.cta-banner h2 em {
  color: var(--gold-light);
  font-style: italic;
}

/* ════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════ */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}

.about-img {
  position: relative;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: sepia(0.15) brightness(0.82);
  display: block;
}

.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(19,35,24,0.35));
}

.about-text {
  background: var(--green-mid);
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
}

.about-text .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.about-text h2 {
  font-family: 'Amiri', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.about-text .about-quote {
  border-left: 2px solid var(--gold-dim);
  padding-left: 1.2rem;
  font-family: 'Amiri', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-pale);
  margin: 1.5rem 0;
  line-height: 1.7;
}

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials-section {
  background: var(--green-dark);
  padding: 1rem 1.5rem 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.tcard {
  background: var(--green-card);
  border: 1px solid var(--border);
  border-bottom: 2px solid var(--gold-dim);
  padding: 2rem 1.8rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.tcard:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-3px);
}

.tcard .quote-icon {
  font-family: 'Amiri', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold-dim);
  position: absolute;
  top: 0.5rem; left: 1.5rem;
  opacity: 0.4;
}

.tcard p {
  font-family: 'Amiri', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.75;
  margin-top: 1.5rem;
}

.tcard cite {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ════════════════════════════════════════
   SCREENSHOT / WA IMAGES
════════════════════════════════════════ */
.screenshots {
  background: var(--green-deep);
  padding: 3rem 1.5rem;
}

.screenshots h3 {
  font-family: 'Amiri', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 2rem;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.screenshots-grid img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  display: block;
  transition: border-color 0.3s;
}

.screenshots-grid img:hover { border-color: var(--gold-dim); }

/* ════════════════════════════════════════
   COMMENTS
════════════════════════════════════════ */
.comments-section {
  background: var(--green-deep);
  border-top: 1px solid var(--border);
  padding: 4rem 1.5rem;
}

.comments-inner {
  max-width: 820px;
  margin: 0 auto;
}

.comments-inner h2 {
  font-family: 'Amiri', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 2.5rem;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input:not([type="submit"]) {
  background: var(--green-card);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.9rem 1.2rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.comment-form textarea { min-height: 110px; resize: vertical; }

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

.comment-form input[type="submit"] {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: var(--green-deep);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: none;
  cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: opacity 0.3s, transform 0.2s;
  align-self: flex-start;
}

.comment-form input[type="submit"]:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.comment-item {
  border-left: 2px solid var(--gold-dim);
  padding: 1rem 1.4rem;
  margin-bottom: 1.2rem;
  background: var(--green-card);
  transition: border-left-color 0.3s;
}

.comment-item:hover { border-left-color: var(--gold); }

.comment-item .meta {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.comment-item .meta em { color: var(--text-muted); }

.comment-item p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.75;
}

/* ════════════════════════════════════════
   FINAL CALLOUT
════════════════════════════════════════ */
.final-callout {
  position: relative;
  text-align: center;
  padding: 6rem 1.5rem;
  background-image:
    linear-gradient(rgba(19,35,24,0.78), rgba(19,35,24,0.78)),
    url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.final-callout::before {
  content: '';
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(200,168,75,0.18);
  pointer-events: none;
}

.final-callout .arabic-large {
  font-family: 'Amiri', serif;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  opacity: 0.65;
}

.final-callout h2 {
  font-family: 'Amiri', serif;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--gold-light);
  max-width: 750px;
  margin: 0 auto 0.8rem;
  line-height: 1.35;
}

.final-callout p {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--green-deep);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 1.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.footer i { color: var(--gold); }

/* ════════════════════════════════════════
   FADE-IN SCROLL
════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

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

/* staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.45s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.55s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.65s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.75s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(9) { transition-delay: 0.85s; opacity: 1; transform: none; }

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 4px 24px rgba(200,168,75,0.35); }
  50%       { box-shadow: 0 4px 40px rgba(200,168,75,0.65); }
}

.btn-primary { animation: pulse-gold 3s ease-in-out infinite; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 768px) {
  .about-section { grid-template-columns: 1fr; }
  .about-img { min-height: 300px; }
  .about-img::after { background: linear-gradient(to bottom, transparent, rgba(11,26,14,0.6)); }
  .about-text { padding: 2.5rem 1.5rem; }
  .hero-corner--tl, .hero-corner--tr { display: none; }
  .stat-banner { background-attachment: scroll; }
  .final-callout::before { inset: 10px; }
  .nav { padding: 0.8rem 1.2rem; }
}

@media (max-width: 480px) {
  .hero h1 { letter-spacing: 0.01em; }
  .stats-row { gap: 2rem; }
  .btn { font-size: 0.75rem; padding: 0.75rem 1.4rem; }
}

/* ── about centered (bez slike) ── */
.about-section--centered {
  display: block;
  grid-template-columns: unset;
}

.about-text--full {
  max-width: 800px;
  margin: 0 auto;
  padding: 4.5rem 2rem;
  text-align: center;
  border-left: none;
  background: var(--green-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-text--full .about-quote {
  border-left: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  text-align: center;
}
