	
	
	/* ============================= */
/* FONT STACKS */
/* ============================= */

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #333;
   margin: 0;
  padding: 0;
}

/* Headings echo the logo */
h1, h2, h3 {
  font-family: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  letter-spacing: 0.02em;
}

/* Subtle refinement */
h2 {
  margin-top: 2.5rem;
}

h3 {
  margin-top: 1.8rem;
}

.contact-section {
  max-width: 600px;
  margin: 2em auto;
  background: #fff;
  padding: 2em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.contact-section h2 {
  margin-top: 0;
}

form label {
  display: block;
  margin-top: 1em;
}
form input,
form textarea {
  width: 100%;
  padding: 0.75em;
  margin-top: 0.5em;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}




/* ============================= */
/* HEADER BACKGROUND */
/* ============================= */

header {
  background-image: 
  linear-gradient(
  rgba(247, 242, 232, 0.5),
  rgba(247, 242, 232, 0.5)
),

    url('../images/hd-bg.jpg');
  background-size: cover;
  background-position: center;
  color: #2f4f4a;
  padding: 1.75rem 1rem;
  text-align: center;
  border-bottom: 2px solid #6eb19d;
}






/* Header text spacing */

header h1 {
  font-size: clamp(2.1rem, 3.5vw, 2.4rem);
  margin-bottom: 0.4rem;
}

header h1 {
  color: #2e3f3c; /* softened charcoal-teal */
}
header p {
  color: #2f4f4a;
  
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

header p {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  margin-top: 0;
  opacity: 0.9;
}


header p {
  margin-top: 0;
  font-size: 1rem;
  opacity: 0.75;
}

	  
	
    .section {
      padding: 2rem;
      max-width: 960px;
      margin: auto;
    }
    .split {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
    }
    .split > div {
      flex: 1;
      min-width: 280px;
    }
    footer {
      background: #eee;
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
      color: #666;
    }
	.main-nav {
  display: flex;
  justify-content: center;
  gap: 2em;
  padding: 1.2em 0;
  font-size: 0.95rem;
}

.main-nav a {
  text-decoration: none;
  color: #3a3a3a;
}

.main-nav a:hover {
  text-decoration: underline;
}

  .location-card::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  margin-bottom: 0.75em;
  background: #c7bfa8; /* warm antique tone */
}
.location-card {
  background: #fbf7ef;
  border: 1px solid #e3dac8;
  border-left: 5px solid #3e5f7c;

  padding: 1.2em 1.4em;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.location-card .loc-addr{
  color: #3e5f7c; /* or bouquet green */
}

    img {
      max-width: 100%;
      border-radius: 6px;
    }
  
.wrapper-scroll {
  background: url('images/1parchment-bg.jpg');
  background-repeat: repeat;
  background-attachment: fixed;
  border: 16px solid #ffffff;
  border-image: url('images/1parchment-border.png') 30 round; /* Optional if you want a more detailed border */
  min-height: 100vh;
  overflow-y: auto;
  padding: 0;
  box-sizing: border-box;
}

/* ============================= */
/* WRAPPER */
/* ============================= */

.wrapper {
  position: relative;
  max-width: 960px;
  margin: 1rem auto;
  padding: 2.0rem;
  background-color: #FEFBF5;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  font-family: 'Libre Baskerville', serif;
  color: #3a3a3a;
  overflow: hidden;
}


/* ============================= */
/* CORNERS (ALL HTML-BASED) */
/* ============================= */

.corner-tl,
.corner-tr,
.corner-bl,
.corner-br {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 5;

  width: clamp(90px, 12vw, 160px);
  height: clamp(90px, 12vw, 160px);

  opacity: 0.95;
}

/* Individual placement */
.corner-tl {
  top: -14px;
  left: -14px;
  background-image: url('images/corner-tl.png');
}

.corner-tr {
  top: -14px;
  right: -14px;
  background-image: url('images/corner-tr.png');
}

.corner-bl {
  bottom: -14px;
  left: -14px;
  background-image: url('images/corner-bl.png');
}

.corner-br {
  bottom: -14px;
  right: -14px;
  background-image: url('images/corner-br.png');
}

/* ============================= */
/* MOBILE ADJUSTMENTS */
/* ============================= */

@media (max-width: 600px) {

  .wrapper {
    margin: 1rem;
    padding: 1rem;
    border-radius: 8px;
  }

  .corner-tl,
  .corner-tr,
  .corner-bl,
  .corner-br {
    width: 60px;
    height: 60px;
    opacity: 0.85;
  }

}












/* VINE BORDER LAYER */
.wrapper::before {
  content: '';
  position: absolute;
  inset: -15px; /* pulls vines inward */
/*  background-image: url('images/vine-border.png');*/
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.99;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 600px) {
  .wrapper::before {
    inset: 6px;
    opacity: 0.2;
  }
}
.center-section {
  list-style-position: inside;
  padding: 0;
  margin: 1.5rem auto;
  text-align: center;
}

.center-section li {
  margin: 0.4rem 0;
}
.center-section {
  max-width: 520px;
  margin: 0 auto;
}
.center-section ul {
  padding-left: 1.2rem;
  margin: 0;
}




@media (min-width: 768px) {
  .center-section ul {
    padding-left: 2rem;
  }
}
.rule-scroll {
  width: 60%;
  margin: 3.5rem auto;
  height: 1px;
  opacity: 0.7;
  border: none;

  background: linear-gradient(
    to right,
    transparent,
    #6eb19d 40%,
    #6eb19d 60%,
    transparent
  );

  opacity: 0.8;
}
.pov-slider{
  margin: 1em 0;
  padding: 2em 0;
}

.slider-intro{
  text-align: center;
  font-style: italic;
  margin-bottom: 1.2em;
  opacity: 0.85;
}
.slider img {
  border-radius: 6px;
  background: #f6f1e8;
}
.pov-track{
  display: flex;
  gap: 1.2em;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 1.2em 1em;
}

.pov-track img{
  flex: 0 0 80%;
  max-width: 80%;
  border-radius: 8px;
  scroll-snap-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.pov-track img {
  outline: 1px solid rgba(0,0,0,0.04);
  outline-offset: -1px;
}


@media (min-width: 768px){
  .pov-track img{
    flex: 0 0 45%;
    max-width: 45%;
  }
}

@media (min-width: 768px) {
  .rule-scroll {
    width: 70%;
  }
}
.subhead {
  font-weight: 400;
  opacity: 0.85;
  margin-bottom: 2em;
}

.service-image {
  max-width: 520px;
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  background: #f6f1e8;
}




.recognition-list {
  margin: 2em 0;
  padding-left: 1.2em;
}

.recognition-list li {
  margin-bottom: 0.8em;
}

.cta-link {
  display: inline-block;
  margin-top: 1em;
  text-decoration: underline;
  font-weight: 500;
}

/* Mobile cleanup */
@media (max-width: 768px) {
  .float-right,
  .float-left {
    float: none;
    margin: 2em auto;
    display: block;
  }
}
.cta-button {
  display: inline-block;
  padding: 0.75em 1.6em;
  border: 1px solid #8b8b8b;
  color: #2b2b2b;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  background: transparent;
  transition: all 0.2s ease;
}

.cta-button:hover {
  background: #f3efe7;
  border-color: #6f6f6f;
}

.cta-note {
  font-size: 0.85em;
  opacity: 0.75;
  margin-top: 0.5em;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

.cta-button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
  opacity: 0.85;
}
html, body {
  overflow-x: hidden;
}
.wrapper {
  overflow: hidden;
}
.contact-section label {
  display: block;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  margin-top: 0.4rem;
}
