/* VARIABLES & RESET */
:root {
  --bg-main: #FAF8F5;
  --bg-card: #FFFFFF;
  --bg-dark: #232527;
  --bg-topbar: #a59d93;
  --text-dark: #2B2D2F;
  --text-muted: #5A6065;
  --accent-gold: #C29B38;
  --accent-gold-hover: #404040;
  --accent-sage: #5F7A6A;
  --border-light: #E8E3DA;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-hand: 'Caveat', cursive;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-gold-hover);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* BUTTONS & BADGES */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
  border: none;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-hero-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

.badge {
  display: inline-block;
  background-color: #F0EAD8;
  color: #7A5F1C;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-badge {
  background-color: rgba(194, 155, 56, 0.25);
  color: #f1d382;
  border: 1px solid rgba(194, 155, 56, 0.4);
}

/* TOP BAR */
.top-bar {
  background-color: var(--bg-topbar);
  color: #ffffff;
  font-size: 0.85rem;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar h1 {
  font-family: var(--font-sans);
  font-size: .85rem;
  line-height: 1.0;
  color: #ffffff;
  font-weight:400;
}
.top-bar a {
  color: #ffffff;
}

.top-contacts {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Logo container styling */
.logo {
  display: flex;
  align-items: center;
  gap: 12px; /* Space between the image and the text */
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
}

/* Logo text highlight */
.logo em {
  font-style: normal;
  color: var(--accent-gold);
}

/* Logo image size control */
.logo-img {
  height: 50px; /* Adjust height to fit your navigation bar */
  width: auto;  /* Keeps image proportions correct */
  object-fit: contain;
}

/* NAVBAR */
.navbar {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}



.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}

/* HERO SECTION WITH SCENIC BACKGROUND */
.hero {
  position: relative;
  padding: 100px 0;
  background: url('../images/mainheaderbackground.jpg') center center / cover no-repeat;
  color: #ffffff;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 30, 0.82) 0%, rgba(28, 20, 16, 0.72) 100%);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
}

.highlight {
  color: #f3ce70;
  font-style: italic;
}

.hero-sub {
  font-size: 1.15rem;
  color: #e2e8f0;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.card-header-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.hero-card h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.hero-card p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-tags span {
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #f1f5f9;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* SERVICES SECTION */
.services-section {
  padding: 80px 0;
  background-color: #F4EFEA;
}

.section-title {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px auto;
}

.section-title h2 {
  font-family: var(--font-serif);
  /* Minimum 1.5rem on small phones, scales fluidly, up to 2.2rem on desktop */
  font-size: clamp(1.5rem, 5vw, 2.2rem); 
  margin-bottom: 10px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background-color: var(--bg-card);
  padding: 32px;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.highlight-card {
  border: 2px solid var(--accent-gold);
  background-color: #FFFDF9;
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
}

.accent-header {
  margin-bottom: 12px; /* Space below the whole heading block */
}

.accent-header::after {
  content: "";
  display: block; /* Forces the flourish onto its own line below the text */
  margin-top: 8px; /* Space between the text and the flourish */
  width: 120px;
  height: 26px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' fill='none' stroke='%23C29B38' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M 10 10 C 25 2, 35 18, 50 10 C 65 2, 75 18, 90 10'/%3E%3Ccircle cx='50' cy='10' r='2' fill='%23C29B38'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
/* ABOUT SECTION */
.about-section {
  padding: 90px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5vw, 2.2rem); 
  margin-bottom: 18px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-signature {
  font-family: var(--font-hand);
  font-size: 2.2rem;
  color: var(--accent-gold);
  margin-top: 20px;
}


/* Option D: Warm, classic fluid handwriting */
.signature-text {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem !important;
  font-weight: 600;
  color: var(--accent-gold) !important;
}

.quote-card {
  background-color: var(--bg-dark);
  color: #ffffff;
  padding: 40px;
  border-radius: 16px;
  position: relative;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--accent-gold);
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.3;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.quote-author {
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: right;
}

/* PROCESS SECTION */
.process-section {
  padding: 80px 0;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step {
  text-align: center;
  padding: 20px;
}

.step-num {
  width: 48px;
  height: 48px;
  background-color: #F0EAD8;
  color: var(--accent-gold);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.step h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* QUOTES SECTION */
.quotes-section {
  padding: 60px 0;
  background-color: var(--bg-main);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mini-quote {
  background-color: var(--bg-card);
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.mini-quote p {
  font-family: var(--font-sans);
  font-style: normal;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight:300;
}

.mini-quote span {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 600;
}

/* CONTACT SECTION */
.contact-section {
  padding: 90px 0;
}

.contact-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.contact-header p {
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.info-icon {
  font-size: 1.5rem;
}

.info-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.info-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-form .form-group {
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background-color: var(--bg-main);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.full-width {
  width: 100%;
}

/* FOOTER */
.footer {
  background-color: var(--bg-dark);
  color: #9ca3af;
  padding: 40px 0 24px 0;
  font-size: 0.85rem;
}

.footer-land {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 24px auto;
  line-height: 1.6;
  padding-bottom: 24px;
  border-bottom: 1px solid #374151;
}

.footer-bottom {
  text-align: center;
}


.footer-socials {
  margin-top: 20px;
  text-align: center;
}

/* Header styled in gold to pop on dark backgrounds */
.footer-socials h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--accent-gold, #e2c068);
  margin-bottom: 12px;
}

.social-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.social-links-list a {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

/* Vector icon sizing and currentColor inheritance */
.social-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Warm gold hover effect */
.social-links-list a:hover {
  color: var(--accent-gold, #e2c068);
  opacity: 1;
  transform: translateY(-2px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 850px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

/* Hide top bar on mobile screens to save vertical space */

  .top-bar {
    display: none !important;
  }


/* UPDATED GRID RULES FOR MOBILE */
.services-grid,
.quote-grid,  .hero-grid,
  .about-grid,
  .contact-grid  {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 28px;
  width: 100%;
}

/* FORCE LONG EMAILS AND LINKS TO WRAP ON MOBILE */
.info-item p,
.info-item a,
.contact-info a {
  word-break: break-word;
  overflow-wrap: anywhere;
  display: inline-block;
  max-width: 100%;
}

/* MAILCHIMP NEWSLETTER FORM FIX */
#mc_embed_signup {
  width: 100%;
  max-width: 100%;
}

#mc_embed_signup input[type="email"] {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-card);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .top-bar {
    justify-content: center;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .contact-card {
    padding: 28px;
  }
  

}