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

/* ── TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --cream:      #F5F0E6;
  --cream-dark: #EDE5D0;
  --parchment:  #FAF7F0;
  --forest:     #1C3829;
  --forest-mid: #2C5040;
  --forest-lt:  #3D6B57;
  --gold:       #B8942A;
  --gold-lt:    #D4AE48;
  --gold-pale:  #F0DFA0;
  --ink:        #0F1F16;
  --ink-mid:    #2A3D30;
  --stone:      #7A8C7E;
  --paper:      #FDFAF4;
  --error:      #c0392b;
  --nav-h:      80px;
  --fw-display: 'Cormorant', Georgia, serif;
  --fw-body:    'Jost', sans-serif;
  --ease:       cubic-bezier(0.16,1,0.3,1);
  --shadow-sm:  0 2px 8px rgba(15,31,22,0.08);
  --shadow-md:  0 8px 28px rgba(15,31,22,0.12);
  --shadow-lg:  0 20px 60px rgba(15,31,22,0.16);
  --radius:     3px;
}

body { font-family: var(--fw-body); background: var(--cream); color: var(--ink); line-height: 1.6; overflow-x: hidden; }
a   { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ══ HERO — FULL-SCREEN, ALL TEXT ON PHOTO ══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1509316785289-025f5b846b35?w=1800&q=85');
  background-size: cover; background-position: center 40%;
  transition: transform 10s ease;
}
.hero:hover .hero-bg { transform: scale(1.04); }
/* Multi-layer overlay for depth & readability */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(15,31,22,0.6) 0%, rgba(15,31,22,0.2) 35%, rgba(15,31,22,0.65) 80%, rgba(15,31,22,0.92) 100%),
    linear-gradient(to right, rgba(15,31,22,0.55) 0%, rgba(15,31,22,0.1) 60%);
}
/* All content sits above photo */
.hero-content {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  width: 100%; padding: 0 20px;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 5rem;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.1s both;
}
.hero-eyebrow-line { width: 50px; height: 1px; background: var(--gold); }
.hero-eyebrow-text {
  font-family: var(--fw-body); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-lt);
}
/* Large editorial headline — on photo */
.hero-headline {
  font-family: var(--fw-display);
  font-size: clamp(4.5rem, 9vw, 9rem);
  font-weight: 300; color: var(--cream);
  line-height: 0.92; letter-spacing: -0.02em;
  margin-bottom: 2rem;
  animation: fadeUp 0.9s 0.25s both;
}
.hero-headline em { font-style: italic; color: var(--gold-lt); font-weight: 300; }
/* Subtext — on the photo */
.hero-sub {
  font-family: var(--fw-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300; font-style: italic;
  color: rgba(245,240,230,0.78);
  max-width: 580px; line-height: 1.65;
  margin-bottom: 3rem;
  animation: fadeUp 0.9s 0.4s both;
}
.hero-actions {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap; margin-bottom: 5rem;
  animation: fadeUp 0.9s 0.55s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: var(--forest);
  padding: 1rem 2.2rem; font-family: var(--fw-body);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: all 0.25s var(--ease);
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); color: var(--forest); }
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(245,240,230,0.9); font-family: var(--fw-body);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  padding-bottom: 2px; border-bottom: 1px solid rgba(245,240,230,0.4); transition: all 0.2s;
}
.btn-ghost-white:hover { color: var(--gold-lt); border-color: var(--gold-lt); }
/* Stats row — still on photo at bottom of hero */
.hero-stats {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 2rem;
  animation: fadeUp 0.9s 0.7s both;
}
.hero-stat {
  padding-right: 3rem; margin-right: 3rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.hero-stat:last-child { border-right: none; margin-right: 0; }
.hero-stat-num {
  font-family: var(--fw-display); font-size: 2.8rem; font-weight: 600;
  color: var(--gold-lt); line-height: 1; display: block; margin-bottom: 0.3rem;
}
.hero-stat-lbl {
  font-family: var(--fw-body); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(245,240,230,0.5); display: block;
}
/* Scroll hint */
.hero-scroll {
  position: absolute; bottom: 2.5rem; right: 3rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.5;
}
.hero-scroll span {
  font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cream); writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold-lt), transparent);
  animation: scrollPulse 2s infinite;
}

/* ══ TICKER ══ */
.ticker-strip {
  background: var(--forest); padding: 0.9rem 0; overflow: hidden;
  border-top: 1px solid rgba(184,148,42,0.2);
  border-bottom: 1px solid rgba(184,148,42,0.2);
}
.ticker-inner .tb_text_wrap { display: flex; width: max-content; animation: ticker 30s linear infinite; }
.ticker-item {
  display: flex; align-items: center; gap: 2rem;
  padding: 0 3rem; white-space: nowrap;
  font-family: var(--fw-body); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.ticker-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ══ WHAT WE DO ══ */
.what-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.what-image { position: relative; overflow: hidden; }
.what-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(0.1) brightness(0.88); transition: transform 8s ease;
}
.what-image:hover img { transform: scale(1.04); }
.what-image-caption {
  position: absolute; bottom: 2rem; left: 2rem;
  background: var(--gold); color: var(--forest);
  padding: 0.5rem 1rem; font-family: var(--fw-body);
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
}
.what-content {
  background: var(--parchment); padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.section-tag { display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.section-tag-line { width: 30px; height: 1px; background: var(--gold); }
.section-tag-text {
  font-family: var(--fw-body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
}
.section-heading {
  font-family: var(--fw-display); font-size: clamp(2.5rem,4vw,3.8rem);
  font-weight: 400; line-height: 1.1; color: var(--forest); margin-bottom: 1.5rem;
}
.section-heading em { font-style: italic; font-weight: 300; color: var(--forest-lt); }
.section-body {
  font-family: var(--fw-display); font-size: 1.1rem; font-weight: 300;
  line-height: 1.85; color: var(--stone); font-style: italic; margin-bottom: 1.5rem;
}
.section-body-plain {
  font-family: var(--fw-body); font-size: 0.88rem;
  line-height: 1.85; color: #4a5a50; margin-bottom: 1rem;
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--forest); font-family: var(--fw-body); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  padding-bottom: 2px; border-bottom: 1.5px solid var(--forest); transition: all 0.2s;
}
.btn-secondary:hover { color: var(--gold); border-color: var(--gold); }

/* ══ MONUMENTS ══ */
.monuments-section { background: var(--cream-dark); padding: 5rem 3rem; }
.monuments-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(28,56,41,0.12);
}
.monuments-header-left h2 {
  font-family: var(--fw-display); font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 400; color: var(--forest); line-height: 1.1; margin-bottom: 0.3rem;
}
.monuments-header-left p { font-family: var(--fw-body); font-size: 0.78rem; color: var(--stone); margin: 0; }
.monuments-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.monument-card { position: relative; overflow: hidden; cursor: pointer; display: block; }
.monument-card img { aspect-ratio: 3/4; 
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(0.1) brightness(0.78);
  transition: transform 0.6s var(--ease), filter 0.4s;
}
.monument-card:hover img { transform: scale(1.06); filter: sepia(0.15) brightness(0.65); }
.monument-card-info {
  position: absolute !important; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(15,31,22,0.92) 0%, transparent 100%);
}
.monuments-section .monument-card-info h4 { font-size: 16px; }
.monument-card-name {
  font-family: var(--fw-display); font-size: 1.4rem; font-weight: 500;
  color: var(--cream); line-height: 1.1; margin-bottom: 10px;
}
.monument-card-desc {
  font-family: var(--fw-body); font-size: 0.68rem;
  color: rgba(245,240,230,0.65); letter-spacing: 0.08em;
  opacity: 0; transform: translateY(5px); transition: all 0.3s;
}
.monument-card:hover .monument-card-desc { opacity: 1; transform: translateY(0); }
.monument-card-num {
  position: absolute !important; top: 1rem; left: 1rem;
  font-family: var(--fw-display); font-size: 0.9rem; font-weight: 600;
  color: var(--gold-lt); background: rgba(15,31,22,0.6); padding: 0.2rem 0.5rem;
}

/* ══ PROCESS ══ */
.process-section {
  background: var(--forest); padding: 6rem 3rem;
  position: relative; overflow: hidden;
}
.process-section::before {
  content: 'PROCESS'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--fw-display); font-size: 18vw; font-weight: 700;
  color: rgba(255,255,255,0.02); pointer-events: none;
  white-space: nowrap; letter-spacing: 0.2em;
}
.process-header { text-align: center; margin-bottom: 5rem; }
.process-header h2 {
  font-family: var(--fw-display); font-size: clamp(2rem,4vw,3.5rem);
  font-weight: 300; color: var(--cream); font-style: italic;
}
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 2rem; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,148,42,0.4), transparent);
}
.process-step { padding: 0 2rem; text-align: center; }
.process-step-num {
  width: 64px; height: 64px; border: 1px solid rgba(184,148,42,0.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--fw-display); font-size: 1.4rem; font-weight: 600;
  color: var(--gold-lt); position: relative; z-index: 1; background: var(--forest);
}
.process-step-title {
  font-family: var(--fw-display); font-size: 1.2rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.75rem;
}
.process-step-body {
  font-family: var(--fw-body); font-size: 0.8rem; line-height: 1.8;
  color: rgba(245,240,230,0.55);
}

/* ══ AREAS ══ */
.areas-section { /*display: grid; grid-template-columns: 1fr 1fr;*/ }
.area-panel {
  position: relative; overflow: hidden; min-height: 60vh;
  display: flex; align-items: flex-end;
}
.area-panel img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: sepia(0.2) brightness(0.55);
  transition: transform 0.8s var(--ease), filter 0.5s;
}
.area-panel:hover img { transform: scale(1.05); filter: sepia(0.25) brightness(0.45); }
.area-panel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient( to top, rgba(15, 31, 22, 0.95) 0%, rgba(15, 31, 22, 0.75) 40%, rgba(15, 31, 22, 0.35) 70%, transparent 100% );
}
.area-panel-content { position: relative; z-index: 1; padding: 3rem; width: 100%; }
.area-panel-label {
  font-family: var(--fw-body); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-pale); margin-bottom: 0.5rem;
}
.area-panel-title {
  font-family: var(--fw-display); font-size: 3rem; font-weight: 500;
  color: #fff; line-height: 1; margin-bottom: 0.75rem;
}
.area-panel-desc {
  font-family: var(--fw-body); font-size: 0.8rem;
  color: #fff; line-height: 1.7; max-width: 320px; margin-bottom: 1.5rem;
}
.area-panel-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--fw-body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-lt);
  border-bottom: 1px solid rgba(184,148,42,0.4); padding-bottom: 2px; transition: all 0.2s;
}
.area-panel:hover .area-panel-link { color: var(--gold-pale); border-color: var(--gold-pale); }
.area-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px; background: rgba(184,148,42,0.2); z-index: 2; pointer-events: none;
}

/* ══ TESTIMONIALS ══ */
.testimonials-section { background: var(--parchment); padding: 6rem 3rem; }
.testimonials-header {
  display: grid; grid-template-columns: 1fr 2fr; gap: 4rem;
  align-items: start; margin-bottom: 4rem;
}
.testimonials-header h2 {
  font-family: var(--fw-display); font-size: clamp(2.5rem,4vw,3.5rem);
  font-weight: 300; color: var(--forest); font-style: italic; line-height: 1.1;
}
.testimonials-header p {
  font-family: var(--fw-body); font-size: 0.88rem;
  color: var(--stone); line-height: 1.85; padding-top: 1.5rem;
}
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--cream-dark); }
.testi-card { background: var(--parchment); padding: 2.5rem 2rem; position: relative; }
.testi-card::before {
  content: '\201C'; font-family: var(--fw-display); font-size: 6rem;
  color: var(--gold-pale); position: absolute; top: 0.5rem; left: 1.5rem;
  line-height: 1; pointer-events: none;
}
.testi-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 3px; margin-bottom: 1rem; }
.testi-quote {
  font-family: var(--fw-display); font-size: 1.05rem; font-style: italic;
  font-weight: 300; color: var(--ink-mid); line-height: 1.75; margin-bottom: 1.5rem;
}
.testi-author {
  font-family: var(--fw-body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--forest-lt);
}

/* ══ CTA ══ */
.cta-section {
  background: var(--cream-dark); padding: 7rem 3rem;
  /*display: grid; grid-template-columns: 1fr 1fr;*/
  gap: 6rem; align-items: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '1978'; position: absolute; right: -2rem; bottom: -2rem;
  font-family: var(--fw-display); font-size: 18rem; font-weight: 700;
  color: rgba(28,56,41,0.04); line-height: 1; pointer-events: none;
  z-index: 1;
}
.cta-left h2 {
  font-family: var(--fw-display); font-size: clamp(2.5rem,4vw,4rem);
  font-weight: 300; color: var(--forest); line-height: 1.1; margin-bottom: 1.5rem;
}
.cta-left h2 em { font-style: italic; }
.cta-left p { font-family: var(--fw-body); font-size: 0.88rem; color: var(--stone); line-height: 1.85; }
.cta-right { display: flex; flex-direction: column; gap: 1.5rem; }
.cta-contact-row {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.25rem; background: var(--parchment); border-left: 3px solid var(--gold);
}
.cta-contact-icon { font-size: 1.2rem; color: var(--gold); flex-shrink: 0; }
.cta-contact-label {
  font-family: var(--fw-body); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.2rem;
}
.cta-contact-value {
  font-family: var(--fw-display); font-size: 1.1rem; font-weight: 500; color: var(--forest);
}
.cta-buttons { display: flex; gap: 1rem; margin-top: 0.5rem; flex-wrap: wrap; }

/* ══ FOOTER ══ */
.site-footer { background: var(--ink); color: var(--cream); padding: 5rem 3rem 2rem; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem;
}
.footer-brand-name {
  font-family: var(--fw-display); font-size: 1.8rem; font-weight: 300;
  color: var(--cream); font-style: italic; margin-bottom: 0.3rem;
}
.footer-brand-est {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 1.2rem;
}
.footer-brand-p { font-size: 0.83rem; line-height: 1.85; color: rgba(255,255,255,0.45); max-width: 270px; }
#footer .footer-widgets .widgettitle,
.footer-col h4 {
  font-family: var(--fw-body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-lt);
  margin-bottom: 1.2rem; padding-bottom: 0.6rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a { font-size: 0.83rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; color: rgba(255,255,255,0.25); flex-wrap: wrap; gap: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 15px; 
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
#footerwrap a:hover,
.footer-bottom a:hover { color: #fff; }

/* ══ ANIMATIONS ══ */
@keyframes fadeUp      { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
@keyframes ticker      { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes scrollPulse { 0%,100%{opacity:.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .what-section { grid-template-columns: 1fr; }
  .what-image { min-height: 50vw; }
  .monuments-grid { grid-template-columns: repeat(4,1fr); }

}
@media (max-width: 900px) {
  .nav-links    { display: none; }
  .nav-toggle   { display: flex; }
  .top-nav      { padding: 0 1.5rem; }
  .hero-content { padding: 0 1.5rem; padding-top: calc(var(--nav-h) + 1rem); padding-bottom: 4rem; }
  .hero-headline { font-size: clamp(3.5rem,10vw,6rem); }
  .hero-stats   { flex-wrap: wrap; gap: 20px 0px; }
  .hero-stat    { padding-right: 1.5rem; margin-right: 1.5rem; }
  .monuments-grid { grid-template-columns: repeat(2,1fr); --area: "col1 col2" "col3 col4"; }
  .process-steps { grid-template-columns: repeat(2,1fr); --area: "col1 col2" "col3 col4"; row-gap: 30px; }
  .process-steps::before { display: none; }
  .areas-section { grid-template-columns: 1fr; }
  .area-divider { display: none; }
  .testimonials-header { grid-template-columns: 1fr; gap: 1rem; }
  .testi-grid   { grid-template-columns: 1fr; }
  .cta-section  { grid-template-columns: 1fr; gap: 3rem; }
  .cta-section::before { display: none; }
  .footer-top   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
.monuments-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
.monument-card-desc { opacity: 1; }
}
@media (max-width: 600px) {
  :root { --nav-h: 64px; }
  .hero-content { padding: 0 1.25rem; padding-top: calc(var(--nav-h) + 1rem); padding-bottom: 3rem; }
  .hero-headline { font-size: clamp(3rem,12vw,4.5rem); }
  .hero-stats   { gap: 1.25rem; }
  .hero-stat    { padding-right: 15px; margin-right: 15px; }
  .what-content { padding: 3rem 1.25rem; }
  .monuments-section, .process-section, .testimonials-section, .cta-section { padding: 4rem 1.25rem; }  
  .footer-top   { grid-template-columns: 1fr; gap: 2rem; }
  .hero-scroll  { display: none; }
  .monuments-header { margin-bottom: 2rem; }
  .section-tag { margin-bottom: 1rem; }
  .area-panel-content { padding: 2rem; }
}

/*new home page end*/

body:not(.home) #headerwrap { background: rgba(15,31,22,0.97);  box-shadow: 0 1px 0 rgba(184,148,42,0.2); color: #fff; }
body:not(.home) #main-nav a { color: rgba(255,255,255,0.82); }
#main-nav li > .sub-menu {  
  background: var(--forest); border: 1px solid rgba(184,148,42,0.25);
  border-top: 2px solid var(--gold); min-width: 180px; padding: 0.5rem 0; z-index: 300;
  border-radius: 0;
}
#main-nav li > .sub-menu a:hover { color: var(--gold-lt); background: rgba(184,148,42,0.08);  }
body:not(.home) #headerwrap:after { content:''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
 background: linear-gradient(90deg, var(--gold), var(--gold-pale), var(--gold)); }
body:not(.home) #headerwrap.fixed-header:after  { display: none; }
#main-nav ul a { color: rgba(255,255,255,0.82); }
#footerwrap .row_inner { max-width: 100%; width: 1160px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; overflow: hidden;
  min-height: 52vh;
  display: flex; align-items: flex-end;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: sepia(0.15) brightness(0.35);
}
.page-hero .row_inner { position: static; }
.page-hero div.module_column { position: static;  }
.page-hero.module_row .module { position: static; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,31,22,0.95) 0%, rgba(15,31,22,0.7) 70%);
}
.page-hero-content {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto; width: 100%;
  padding: 4rem 0;
}
.breadcrumb {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1.5rem;
  font-family: var(--fw-body); font-size: 0.68rem;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-lt); }
.breadcrumb span { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: var(--gold-lt); }
.page-hero-eyebrow {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem;
}
.page-hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.page-hero-eyebrow-text {
  font-family: var(--fw-body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-lt);
}
.page-hero-title {
  font-family: var(--fw-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300; color: var(--cream); line-height: 0.95;
  letter-spacing: -0.01em; margin-bottom: 1.2rem;
}
.page-hero-title em { font-style: italic; color: var(--gold-lt); }
.page-hero-sub {
  font-family: var(--fw-display); font-size: 1.15rem; font-weight: 300;
  font-style: italic; color: rgba(245,240,230,0.7); max-width: 560px; line-height: 1.7; margin: 0;
}

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;
}
.eyebrow-line { width: 30px; height: 1px; background: var(--gold); }
.eyebrow-text {
  font-family: var(--fw-body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
}
.eyebrow.center { justify-content: center; }
.eyebrow.light .eyebrow-line { background: rgba(184,148,42,0.5); }
.eyebrow.light .eyebrow-text { color: var(--gold-lt); }

.section-title {
  font-family: var(--fw-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400; line-height: 1.1; color: var(--forest);
}
.section-title em { font-style: italic; font-weight: 300; color: var(--forest-lt); }
.section-title.light { color: var(--cream); }
.section-title.center { text-align: center; }

.lead {
  font-family: var(--fw-display); font-size: 1.15rem; font-weight: 300;
  font-style: italic; color: var(--stone); line-height: 1.8;
}
.body-copy {
  font-family: var(--fw-body); font-size: 0.88rem; font-weight: 400;
  line-height: 1.85; color: #4a5a50; margin: 0;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: var(--forest);
  padding: 1rem 2.2rem; font-family: var(--fw-body);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  transition: all 0.25s var(--ease); border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-forest {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--forest); color: var(--cream);
  padding: 1rem 2.2rem; font-family: var(--fw-body);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  transition: all 0.25s var(--ease); border: none; cursor: pointer;
}
.btn-forest:hover { background: var(--forest-lt); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--forest); font-family: var(--fw-body); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  padding-bottom: 2px; border-bottom: 1.5px solid var(--forest); transition: all 0.2s;
  background: none; cursor: pointer;
}
.btn-outline:hover { color: var(--gold); border-color: var(--gold); }
.btn-outline-cream {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--cream); font-family: var(--fw-body); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  padding-bottom: 2px; border-bottom: 1px solid rgba(245,240,230,0.4); transition: all 0.2s;
}
.btn-outline-cream:hover { color: var(--gold-lt); border-color: var(--gold-lt); }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ── CONTAINERS ── */
/*.container { max-width: 1100px; margin: 0 auto; padding: 0 3rem; }*/
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

/* ── SPLIT LAYOUT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem;
}
.what-image,
.split-image { display: flex !important; flex-direction: column; }
.what-image .module-image,
.split-image .module-image { display: flex !important; flex-direction: column; height: 100%; }
.what-image .module-image .image-wrap,
.split-image .module-image .image-wrap { height: 100%; }

.split-image { position: relative; overflow: hidden; }
.split-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(0.1) brightness(0.88); transition: transform 8s ease;
}
.split-image:hover img { transform: scale(1.04); }
.img-badge {
  position: absolute; bottom: 2rem; left: 2rem;
  background: var(--gold); color: var(--forest);
  padding: 0.5rem 1rem; font-family: var(--fw-body);
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
}

/* ── CARDS ── */
.card {
  background: var(--parchment);
  border-left: 3px solid var(--gold);
  padding: 2rem; transition: box-shadow 0.25s;
}
.card:hover { box-shadow: var(--shadow-md); }
.card-title {
  font-family: var(--fw-display); font-size: 1.2rem; font-weight: 500;
  color: var(--forest); margin-bottom: 0.5rem;
}
.card-text { font-family: var(--fw-body); font-size: 0.85rem; line-height: 1.8; color: var(--stone); }

/* ── INFO GRID ── */
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--cream-dark); }
.info-cell { background: var(--parchment); padding: 2rem 1.75rem; }
.info-cell-icon { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--gold); }
.info-cell-title {
  font-family: var(--fw-display); font-size: 1.15rem; font-weight: 500;
  color: var(--forest); margin-bottom: 0.5rem;
}
.info-cell-text { font-family: var(--fw-body); font-size: 0.84rem; line-height: 1.8; color: var(--stone); }

/* ── CITY GRID ── */
.city-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--cream-dark); 
max-width: 1004px; margin: 0 auto; }
.city-cell { background: var(--parchment); padding: 1.75rem; }
.city-cell-name {
  font-family: var(--fw-display); font-size: 1.15rem; font-weight: 500;
  color: var(--forest); margin-bottom: 0.2rem;
}
.city-cell-county {
  font-family: var(--fw-body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.65rem;
}
.city-cell-text { font-family: var(--fw-body); font-size: 0.84rem; line-height: 1.8; color: var(--stone); margin: 0; }

/* ── PROCESS STEPS ── */
.steps-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.steps-row::before {
  content: ''; position: absolute; top: 2rem; left: 12%; right: 12%;
  height: 1px; background: linear-gradient(to right, transparent, rgba(184,148,42,0.4), transparent);
}
.step { text-align: center; padding: 0 1.5rem; }
.step-num {
  width: 64px; height: 64px; border: 1px solid rgba(184,148,42,0.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; font-family: var(--fw-display); font-size: 1.4rem; font-weight: 600;
  color: var(--gold-lt); position: relative; z-index: 1; background: var(--forest);
}
.step-title {
  font-family: var(--fw-display); font-size: 1.2rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.65rem;
}
.step-text { font-family: var(--fw-body); font-size: 0.8rem; line-height: 1.8; color: rgba(245,240,230,0.55); }

/* ── MONUMENT TYPE CARDS ── */
.type-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--cream-dark); }
.type-card { background: var(--parchment); overflow: hidden; display: block; transition: box-shadow 0.25s; }
.type-card:hover { box-shadow: var(--shadow-md); }
.type-card-img { width: 100%; height: 180px; object-fit: cover; filter: sepia(0.08) brightness(0.85); transition: transform 0.5s; }
.type-card:hover .type-card-img { transform: scale(1.04); }
.type-card-body { padding: 1.25rem 1.5rem; }
.type-card-num {
  font-family: var(--fw-display); font-size: 0.85rem; font-weight: 600;
  color: var(--gold); margin-bottom: 0.3rem;
}
.type-card-name {
  font-family: var(--fw-display); font-size: 1.15rem; font-weight: 500;
  color: var(--forest); margin-bottom: 0.4rem;
}
.type-card-desc { font-family: var(--fw-body); font-size: 0.82rem; line-height: 1.75; color: var(--stone); margin: 0; }
.monumentStyles-title { margin-bottom:3rem; }
.monumentStyles-title h2 { margin: 0; }
.monumentStyles-title p { margin: 0; }
.monumentStyles-text { display:flex;align-items:flex-end;justify-content:space-between;flex-wrap:wrap;gap:1rem; }

/* ── ONLINE SHOP BOX ── */
.shop-box {
  background: var(--forest); padding: 2.5rem 3rem;
  display: flex; flex-direction: column;
  gap: 2rem; flex-wrap: wrap; margin-top: 3rem;
  border-left: 4px solid var(--gold);
}
.shop-box-text h3 {
  font-family: var(--fw-display); font-size: 1.5rem; font-weight: 400;
  color: var(--cream); margin-bottom: 0.4rem;
}
.shop-box-text p { font-family: var(--fw-body); font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.75; 
margin: 0; }

/* ── DETAIL STEP (How to Order) ── */
.detail-step .tb_text_wrap {
  display: grid; grid-template-columns: 90px 1fr;
  gap: 2.5rem; padding: 2.5rem 0;
  border-bottom: 1px solid rgba(28,56,41,0.1); align-items: start;
}
.detail-step:last-child { border-bottom: none; }
.detail-step-num {
  font-family: var(--fw-display); font-size: 4rem; font-weight: 600;
  color: var(--gold-pale); line-height: 1; text-align: right;
}
.detail-step-num span { font-size: 1rem; color: var(--gold); display: block; line-height: 1; margin-bottom: 0.2rem; }
.detail-step-title {
  font-family: var(--fw-display); font-size: 1.6rem; font-weight: 500;
  color: var(--forest); margin-bottom: 0.75rem;
}
.detail-step-body { font-family: var(--fw-body); font-size: 0.88rem; line-height: 1.85; color: var(--stone); }
.detail-step-body p:last-child { margin-bottom: 0; }
.detail-step-body ul { padding-left: 1.2rem; margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.4rem; }
.detail-step-body li { font-size: 0.86rem; color: var(--stone); }


/* ── FAQ / ACCORDION ── */
.faq-section { max-width: 670px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(28,56,41,0.1);
  overflow: hidden;
}
.faq-item .faq-trigger {
  width: 100%; text-align: left; padding: 1.4rem 0;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--fw-display); font-size: 1.15rem; font-weight: 500;
  color: var(--forest); transition: color 0.2s;
}
.faq-item .faq-trigger:hover { color: var(--gold); background: transparent; box-shadow: none; }
.faq-arrow { font-size: 1rem; color: var(--gold); transition: transform 0.25s; flex-shrink: 0; }
.faq-trigger.open .faq-arrow { transform: rotate(45deg); }
.faq-body {
  display: none; padding: 0 0 1.4rem;
  font-family: var(--fw-body); font-size: 0.88rem; line-height: 1.85; color: var(--stone);
}
.faq-body.open { display: block; }
.faq-body a { color: var(--forest); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }

/* ── CEMETERY TABLE ── */
.cem-filter {
  background: var(--parchment); padding: 1.25rem 1.75rem;
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  margin-bottom: 2.5rem; border-left: 3px solid var(--gold);
  max-width: 800px;
  margin: 0 auto;
}
.cem-filter label { font-family: var(--fw-body); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); }
.cem-filter select, .cem-filter input {
  padding: 0.55rem 0.9rem; border: 1px solid rgba(28,56,41,0.2);
  background-color: var(--cream); font-family: var(--fw-body); font-size: 0.85rem;
  color: var(--forest); cursor: pointer; outline: none; min-width: 100px;
}
.cem-filter select:focus, .cem-filter input:focus { border-color: var(--gold); }
.cem-filter input { flex: 1; min-width: 200px; }
.state-group { margin-bottom: 4rem; }
.state-heading {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem; padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold);
}
.state-heading h2 {
  font-family: var(--fw-display); font-size: 2rem; font-weight: 400; color: var(--forest);
}
.state-badge {
  font-family: var(--fw-body); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--gold-pale); color: var(--forest);
  padding: 0.3rem 0.9rem;
}
.county-group { margin-bottom: 2.5rem; }
.county-label {
  font-family: var(--fw-body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  padding: 0.5rem 0; margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(28,56,41,0.1);
}
.cem-table { width: 100%; border-collapse: collapse; }
.cem-table td { padding: 0.75rem 1rem; font-size: 0.87rem; border-bottom: 1px solid rgba(28,56,41,0.06); color: var(--stone); }
.cem-table td:first-child { font-family: var(--fw-display); font-size: 1rem; font-weight: 500; color: var(--forest); }
.cem-table td:last-child { font-size: 0.78rem; opacity: 0.6; }
.cem-table tr:hover td { background: rgba(184,148,42,0.05); }
.not-listed {
  background: var(--forest); padding: 3rem;
  text-align: center; margin-top: 3rem; border-left: 4px solid var(--gold);
}
.not-listed h3 {
  font-family: var(--fw-display); font-size: 1.5rem; font-weight: 400;
  color: var(--cream); margin-bottom: 0.75rem;
}
.not-listed p { font-family: var(--fw-body); font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 1.5rem; }
.seeCemetery .not-listed { max-width: 900px; margin: 0 auto; }
.seeCemetery .btn-outline { color: var(--gold); }

/* ── APPOINTMENT FORM ── */
.appt-layout { /*display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start;*/ }

.form-card nf-fields-wrap { display: grid; grid-template-columns: 1fr 1fr; column-gap: 1.5rem; }
.form-card nf-fields-wrap nf-field:nth-last-child(-n+8) { grid-column: span 2; } 
.form-card .nf-field-container { margin-bottom: 1.5rem; }

.form-card { background: var(--parchment); overflow: hidden; }
.form-card .nf-before-form-content { display: none; }
.form-card-header { background: var(--forest); padding: 2.5rem 2.5rem 2rem; border-bottom: 2px solid var(--gold); }
.form-card-header h2 {
  font-family: var(--fw-display); font-size: 2rem; font-weight: 400;
  color: var(--cream); margin-bottom: 0.4rem;
}
.form-card-header p { font-family: var(--fw-body); font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin: 0; }
.form-card-body { padding: 2.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-card .label-above .nf-field-label { margin-bottom: 0; }
.form-card .nf-field-label .nf-label-span,
.form-card .nf-field-label label,
.form-label {
  display: block; font-family: var(--fw-body); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.5rem;
}
.form-card nf-fields-wrap nf-field input:read-write,
.form-card nf-fields-wrap nf-field select,
.form-card nf-fields-wrap nf-field textarea,
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1px solid rgba(28,56,41,0.2); background-color: var(--cream);
  font-family: var(--fw-body); font-size: 0.9rem; color: var(--forest);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none; appearance: none; border-radius: 0;
}

.form-card nf-fields-wrap nf-field input:read-write:focus,
.form-card nf-fields-wrap nf-field select:focus,
.form-card nf-fields-wrap nf-field textarea:focus,
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,148,42,0.12);
}
.form-card nf-fields-wrap nf-field select { cursor: pointer; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23A09A94' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 30px; 
min-width: 70px; }
.form-input.error, .form-select.error { border-color: var(--error); }
.form-card nf-fields-wrap nf-field textarea,
.form-textarea { resize: vertical; min-height: 120px; height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field-error { font-size: 0.72rem; color: var(--error); margin-top: 0.3rem; display: none; }
.field-error.show { display: block; }
.req { color: var(--error); }
.form-card .nf-field-element .time-wrap { padding: 0; }
.form-card .date-wrap .nf-field-element { display: flex; gap: 4px; }
.form-card .nf-after-field .nf-error-msg { font-size: 13px; }
.form-card .nf-after-form-content { font-size: 14px; margin: -10px 0 0; }
.field-wrap .pikaday__container input.datepicker { background:url(../images/calendar.png) right 15px center no-repeat;
background-size: 16px auto;  }

/* Appt type selector */
.appt-type-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem; margin-bottom: 2rem; }
.appt-opt { border: 1px solid rgba(28,56,41,0.2); padding: 1rem 0.75rem; text-align: center; cursor: pointer; transition: all 0.2s; background: var(--cream); user-select: none; }
.appt-opt input[type=radio] { display: none; }
.appt-opt.selected { border-color: var(--gold); background: rgba(184,148,42,0.06); box-shadow: 0 0 0 2px rgba(184,148,42,0.15); }
.appt-opt-icon { font-size: 1.4rem; display: block; margin-bottom: 0.4rem; }
.appt-opt-label { font-family: var(--fw-body); font-size: 0.75rem; font-weight: 600; color: var(--forest); display: block; }
.appt-opt-sub { font-size: 0.65rem; color: var(--stone); display: block; margin-top: 0.15rem; }
/* Checkbox grid */
.check-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.5rem; margin-top: 0.5rem; }
.check-opt {
  display: flex; align-items: center; gap: 0.6rem; padding: 0.6rem 0.8rem;
  border: 1px solid rgba(28,56,41,0.15); cursor: pointer; font-family: var(--fw-body);
  font-size: 0.82rem; color: var(--stone); transition: all 0.15s; background: var(--cream); user-select: none;
}
.check-opt input { accent-color: var(--gold); cursor: pointer; }
.check-opt:hover { border-color: var(--gold); background: rgba(184,148,42,0.05); }
/* Success */
.form-success { display: none; text-align: center; padding: 3rem 2rem; }
.success-icon {
  width: 72px; height: 72px; background: rgba(184,148,42,0.1);
  border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 1.5rem;
}
.form-success h3 { font-family: var(--fw-display); font-size: 1.8rem; font-weight: 400; color: var(--forest); margin-bottom: 0.75rem; }
.form-success p { font-family: var(--fw-body); font-size: 0.88rem; color: var(--stone); line-height: 1.8; margin-bottom: 1.5rem; }
/* Submit */
.form-card nf-fields-wrap .field-wrap input[type="submit"],
.submit-btn { 
display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--forest); padding: 1rem 2.2rem; font-family: var(--fw-body);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: all 0.25s var(--ease);

  width: 100%; margin-top: 0.5rem; justify-content: center; font-size: 0.78rem; padding: 1.1rem; border-radius: 0; 
color: var(--forest); 

}
/* Sidebar */
.appt-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card { background: var(--parchment); padding: 1.75rem; }
.sidebar-card-title {
  font-family: var(--fw-display); font-size: 1.1rem; font-weight: 500;
  color: var(--forest); margin-bottom: 1.2rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(28,56,41,0.1);
  display: flex; align-items: center; gap: 0.6rem;
}
.contact-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.85rem 0; border-bottom: 1px solid rgba(28,56,41,0.07); }
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-item-icon { font-size: 1rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-item-label {
  font-family: var(--fw-body); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.15rem;
}
.contact-item-value {
  font-family: var(--fw-display); font-size: 1rem; font-weight: 500; color: var(--forest);
}
.contact-item-value a { color: var(--forest); }
.contact-item-value a:hover { color: var(--gold); }
.hours-table { display: grid; grid-template-columns: 1fr auto; gap: 0.35rem 1rem; font-size: 0.84rem; }
.hours-day { color: var(--stone); }
.hours-time { color: var(--forest); font-weight: 500; text-align: right; }
.hours-closed { color: var(--stone); opacity: 0.5; font-style: italic; text-align: right; }
.hours-today { color: var(--gold); font-weight: 600; }
.expect-list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin: 0; }
.expect-item { display: flex; gap: 0.75rem; align-items: flex-start; font-family: var(--fw-body); font-size: 0.84rem; color: var(--stone); line-height: 1.6; margin: 0; }
.expect-check { width: 18px; height: 18px; background: var(--gold); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; color: var(--forest); margin-top: 2px; }
.quick-call { background: var(--forest); padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.5rem; border-left: 4px solid var(--gold); }
.quick-call p { font-family: var(--fw-body); font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin: 0; }
.quick-call strong { display: block; color: var(--cream); margin-bottom: 0.2rem; font-size: 0.9rem; }

/* ── TESTIMONIAL STRIP ── */
.testi-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--cream-dark); }
/* ── CTA BANNER ── */
.cta-banner {
  background: var(--forest); padding: 5rem 0;
  gap: 5rem; align-items: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale), var(--gold));
}
.cta-banner h2 {
  font-family: var(--fw-display); font-size: clamp(2rem,4vw,3.5rem);
  font-weight: 300; color: var(--cream); line-height: 1.1; margin-bottom: 1.2rem;
}
.cta-banner h2 em { font-style: italic; color: var(--gold-lt); }
.cta-banner p { font-family: var(--fw-body); font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.85; }
.cta-banner-right { display: flex; flex-direction: column; gap: 1rem; }
.cta-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem; background: rgba(255,255,255,0.05);
  border-left: 2px solid var(--gold);
}
.cta-row-icon { font-size: 1.1rem; color: var(--gold); flex-shrink: 0; }
.cta-row-label {
  font-family: var(--fw-body); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.1rem;
}
.cta-row-value { font-family: var(--fw-display); font-size: 1rem; font-weight: 500; color: var(--cream); }
.cta-row-value a { color: var(--cream); transition: color 0.2s; }
.cta-row-value a:hover { color: var(--gold-lt); }

/* ── FOOTER ── */
.site-footer { background: var(--ink); color: var(--cream); padding: 5rem 3rem 2rem; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem;
}
.footer-brand-name {
  font-family: var(--fw-display); font-size: 1.8rem; font-weight: 300;
  color: var(--cream); font-style: italic; margin-bottom: 0.3rem;
}
.footer-brand-est {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 1.2rem;
}
.footer-brand-p { font-size: 0.83rem; line-height: 1.85; color: rgba(255,255,255,0.45); max-width: 270px; }
.footer-col h4 {
  font-family: var(--fw-body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-lt);
  margin-bottom: 1.2rem; padding-bottom: 0.6rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a { font-size: 0.83rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cream); }
/*.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; color: rgba(255,255,255,0.25); flex-wrap: wrap; gap: 0.5rem;
}*/
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── ABOUT PAGE ── */
.mission-banner { background: var(--forest); padding: 5rem 3rem; text-align: center; position: relative; overflow: hidden; }
.mission-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-pale), var(--gold));
}
.mission-quote {
  font-family: var(--fw-display); font-size: clamp(1.5rem,3vw,2.5rem);
  font-weight: 300; font-style: italic; color: var(--cream); max-width: 800px;
  margin: 0 auto; line-height: 1.4;
}
.mission-attr {
  font-family: var(--fw-body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-lt); margin-top: 1.5rem; margin-bottom: 0;
}
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--cream-dark);
max-width: 1004px; margin: 0 auto; }
.value-cell { background: var(--parchment); padding: 2.2rem; border-top: 3px solid var(--gold); }
.value-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.value-name {
  font-family: var(--fw-display); font-size: 1.2rem; font-weight: 500;
  color: var(--forest); margin-bottom: 0.5rem;
}
.value-desc { font-family: var(--fw-body); font-size: 0.84rem; line-height: 1.8; color: var(--stone); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--cream-dark); max-width: 1004px;
margin: 0 auto; }
.team-card { background: var(--parchment); padding: 2.5rem 2rem; text-align: center; }
.team-img .image-wrap img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 1.2rem; border: 3px solid var(--gold-pale); filter: sepia(0.1); }
.team-name { font-family: var(--fw-display); font-size: 1.2rem; font-weight: 500; color: var(--forest); }
.team-role {
  font-family: var(--fw-body); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-top: 0.3rem; margin-bottom: 0.85rem;
}
.team-bio { font-family: var(--fw-body); font-size: 0.84rem; line-height: 1.8; color: var(--stone); margin: 0; }

/* ── STAT BAR ── */
.stat-bar { display: grid; grid-template-columns: repeat(4,1fr); background: var(--forest); }
.stat-cell { padding: 2.5rem 2rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: var(--fw-display); font-size: 3rem; font-weight: 600;
  color: var(--gold-lt); line-height: 1; margin-bottom: 0.4rem;
}
.stat-lbl { font-family: var(--fw-body); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* ── TICKER ── */
.ticker-strip { background: var(--forest); padding: 0.9rem 0; overflow: hidden; border-top: 1px solid rgba(184,148,42,0.2); border-bottom: 1px solid rgba(184,148,42,0.2); }
.ticker-inner { display: flex; width: max-content; animation: ticker 30s linear infinite; }
.ticker-item { display: flex; align-items: center; gap: 2rem; padding: 0 3rem; white-space: nowrap; font-family: var(--fw-body); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.ticker-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

.orderingGuide-btn { text-align:center;margin-top:4rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp      { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
@keyframes ticker      { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes scrollPulse { 0%,100%{opacity:.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }

/* ── RESPONSIVE ── */
@media (min-width:768px) {
  .ordering-steps-section .row_inner { width: min(770px,100%); }
}
@media (max-width:1024px) {  
  /*.footer-top { grid-template-columns: 1fr 1fr; }*/
  .cta-banner  { grid-template-columns: 1fr; gap: 3rem; }
  .split       { grid-template-columns: 1fr; }
  .split-image { min-height: 50vw; order: -1; }
}
@media (max-width:900px) {
  .nav-links   { display: none; }
  .nav-toggle  { display: flex; }
  .top-nav     { padding: 0 1.5rem; }
  .steps-row   { grid-template-columns: 1fr 1fr; }
  .steps-row::before { display: none; }
  .info-grid   { grid-template-columns: 1fr 1fr; }
  .city-grid   { grid-template-columns: 1fr 1fr; }
  .type-grid   { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid   { grid-template-columns: 1fr 1fr; }
  .testi-strip { grid-template-columns: 1fr; }
  .stat-bar    { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
}
@media (max-width:768px) {
  .appt-layout { grid-template-columns: 1fr; }
  .appt-sidebar { /*order: -1; display: grid; grid-template-columns: 1fr;*/ margin-top: 20px; }
  .appt-sidebar .quick-call { margin-top: 0; }
  .form-card-body { padding: 24px; }
  .form-card .nf-field-container { margin-bottom: 18px; }
  .form-card-header { padding: 24px; }
  .faq-item .faq-trigger { padding: 1rem 0; }
}
@media (max-width:600px) {
  :root { --nav-h: 64px; }
  /*.container   { padding: 0 1.25rem; }*/
  .section     { padding: 4rem 1.25rem; }
  .section-sm  { padding: 3rem 1.25rem; }
  .page-hero-content { padding: 3rem 1.25rem; }
  .split-content { padding: 3rem 1.25rem; }
  .info-grid, .city-grid, .type-grid, .values-grid, .team-grid, .steps-row { grid-template-columns: 1fr; }
  .stat-bar    { grid-template-columns: 1fr 1fr; }
  .footer-top  { grid-template-columns: 1fr; gap: 2rem; }
  .form-row    { grid-template-columns: 1fr; }
  .appt-type-row { grid-template-columns: 1fr; }
  .check-grid  { grid-template-columns: 1fr; }
  .appt-sidebar { grid-template-columns: 1fr; }
  .monuments-header { flex-direction: column; gap: 1rem; }
  .quick-call  { flex-direction: column; }
  .shop-box    { flex-direction: column; }
  .detail-step { grid-template-columns: 60px 1fr; gap: 1.25rem; }
  .detail-step .tb_text_wrap { grid-template-columns: 60px 1fr; gap: 1.25rem; }

  .form-card nf-fields-wrap { grid-template-columns: 1fr; }
  .form-card nf-fields-wrap nf-field:nth-last-child(-n+8) { grid-column: span 1; }
}
@media (max-width:479px) {
  .form-card .date-wrap .nf-field-element { flex-wrap: wrap; }
  .form-card nf-fields-wrap nf-field textarea, .form-textarea { min-height: 90px; height: 90px; }
}

/*new home page css*/
.home-banner .module-image .image-title { font-size: 50px; }
.home-banner .module.image-full-overlay .image-content { font-size: 18px; }
.sidemenu-off #main-nav-wrap { margin: 0; }
.sidemenu-off .navbar-wrapper { justify-content: flex-end; }
.home-banner .banner-btn { margin-top: 24px; display: flex; flex-wrap: wrap; gap:10px; justify-content: center; }
.home-banner .banner-btn a { background: #4fbfa9; color: #fff; font-size: 16px; }
.home-banner .banner-btn a:hover { background: #38ab96;  }
.home-banner .module-image .image-wrap img { min-height: 440px; object-fit: cover; }
.ui.builder_button { border-radius: 5px; }
.transparent-header #headerwrap.fixed-header { background: rgba(15,31,22,0.97);
  box-shadow: 0 1px 0 rgba(184,148,42,0.2); /*backdrop-filter: blur(12px);*/ }
#main-nav .highlight-link > a { border-radius: 5px; padding: 7px 18px; }
#main-nav a { padding: 4px 10px; font-family: var(--fw-body);
  font-weight: 400; font-size: 14px; }
#header { display: flex; justify-content: space-between; align-items: center; }
#header:after { display: none; }

#footerwrap .module-icon-item em svg { color:var(--gold-lt);  }
footer .module-icon em, 
footer .module-icon img { padding: 4px 5px; }
#footerwrap .module-icon { margin-bottom: 12px; }
footer .widget li { padding: 3px 0; list-style: none; }
#footer .footer-widgets { color: rgba(255,255,255,0.51); }
#footerwrap { padding: 60px 0 0; }
.monuments-section h3 { color: #fff; }
.monuments-section h4 { color: #fff; font-size: 22px; margin-bottom: 15px; }
.footer-copyright { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.1); color: #fff; }
#footerwrap .footer-text { padding-top: 0; }

.footer-horizontal-left .footer-left-wrap, 
.footer-left-col .main-col { width: 35%; }
.footer-horizontal-left .footer-right-wrap, 
.footer-left-col .section-col { width: 65%; margin: 0; padding-left: 20px; }
.footer-left-col .section-col .col4-2 { padding-left: 50px; }
.footer-logo-wrapper { max-width: 350px;  }
.monuments-section .home-cat-left { display: flex; flex-direction: column; justify-content: flex-end; text-align: left; }
.monuments-section .home-cat-top { display: flex; flex-direction: column; justify-content: flex-end; }
.monuments-section .home-cat-bottom { display: flex; flex-direction: column; justify-content: flex-end; }
.monuments-section .module.module-buttons { text-align: left !important; }

.home-cat-section h2 { margin-bottom: 0; }
.home-cat-row .module_column { padding-bottom: 35px; }
.home-cat-row .module-image.image-top .image-content { padding-top: 10px; }
.home-cat-row h4 { font-size: 18px; margin-bottom: 15px; }
footer .module-icon-item { word-break: break-word; }
.consultation-section .module .ui.builder_button { background: #4fbfa9; color: #fff; min-width: 150px; justify-content: center; 
margin: 2px; }
.module-buttons-item + .module-buttons-item { margin-left: 0; }
.consultation-section .module .ui.builder_button:hover { background: #34a690; }
#main-nav .highlight-link > a { font-weight: 600; color: var(--forest) !important; }
#main-nav .highlight-link:last-child > a:hover { background: var(--gold-lt); color: var(--forest); }
.contact-form-section nf-fields-wrap { display: flex; flex-wrap: wrap; margin: 0 -10px; }
.contact-form-section nf-fields-wrap nf-field { width: 100%; padding: 0 10px; }
.contact-form-section nf-fields-wrap nf-field:nth-child(1),
.contact-form-section nf-fields-wrap nf-field:nth-child(2),
.contact-form-section nf-fields-wrap nf-field:nth-child(4),
.contact-form-section nf-fields-wrap nf-field:nth-child(5),
.contact-form-section nf-fields-wrap nf-field:nth-child(6),
.contact-form-section nf-fields-wrap nf-field:nth-child(7) { width: 50%; }
.contact-form-section .contact-form-box { max-width: 1000px;
  margin: 0 auto; padding: 24px; border: 3px solid #ddd; border-radius: 20px; background: #fafafa;
  width: 100%; }
.contact-form-section .submit-container { margin-bottom: 0; }  
.memorial-form-box .submit-container { margin-bottom: 0; }  
.contact-form-section .nf-field-element .time-wrap { padding: 0px 2px; width: 33.3%; }
.contact-form-section .nf-field-label .nf-label-span, 
.contact-form-section .nf-field-label label { font-weight: 500; }
.contact-form-section .label-above .nf-field-label { margin-bottom: 4px; }
.contact-form-section .nf-field-element textarea { min-height: 150px; height: 150px; }
.contact-form-section input[type="submit"] { min-width: 150px; text-align: center; }
.contact-form-section .nf-after-field .nf-error-msg { font-size: 13px; }

.memorial-top-content ul { margin-left: 16px; }
.memorial-top-content li { margin-bottom: 6px; }
.memorial-top-content li p { margin-bottom: 0; }
.contact-form-section .memorial-form-box { max-width: 100%;
  margin: 0 auto; padding: 24px; border: 3px solid #ddd; border-radius: 20px; background: #fafafa;
  width: 100%; }

.memorial-form-box nf-fields-wrap nf-field:nth-child(1),
.memorial-form-box nf-fields-wrap nf-field:nth-child(2), 
.memorial-form-box nf-fields-wrap nf-field:nth-child(7), 
.memorial-form-box nf-fields-wrap nf-field:nth-child(8), 
.memorial-form-box nf-fields-wrap nf-field:nth-child(9) { width: 100%; }

.memorial-form-box nf-fields-wrap nf-field:nth-child(3),
.memorial-form-box nf-fields-wrap nf-field:nth-child(4), 
.memorial-form-box nf-fields-wrap nf-field:nth-child(5), 
.memorial-form-box nf-fields-wrap nf-field:nth-child(6) { width: 50%; }  
.memorial-form-box .list-radio-wrap .nf-field-element ul { display: flex; flex-wrap: wrap; gap:2px 12px; }
.memorial-form-box .list-radio-wrap .nf-field-element ul li { display: flex; min-width: 125px; }
.memorial-form-box .list-radio-wrap .nf-field-element li label { margin-left: 0; }
.contact-form-section .nf-before-form-content { margin-bottom: 12px; }

h1 { font-size: 4em; }
.point-list { margin-left: 16px; }
.point-list li::marker { color: #4fbfa9; }
.point-list li { margin-bottom: 10px; }
.point-list li p { margin-bottom: 0px; }

.country-laction ul { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr);
margin: 0; padding: 0; }
.country-laction ul li { display: flex; align-items: center; gap: 4px; }
.country-laction ul li img { width: 20px; opacity: 0.8; }

.cemetery-card { display: grid; grid-template-columns: repeat(3, 1fr); gap:20px; }
.cemetery-card .card {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s ease;    
}
.cemetery-card .card:hover {
    transform: translateY(-5px);
}
.cemetery-card .company {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}
.cemetery-card .info p {
    margin: 6px 0;
    font-size: 14px;
    color: #555;
}
.cemetery-card .info .label { font-weight: 600; }
.cemetery-list-section .foo-table .pagination { margin-bottom: 14px; margin-right: 8px; }
.cemetery-list-section .footable-filtering .dropdown-toggle:before { content: "Select field";
margin-right: 8px; color: #444; }
.cemetery-list-section .foo-table .form-group.footable-filtering-search .input-group-btn > button { display: inline-flex;
  align-items: center; line-height: 1; }
.cemetery-list-section input[type="checkbox"]::before { top: -4px; position: relative; left: -1px; }
.cemetery-list-section .foo-table ul.dropdown-menu.dropdown-menu-right li a:hover { box-shadow: none; }
.cemetery-list-section .footable .dropdown-menu > li > a { padding-bottom: 6px; }
.semantic_ui .ui.table thead .footable-header th { background: #dff1ee; }
.footable .btn-primary { border-color: #4fbfa9; background-color: #4fbfa9; }
.footable .btn-primary.active, 
.footable .btn-primary.focus, 
.footable .btn-primary:active, 
.footable .btn-primary:focus, 
.footable .btn-primary:hover, 
.footable .open > .dropdown-toggle.btn-primary { border-color: #34a690; background-color: #34a690; }

.footable .pagination > .active > a, 
.footable .pagination > .active > a:focus, 
.footable .pagination > .active > a:hover, 
.footable .pagination > .active > span, 
.footable .pagination > .active > span:focus, 
.footable .pagination > .active > span:hover { border-color: #34a690; background-color: #34a690; }
.footable .pagination > li > a, 
.footable .pagination > li > span { color: #34a690; }

#main-nav .menu-item-has-children > a { padding-right: 30px; }
#main-nav .toggle-on > a > .child-arrow { background: transparent; }
.menu-item.menu-item-has-children .child-arrow { display: block;top: 1px; margin: 0; right: 0; }

.cemetery-list-section .row_inner { max-width: min(1400px,100%); width: 100%; padding-left: 20px; padding-right: 20px; }
.type-grid .module-image.image-top .image-content { margin: 0; }

/***** responsive ******/

@media(max-width: 1260px){
.monuments-section { padding: 3rem 0; }
.testimonials-section { padding: 3rem 0; }
.process-section { padding: 3rem 0; }
.cta-section { padding: 4rem 0; }
.process-header { margin-bottom: 3rem; }
.testimonials-header { margin-bottom: 1rem; gap: 2rem; }
.ticker-item { padding: 0 1rem; }

.mission-banner { padding: 3rem 20PX; }
.section { padding: 3rem 0; }
.cta-banner { padding: 3rem 0; }

}

@media(max-width: 1100px){
.header-icons { top: 50%; }
#mobile-menu .module-icon em { color: #34a690 !important; padding-left: 0; }
#mobile-menu .row_inner { max-width: 100%; }
#mobile-menu .module-icon-item span { color: #333; font-size: 13px; margin-right: 0; }
#mobile-menu .textwidget p { font-size: 14px; margin-bottom: 0; }
.module-icon-item + .module-icon-item { margin-left: 0; }

.split-content { padding: 2rem 2rem; }
.stat-cell { padding: 1.5rem 1rem; }
.what-content { padding: 2rem 2rem; }

#main-nav li > .sub-menu { border: 0; }

}

@media(min-width: 1100px) and (max-width: 1279px){
#main-nav a { padding: 4px 6px; font-size: 14px; }	
#main-nav .highlight-link > a { padding: 6px 14px; }
#site-logo { max-width: 300px; }
body #site-logo a img { height: auto; }

}


@media(min-width: 1024px) {
body:not(.home)  .row_inner { width: min(1000px,100%); }
.home .row_inner { width: 100%; }
}
@media(min-width: 1150px) {
body:not(.home) .appt-layout .row_inner { width: min(1100px,100%); }

}
@media(min-width: 1024px) and (max-width: 1279px){
.home-banner .module-image .image-title { font-size: 40px; }
h2 { font-size: 32px; }
.monuments-section h3 { font-size: 24px !important; margin-bottom: 8px !important; }

.what-content { padding: 2rem 2rem; }
.hero-content { padding-bottom: 3rem; }
.hero-actions { margin-bottom: 3rem; }
.monument-card img { aspect-ratio: 3/3.5; }

}

@media(min-width: 769px) and (max-width: 1023px){
  .what-content { padding: 2rem 2rem; }
  .hero-content { padding-bottom: 3rem; }
  .hero-actions { margin-bottom: 3rem; }
  .monument-card img { aspect-ratio: 3/3.5; }
  .hero-sub { margin-bottom: 1.5rem; }
  .hero-headline { margin-bottom: 1rem; }
}

@media(min-width: 768px) and (max-width: 1023px){
.home-banner .module-image .image-title { font-size: 34px; }
h1 { font-size: 3em; }
h2 { font-size: 30px; }
.monuments-section h3 { font-size: 22px !important; margin-bottom: 8px !important; }
.monuments-section .ui.builder_button { font-size: 13px; }

.footer-horizontal-left .footer-left-wrap, 
.footer-left-col .main-col { width: 25%; }
.footer-horizontal-left .footer-right-wrap, 
.footer-left-col .section-col { width: 75%; margin: 0; padding-left: 20px; }
.footer-left-col .section-col .col4-2 { padding-left: 30px; }
.footer-logo-wrapper { max-width: 350px;  }
#footerwrap { padding: 40px 0 0; }
#footerwrap .footer-text { padding: 0; }

.country-laction ul { grid-template-columns: repeat(4, 1fr); }

.gmw-map { width: 100% !important; max-height: 400px; }

}

@media(max-width: 768px){
.what-content { padding: 3rem 2rem; }
.hero-content { padding-bottom: 3rem; }
.hero-actions { margin-bottom: 3rem; }
.monument-card img { aspect-ratio: 3/3.5; }
.hero-sub { margin-bottom: 1.5rem; }
.hero-headline { margin-bottom: 1rem; }
.cta-right { padding-top: 30px; gap: 1rem; }
.cta-section { padding: 3rem 0; }
.orderingGuide-btn { margin-top: 1rem; }
.testimonials-header { gap: 0; }
.testimonials-header p { padding-top: 0; }
.cta-banner-right { margin-top: 30px; }
.team-grid { grid-template-columns: 1fr; }
.values-grid { grid-template-columns: 1fr; }
.page-hero-content { padding: 3rem 0; }
.team-card { padding: 2rem 1rem; }
.value-cell { padding: 1.2rem 1.5rem; }
.city-grid { grid-template-columns: 1fr; }
.city-cell { padding: 24px; }
.detail-step .tb_text_wrap { padding: 24px 0; }
.monumentStyles-title { margin-bottom: 1.5rem; }
.shop-box { padding: 24px; }
.not-listed { padding: 24px; }
.state-group { margin-bottom: 0; }

}
@media(max-width: 767px){
.home-banner .module-image .image-title { font-size: 30px; }
h2 { font-size: 28px; }
.monuments-section h3 { font-size: 22px !important; margin-bottom: 8px !important; }
.monuments-section .ui.builder_button { font-size: 13px; }
.footer-horizontal-left .footer-left-wrap, 
.footer-left-col .main-col { width: 100%; }
.footer-horizontal-left .footer-right-wrap, 
.footer-left-col .section-col { width: 100%; margin: 0; padding-left: 0px; }
.footer-left-col .section-col .col4-2 { padding-left: 0px; }
.footer-logo-wrapper { max-width: 350px;  }
#footerwrap { padding: 40px 0 0; }
#footerwrap .footer-text { padding: 0; }
#site-logo { max-width: 240px; }
body #site-logo a img { height: auto; }
#footer .footer-widgets .row_inner { max-width: 100%; }
.footer-copyright { padding: 10px 15px; }
h1 { font-size: 2.6em; }
.country-laction ul { grid-template-columns: repeat(3, 1fr); }
.gmw-map { width: 100% !important; max-height: 400px; }

.contact-form-section .contact-form-box { border-radius: 10px; padding: 20px; }
.contact-form-section .memorial-form-box { border-radius: 10px; padding: 20px; }

}
@media(max-width: 600px){
  .monuments-grid {  --area: "col1 col2" "col3 col4" !important; gap: 12px; }
  .process-steps { grid-template-columns: repeat(1,1fr); }
}
@media(max-width: 576px){
.contact-form-section nf-fields-wrap nf-field:nth-child(1),
.contact-form-section nf-fields-wrap nf-field:nth-child(2),
.contact-form-section nf-fields-wrap nf-field:nth-child(4),
.contact-form-section nf-fields-wrap nf-field:nth-child(5),
.contact-form-section nf-fields-wrap nf-field:nth-child(6),
.contact-form-section nf-fields-wrap nf-field:nth-child(7),
.contact-form-section nf-fields-wrap nf-field:nth-child(8),
.contact-form-section nf-fields-wrap nf-field:nth-child(9) { width: 100%; }
.contact-form-section .nf-field-element textarea { min-height: 120px; height: 120px; }
h2 { font-size: 24px; }
.country-laction ul { grid-template-columns: repeat(2, 1fr); }
.contact-form-section .nf-field-container { margin-bottom: 18px; }

.memorial-form-box nf-fields-wrap nf-field:nth-child(3),
.memorial-form-box nf-fields-wrap nf-field:nth-child(4), 
.memorial-form-box nf-fields-wrap nf-field:nth-child(5), 
.memorial-form-box nf-fields-wrap nf-field:nth-child(6) { width: 100%; } 

}
@media(max-width: 479px){
.consultation-section .module .ui.builder_button { margin-bottom: 5px; }	

}
