/* ============================================================
   LCGG — site2.css  ·  Classic Hero Layout
   Mobile-first · All classes suffixed with 2 to avoid
   collision with site.css when both are loaded in the same app
   ============================================================

   Palette (same brand tokens, scoped vars)
   --c2-sage:       #4A7C59
   --c2-sage-dark:  #2d5038
   --c2-sage-light: #6a9e78
   --c2-sage-pale:  #e0ede3
   --c2-blush:      #E8B4B8
   --c2-blush-mid:  #d4989d
   --c2-blush-pale: #f5d8da
   --c2-cream:      #FAF7F2
   --c2-wood:       #8B6F47
   --c2-wood-pale:  #f0e8d8
   --c2-charcoal:   #2C2C2C
   ============================================================ */

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --c2-sage:       #4A7C59;
    --c2-sage-dark:  #2d5038;
    --c2-sage-light: #6a9e78;
    --c2-sage-pale:  #e0ede3;
    --c2-blush:      #E8B4B8;
    --c2-blush-mid:  #d4989d;
    --c2-blush-pale: #f5d8da;
    --c2-cream:      #FAF7F2;
    --c2-wood:       #8B6F47;
    --c2-wood-pale:  #f0e8d8;
    --c2-charcoal:   #2C2C2C;
    --c2-white:      #ffffff;
    --c2-shadow-sm:  0 1px 4px rgba(0,0,0,0.08);
    --c2-shadow-md:  0 4px 16px rgba(0,0,0,0.10);
    --c2-radius-sm:  2px;
    --c2-radius-md:  4px;
    --c2-radius-lg:  8px;
    --c2-transition: 0.2s ease;
    --c2-max-width:  1100px;
    --c2-font-display: 'Cormorant Garamond', Georgia, serif;
    --c2-font-body:    'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--c2-font-body);
    background: var(--c2-cream);
    color: var(--c2-charcoal);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
address { font-style: normal; }

/* ── Skip Link ─────────────────────────────────────────────── */
.skip-link2 {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--c2-sage-dark);
    color: var(--c2-white);
    padding: 8px 16px;
    z-index: 9999;
    font-size: 14px;
    transition: top 0.2s;
}
.skip-link2:focus { top: 0; }

/* ── Announcement Bar ──────────────────────────────────────── */
.ann2-bar {
    background: var(--c2-blush);
    color: var(--c2-sage-dark);
    text-align: center;
    padding: 9px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.ann2-link { color: inherit; text-decoration: none; }
.ann2-link:hover { text-decoration: underline; }

/* ── Header & Nav ──────────────────────────────────────────── */
.site2-header {
    background: var(--c2-white);
    border-bottom: 1px solid #e8e4dd;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--c2-shadow-sm);
}

.nav2-container {
    max-width: var(--c2-max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav2-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo2-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.logo2-text {
    font-family: var(--c2-font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--c2-sage-dark);
    line-height: 1.25;
    display: none;
}
.logo2-text em { font-style: italic; color: var(--c2-blush-mid); }

.nav2-links {
    display: none;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav2-link {
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--c2-charcoal);
    opacity: 0.65;
    transition: opacity var(--c2-transition), color var(--c2-transition);
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--c2-font-body);
    padding: 0;
}
.nav2-link:hover,
.nav2-link.active {
    opacity: 1;
    color: var(--c2-sage);
}

/* Hamburger */
.hamburger2 {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-radius: var(--c2-radius-md);
    transition: background var(--c2-transition);
}
.hamburger2:hover { background: var(--c2-sage-pale); }

.ham2-line {
    width: 22px;
    height: 2px;
    background: var(--c2-sage-dark);
    display: block;
    border-radius: 2px;
    transition: transform var(--c2-transition), opacity var(--c2-transition);
}

.hamburger2[aria-expanded="true"] .ham2-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger2[aria-expanded="true"] .ham2-line:nth-child(2) { opacity: 0; }
.hamburger2[aria-expanded="true"] .ham2-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile2-nav {
    background: var(--c2-white);
    border-top: 1px solid #e8e4dd;
    padding: 16px 24px 24px;
}
.mobile2-nav ul { list-style: none; }
.mobile2-nav ul li { border-bottom: 1px solid #f0ece6; }
.mobile2-nav ul li a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: var(--c2-charcoal);
}
.mobile2-nav-info {
    margin-top: 16px;
    font-size: 13px;
    color: #888;
    line-height: 1.9;
}
.mobile2-nav-info a { color: var(--c2-sage); text-decoration: none; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn2 {
    display: inline-block;
    padding: 12px 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--c2-radius-sm);
    transition: opacity var(--c2-transition), transform var(--c2-transition);
    cursor: pointer;
    border: none;
}
.btn2:hover  { opacity: 0.88; transform: translateY(-1px); }
.btn2:active { transform: translateY(0); }

.btn2--primary {
    background: var(--c2-blush);
    color: var(--c2-sage-dark);
}
.btn2--outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.55);
    color: var(--c2-white);
}
.btn2--sage  { background: var(--c2-sage);  color: var(--c2-white); }
.btn2--blush { background: var(--c2-blush); color: var(--c2-sage-dark); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 420px;
    background-color: var(--c2-sage-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Dark overlay so text remains legible over any photo */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28,58,38,0.72) 0%, rgba(45,80,56,0.52) 60%, rgba(45,80,56,0.25) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 24px;
    max-width: 520px;
}

.hero-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 14px;
    font-weight: 400;
}

.hero h1 {
    font-family: var(--c2-font-display);
    font-size: 42px;
    line-height: 1.15;
    color: var(--c2-white);
    margin-bottom: 18px;
    font-weight: 300;
}
.hero h1 em { font-style: italic; color: var(--c2-blush); }

.hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 32px;
    font-weight: 300;
    max-width: 400px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

/* ── Ticker ────────────────────────────────────────────────── */
.ticker2 {
    background: var(--c2-blush);
    color: var(--c2-sage-dark);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-transform: uppercase;
}

.ticker2-track {
    display: inline-flex;
    align-items: center;
    animation: ticker2 32s linear infinite;
}

@keyframes ticker2 {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.ticker2-item { padding: 0 10px; white-space: nowrap; }
.ticker2-sep  { padding: 0 4px; opacity: 0.4; }
.ticker2-tag {
    display: inline-block;
    background: var(--c2-sage-dark);
    color: var(--c2-white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 2px;
    margin-right: 6px;
    vertical-align: middle;
}

/* ── Section Utilities ─────────────────────────────────────── */
.section2 { padding: 60px 24px; }
.section2-container { max-width: var(--c2-max-width); margin: 0 auto; }

.section2-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--c2-sage);
    margin-bottom: 8px;
}

.section2-title {
    font-family: var(--c2-font-display);
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2;
    color: var(--c2-charcoal);
    margin-bottom: 12px;
}
.section2-title em { font-style: italic; color: var(--c2-sage); }

.section2-sub {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 36px;
    font-weight: 300;
}

/* ── Offers / Feature Cards ────────────────────────────────── */
.offers2 { background: var(--c2-white); }

.features2-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.feature2-card {
    background: var(--c2-cream);
    border-radius: var(--c2-radius-md);
    overflow: hidden;
}

.feature2-card-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    overflow: hidden;
    background: var(--c2-sage-pale);
}
.feature2-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.feature2-card-img--green { background: #e8f0e9; }
.feature2-card-img--blush { background: var(--c2-blush-pale); }
.feature2-card-img--wood  { background: var(--c2-wood-pale); }

.feature2-card-body { padding: 20px; }

.feature2-card h3 {
    font-family: var(--c2-font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--c2-charcoal);
}
.feature2-card p { font-size: 14px; color: #666; line-height: 1.65; font-weight: 300; }

/* ── Events ────────────────────────────────────────────────── */
.events2 {
    background: var(--c2-sage-dark);
    color: var(--c2-white);
}
.events2 .section2-label { color: rgba(255,255,255,0.5); }
.events2 .section2-title { color: var(--c2-white); }
.events2 .section2-sub   { color: rgba(255,255,255,0.65); }

.event2-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.event2-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--c2-radius-md);
    padding: 20px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.event2-date {
    background: var(--c2-blush);
    color: var(--c2-sage-dark);
    border-radius: var(--c2-radius-sm);
    padding: 8px 12px;
    text-align: center;
    min-width: 52px;
    flex-shrink: 0;
}
.event2-month {
    display: block;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    line-height: 1;
}
.event2-day {
    display: block;
    font-family: var(--c2-font-display);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.1;
}

.event2-info h3 {
    font-family: var(--c2-font-display);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--c2-white);
    line-height: 1.3;
}
.event2-info p {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
    font-weight: 300;
}

/* ── About ─────────────────────────────────────────────────── */
.about2 { background: var(--c2-cream); }

.about2-inner {
    max-width: var(--c2-max-width);
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
}

.about2-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--c2-radius-md);
}

.about2-text .section2-title { margin-top: 8px; }

.about2-quote {
    border-left: 3px solid var(--c2-blush);
    padding-left: 18px;
    margin: 16px 0;
    font-family: var(--c2-font-display);
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    color: var(--c2-sage-dark);
}
.about2-quote footer {
    font-size: 13px;
    font-style: normal;
    color: #999;
    margin-top: 8px;
    font-family: var(--c2-font-body);
    font-weight: 300;
}
.about2-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
}

/* ── CTA Strip ─────────────────────────────────────────────── */
.cta2 {
    background: var(--c2-sage);
    color: var(--c2-white);
    padding: 44px 24px;
}
.cta2-inner {
    max-width: var(--c2-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}
.cta2 h2 {
    font-family: var(--c2-font-display);
    font-size: 26px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.3;
}
.cta2 p {
    font-size: 13px;
    opacity: 0.75;
    font-weight: 300;
    margin-top: 4px;
}



/* ── Responsive: Tablet (≥640px) ──────────────────────────── */
@media (min-width: 640px) {
    .logo2-text { display: block; }

    .hero { min-height: 500px; }
    .hero h1 { font-size: 54px; }
    .hero-content { padding: 80px 48px; }

    .features2-grid { grid-template-columns: repeat(3, 1fr); }

    .event2-grid { grid-template-columns: repeat(2, 1fr); }

    .about2-inner { grid-template-columns: 1fr 1fr; }
    .about2-img img { height: 380px; }

    .cta2-inner { flex-direction: row; align-items: center; justify-content: space-between; }

    .footer2-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }

    .section2-title { font-size: 38px; }
}

/* ── Responsive: Desktop (≥1024px) ────────────────────────── */
@media (min-width: 1024px) {
    .nav2-links { display: flex; }
    .hamburger2 { display: none; }

    .hero { min-height: 560px; }
    .hero h1 { font-size: 64px; }

    .section2 { padding: 80px 40px; }
    .about2-inner { gap: 64px; padding: 80px 40px; }
    .about2-img img { height: 440px; }
}

/* ── Reduced Motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .ticker2-track { animation: none; }
    * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}


/* ============================================================
   CONTACT PAGE — and shared page-level utilities
   These complement the site2.css hero-layout styles above.
   Class names intentionally un-suffixed so the Contact view
   (which pre-dates the "2" rename) renders without changes.
   ============================================================ */

/* ── Shared page utilities ─────────────────────────────────── */
.section-pad        { padding: 48px 24px; }
.section-container  { max-width: var(--c2-max-width); margin: 0 auto; }

.section-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--c2-sage);
    margin-bottom: 8px;
}

/* ── Shared btn variants (un-suffixed) ─────────────────────── */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--c2-radius-sm);
    transition: opacity var(--c2-transition), transform var(--c2-transition);
    cursor: pointer;
    border: none;
    font-family: var(--c2-font-body);
}
.btn:hover  { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--sage  { background: var(--c2-sage);  color: var(--c2-white); }
.btn--blush { background: var(--c2-blush); color: var(--c2-sage-dark); }
.btn--outline {
    background: transparent;
    border: 1px solid var(--c2-sage);
    color: var(--c2-sage);
}
.btn--full  { display: block; width: 100%; text-align: center; }

/* ── Page Hero (interior pages) ────────────────────────────── */
.page-hero {
    padding: 52px 24px;
    background: var(--c2-sage-pale);
}
.page-hero--sage {
    background: linear-gradient(135deg, var(--c2-sage-dark) 0%, var(--c2-sage) 100%);
    color: var(--c2-white);
}
.page-hero--sage .section-label { color: rgba(255,255,255,0.6); }

.page-hero-inner {
    max-width: var(--c2-max-width);
    margin: 0 auto;
}

.page-hero-title {
    font-family: var(--c2-font-display);
    font-size: 40px;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 12px;
    color: inherit;
}
.page-hero-title em { font-style: italic; color: var(--c2-blush); }

.page-hero-sub {
    font-size: 15px;
    line-height: 1.7;
    font-weight: 300;
    max-width: 520px;
    color: rgba(255,255,255,0.8);
}

@media (min-width: 640px) {
    .page-hero { padding: 72px 48px; }
    .page-hero-title { font-size: 52px; }
}

/* ── Contact Layout ─────────────────────────────────────────── */
.contact-layout { background: var(--c2-cream); }

/* Info cards row */
.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 480px) {
    .contact-info-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 640px) {
    .contact-info-cards { grid-template-columns: repeat(4, 1fr); }
}

.contact-info-card {
    background: var(--c2-white);
    border-radius: var(--c2-radius-md);
    padding: 22px 18px;
    box-shadow: var(--c2-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info-icon {
    font-size: 26px;
    line-height: 1;
}

.contact-info-card h2 {
    font-family: var(--c2-font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--c2-charcoal);
    margin: 0;
}

.contact-info-card address,
.contact-info-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    font-weight: 300;
    font-style: normal;
    margin: 0;
}

.contact-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--c2-sage);
    text-decoration: none;
}
.contact-link:hover { text-decoration: underline; }

.contact-phone {
    font-size: 15px;
    font-weight: 600;
    color: var(--c2-sage-dark);
    text-decoration: none;
}
.contact-phone:hover { text-decoration: underline; }

/* Hours table inside info card */
.hours-table {
    font-size: 13px;
    width: 100%;
    border-collapse: collapse;
}
.hours-table td {
    padding: 2px 0;
    color: #666;
    vertical-align: top;
    font-weight: 300;
}
.hours-table td:first-child {
    color: var(--c2-charcoal);
    padding-right: 10px;
    white-space: nowrap;
    font-weight: 500;
}

/* Two-column: map + form */
.contact-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .contact-two-col { grid-template-columns: 1fr 1fr; gap: 48px; }
}

.contact-section-title {
    font-family: var(--c2-font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--c2-charcoal);
    margin-bottom: 16px;
}

/* Map */
.map-embed-container {
    border-radius: var(--c2-radius-md);
    overflow: hidden;
    box-shadow: var(--c2-shadow-md);
    line-height: 0;
}
.map-embed-container iframe { display: block; }

.map-address-note {
    margin-top: 12px;
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    font-weight: 300;
}
.map-address-note strong { color: var(--c2-charcoal); }

/* ── Contact Form ───────────────────────────────────────────── */
.contact-form-wrap { display: flex; flex-direction: column; }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row { display: flex; flex-direction: column; gap: 16px; }

@media (min-width: 480px) {
    .form-row--two { flex-direction: row; }
    .form-row--two .form-group { flex: 1 1 0; }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--c2-charcoal);
}

.form-input {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    font-family: var(--c2-font-body);
    color: var(--c2-charcoal);
    background: var(--c2-white);
    border: 1px solid #d8d2c9;
    border-radius: var(--c2-radius-md);
    transition: border-color var(--c2-transition), box-shadow var(--c2-transition);
    -webkit-appearance: none;
    appearance: none;
}
.form-input:focus {
    outline: none;
    border-color: var(--c2-sage);
    box-shadow: 0 0 0 3px rgba(74,124,89,0.12);
}
.form-input::placeholder { color: #bbb; }

.form-textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

/* Validation */
.validation-summary {
    background: #fdf2f2;
    border: 1px solid #e8c0c0;
    border-radius: var(--c2-radius-md);
    padding: 12px 16px;
    font-size: 13px;
    color: #c0392b;
}
.validation-summary ul { margin: 6px 0 0 16px; }

.field-error {
    font-size: 12px;
    color: #c0392b;
    font-weight: 500;
}

.input-validation-error {
    border-color: #e8a0a0 !important;
}

/* Success state */
.form-success {
    background: var(--c2-sage-pale);
    border: 1px solid var(--c2-sage-light);
    border-radius: var(--c2-radius-md);
    padding: 32px 28px;
    text-align: center;
}
.form-success-icon { font-size: 36px; margin-bottom: 12px; }
.form-success h3 {
    font-family: var(--c2-font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--c2-sage-dark);
    margin-bottom: 10px;
}
.form-success p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    font-weight: 300;
}
.form-success a { color: var(--c2-sage); text-decoration: none; font-weight: 500; }
.form-success a:hover { text-decoration: underline; }

/* ── Reduced-motion guard (contact additions) ──────────────── */
@media (prefers-reduced-motion: reduce) {
    .btn, .form-input { transition-duration: 0.01ms !important; }
}


.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    tab-index: -1;
}
