/* Site Styles */

:root {
  --clr-warm: #837876;
  --clr-warm-dk: #6a5f5d;
  --clr-warm-lt: #a09795;
  --clr-accent: #275f55;
  --clr-accent-dk: #1c4840;
  --clr-accent-lt: #338a7c;
  --clr-ink: #1a1a1a;
  --clr-ink-mid: #333333;
  --clr-base: #fff;
  --clr-canvas: #f7f5f4;
  --clr-border: #e8e4e3;
  --clr-body: #1a1a1a;
  --clr-muted: #4a4040;
  --panel-bg: #837876;
  --panel-dk: #6a5f5d;
  --rnd: 8px;
  --rnd-lg: 12px;
  --ease: 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--clr-body); background: var(--clr-canvas); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.site-header { background: var(--clr-accent); padding: 16px 40px; display: flex; justify-content: space-between; align-items: center; }
.site-header .logo { font-family: 'DM Serif Display', serif; color: var(--clr-base); font-size: 1.45rem; font-weight: 400; letter-spacing: 0.5px; display: flex; align-items: center; gap: 8px; line-height: 1.2; }
.site-header .logo .bl { color: #c9b9b7; }
.site-header .hdr-phone { color: var(--clr-base); font-family: 'DM Sans', sans-serif; font-size: 1.25rem; font-weight: 700; display: flex; align-items: center; gap: 8px; transition: color var(--ease); }
.site-header .hdr-phone:hover { color: #c9b9b7; }

/* Navigation */
nav { background: var(--clr-accent); padding: 0 40px; display: flex; justify-content: center; position: relative; border-top: 1px solid rgba(255,255,255,0.15); }
.menu-list { display: flex; justify-content: center; gap: 0; }
.menu-list > a, .menu-list > .has-sub > a { color: rgba(255,255,255,0.9); padding: 14px 18px; font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 600; letter-spacing: .3px; transition: background var(--ease), color var(--ease); display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.menu-list > a:hover, .menu-list > a.active, .menu-list > .has-sub:hover > a { background: var(--clr-warm); color: var(--clr-base); }

/* Mobile Toggle */
.toggle-wrap { display: none; justify-content: center; padding: 10px 20px; background: var(--clr-accent); width: 100%; }
.menu-toggle { display: none; background: none; border: 2px solid rgba(255,255,255,0.4); border-radius: 6px; cursor: pointer; padding: 8px 12px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--clr-base); border-radius: 3px; transition: all .3s ease; margin: 4px 0; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px,-5px); }

/* Sub Menu */
.has-sub { position: relative; }
.has-sub > a { cursor: pointer; }
.sub-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--clr-ink); min-width: 230px; border-radius: 0 0 var(--rnd) var(--rnd); box-shadow: 0 12px 40px rgba(0,0,0,.3); z-index: 200; overflow: hidden; }
.sub-menu a { display: flex; align-items: center; gap: 10px; padding: 12px 20px; color: rgba(255,255,255,.85); font-family: 'DM Sans', sans-serif; font-size: .87rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.07); transition: all var(--ease); }
.sub-menu a:last-child { border-bottom: none; }
.sub-menu a:hover { background: var(--clr-warm); color: var(--clr-base); padding-left: 26px; }
.has-sub:hover .sub-menu { display: block; }

/* Banner */
.banner { position: relative; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; background: var(--clr-ink); }
.banner-img { width: 100%; height: auto; display: block; object-fit: contain; }
.banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,26,.5) 0%, rgba(26,26,26,.1) 60%, transparent 100%); z-index: 1; }

/* Offerings Grid */
.offerings-wrap { max-width: 1200px; margin: 40px auto 0; padding: 0 20px 60px; }
.offerings-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.offer-tile { border-radius: var(--rnd-lg); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.1); transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s ease, border-color .4s ease; cursor: pointer; border: 3px solid transparent; background: var(--clr-base); }
.offer-tile:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 16px 48px rgba(39,95,85,.25); border-color: var(--clr-accent); }
.offer-tile a { display: block; color: inherit; }
.offer-tile .tile-img { overflow: hidden; aspect-ratio: 1/1; }
.offer-tile .tile-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.25,.46,.45,.94); }
.offer-tile:hover .tile-img img { transform: scale(1.07); }
.offer-tile .tile-label { display: block; background: var(--clr-accent); color: var(--clr-base); font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 700; text-align: center; padding: 18px 16px; letter-spacing: 0.8px; text-transform: uppercase; transition: background .3s ease; }
.offer-tile:hover .tile-label { background: var(--clr-warm); }

/* Page Layout */
.page-body { max-width: 1200px; margin: 0 auto; padding: 30px 20px 60px; display: grid; grid-template-columns: 1fr 340px; gap: 40px; }
.article-col h1 { font-family: 'DM Serif Display', serif; color: var(--clr-accent); font-size: 2.1rem; font-weight: 400; margin-bottom: 20px; line-height: 1.3; }
.article-col h2 { font-family: 'DM Serif Display', serif; color: var(--clr-accent); font-size: 1.8rem; font-weight: 400; margin-bottom: 20px; line-height: 1.3; }
.article-col p { line-height: 1.8; margin-bottom: 16px; color: var(--clr-muted); font-size: .97rem; }
.article-col h3 { font-family: 'DM Sans', sans-serif; color: var(--clr-ink); font-size: 1.15rem; font-weight: 700; margin: 28px 0 12px; }
.article-col a { color: var(--clr-accent); font-weight: 600; transition: color var(--ease); text-decoration: underline; text-decoration-color: rgba(39,95,85,.3); text-underline-offset: 3px; }
.article-col a:hover { color: var(--clr-accent-dk); text-decoration-color: var(--clr-accent-dk); }
.article-col ul { margin: 12px 0 20px 24px; color: var(--clr-muted); }
.article-col li { margin-bottom: 7px; font-size: .97rem; }
.article-col .feat-img-wrap { position: relative; border-radius: var(--rnd-lg); margin: 20px 0 28px; overflow: hidden; box-shadow: 0 6px 24px rgba(0,0,0,.12); }
.article-col .feat-img { width: 100%; border-radius: var(--rnd-lg); margin: 0; }

/* Aside Panel */
.aside-col { background: var(--panel-bg); border-radius: var(--rnd-lg); overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.15); height: fit-content; position: sticky; top: 20px; }
.aside-top { background: var(--clr-accent); padding: 24px; text-align: center; }
.aside-top h3 { font-family: 'DM Serif Display', serif; color: var(--clr-base); font-size: 1.1rem; font-weight: 400; letter-spacing: .5px; }
.aside-top p { color: rgba(255,255,255,.9); font-family: 'DM Sans', sans-serif; font-size: .95rem; margin-top: 4px; font-weight: 600; }
.aside-top .fast { color: rgba(255,255,255,.75); font-family: 'DM Sans', sans-serif; font-size: .78rem; margin-top: 6px; letter-spacing: 2px; text-transform: uppercase; }
.aside-mid { padding: 22px; }
.aside-mid h4 { font-family: 'DM Sans', sans-serif; color: var(--clr-base); font-size: .9rem; margin-bottom: 10px; font-weight: 700; }
.aside-mid .address { color: rgba(255,255,255,.85); font-size: .87rem; margin-bottom: 14px; }
.aside-mid iframe { border: 0; border-radius: var(--rnd); width: 100%; height: 190px; }
.aside-cta { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 16px 22px 22px; background: var(--clr-accent); color: var(--clr-base); font-family: 'DM Sans', sans-serif; font-weight: 700; padding: 13px; border-radius: var(--rnd); text-transform: uppercase; letter-spacing: .5px; font-size: .8rem; transition: transform .2s, background .3s; box-shadow: 0 4px 16px rgba(39,95,85,.4); }
.aside-cta:hover { transform: translateY(-2px); background: var(--clr-accent-dk); }
.aside-links { margin: 0 22px 22px; background: var(--panel-dk); border-radius: var(--rnd); overflow: hidden; }
.aside-links h4 { font-family: 'DM Sans', sans-serif; color: var(--clr-base); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 14px 16px 10px; border-bottom: 1px solid rgba(255,255,255,.15); }
.aside-links a { display: flex; align-items: center; gap: 10px; padding: 11px 16px; color: rgba(255,255,255,.85); font-size: .87rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.1); transition: all var(--ease); }
.aside-links a:last-child { border-bottom: none; }
.aside-links a:hover { background: var(--clr-accent); color: var(--clr-base); padding-left: 22px; }

/* Footer */
footer { background: var(--clr-accent); padding: 50px 20px 30px; text-align: center; }
footer .ft-brand { font-family: 'DM Serif Display', serif; color: var(--clr-base); font-size: 1.55rem; font-weight: 400; letter-spacing: 1px; margin-bottom: 14px; }
footer .ft-phone { color: #c9b9b7; font-family: 'DM Sans', sans-serif; font-size: 1.2rem; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px; transition: color var(--ease); }
footer .ft-phone:hover { color: var(--clr-base); }
footer .ft-addr { color: rgba(255,255,255,.7); font-size: .88rem; margin-bottom: 22px; }
footer .ft-nav { margin-bottom: 22px; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 16px; }
footer .ft-nav a { color: rgba(255,255,255,.7); font-size: .83rem; font-weight: 500; transition: color var(--ease); }
footer .ft-nav a:hover { color: var(--clr-base); }
footer .ft-nav .sep { color: rgba(255,255,255,.3); }
footer .copyright { color: rgba(255,255,255,.45); font-size: .78rem; border-top: 1px solid rgba(255,255,255,.15); padding-top: 18px; }

/* Back to Top */
.back-top { position: fixed; bottom: 28px; right: 28px; width: 42px; height: 42px; background: var(--clr-accent); color: var(--clr-base); border: none; border-radius: var(--rnd); cursor: pointer; box-shadow: 0 4px 16px rgba(39,95,85,.4); transition: opacity .3s, transform .2s, background .3s; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; font-size: 1.2rem; font-weight: 700; }
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-3px); background: var(--clr-accent-dk); }

/* Call to Action */
.callout-band { background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-dk)); padding: 55px 20px; text-align: center; }
.callout-band h2 { font-family: 'DM Serif Display', serif; color: var(--clr-base); font-size: 1.9rem; font-weight: 400; margin-bottom: 14px; }
.callout-band p { color: rgba(255,255,255,.85); max-width: 680px; margin: 0 auto 20px; line-height: 1.7; font-size: .97rem; }
.callout-band .action-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--clr-warm); color: var(--clr-base); font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; padding: 14px 36px; border-radius: var(--rnd); text-transform: uppercase; letter-spacing: 1px; transition: transform .2s, box-shadow .2s, background .3s; box-shadow: 0 4px 20px rgba(131,120,118,.4); border: none; cursor: pointer; }
.callout-band .action-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(131,120,118,.55); background: var(--clr-warm-dk); }

/* Inquiry Form */
.contact-banner { background: linear-gradient(135deg, var(--clr-accent-dk) 0%, var(--clr-accent) 100%); padding: 50px 20px; text-align: center; }
.contact-banner h1 { font-family: 'DM Serif Display', serif; color: var(--clr-base); font-size: 2.2rem; font-weight: 400; margin-bottom: 10px; }
.contact-banner p { color: rgba(255,255,255,.85); font-size: 1rem; max-width: 600px; margin: 0 auto; }
.contact-grid { max-width: 1200px; margin: 0 auto; padding: 50px 20px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 26px; }
.contact-details h2 { font-family: 'DM Serif Display', serif; color: var(--clr-accent); font-size: 1.55rem; font-weight: 400; margin-bottom: 4px; }
.contact-details p { color: var(--clr-muted); line-height: 1.8; font-size: .97rem; }
.detail-card { background: var(--clr-base); border-radius: var(--rnd-lg); padding: 26px; box-shadow: 0 4px 20px rgba(0,0,0,.06); border: 1px solid var(--clr-border); transition: transform .3s, box-shadow .3s; }
.detail-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(39,95,85,.12); }
.detail-card h3 { font-family: 'DM Sans', sans-serif; color: var(--clr-ink); font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.detail-card p { color: var(--clr-muted); font-size: .9rem; line-height: 1.6; margin: 0; }
.detail-card a { color: var(--clr-accent); font-weight: 600; text-decoration: none; transition: color .3s; }
.detail-card a:hover { color: var(--clr-accent-dk); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 8px; }
.hours-row { display: flex; justify-content: space-between; padding: 7px 11px; background: var(--clr-canvas); border-radius: 5px; font-size: .85rem; color: var(--clr-muted); }
.hours-row span:last-child { font-weight: 700; color: var(--clr-accent); }
.contact-form-box { background: var(--clr-base); border-radius: var(--rnd-lg); padding: 34px; box-shadow: 0 8px 32px rgba(0,0,0,.08); border: 1px solid var(--clr-border); }
.contact-form-box h2 { font-family: 'DM Serif Display', serif; color: var(--clr-accent); font-size: 1.35rem; font-weight: 400; margin-bottom: 6px; }
.contact-form-box > p { color: var(--clr-muted); font-size: .9rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field-group { display: flex; flex-direction: column; gap: 5px; }
.field-wide { margin-bottom: 14px; }
.field-group label { font-family: 'DM Sans', sans-serif; font-size: .78rem; font-weight: 700; color: var(--clr-ink); text-transform: uppercase; letter-spacing: .5px; }
.field-group input, .field-group select, .field-group textarea { background: var(--clr-canvas); border: 2px solid var(--clr-border); border-radius: var(--rnd); padding: 11px 13px; font-family: 'DM Sans', sans-serif; font-size: .93rem; color: var(--clr-ink); outline: none; transition: border-color .2s, box-shadow .2s; width: 100%; }
.field-group input:focus, .field-group select:focus, .field-group textarea:focus { border-color: var(--clr-accent); box-shadow: 0 0 0 3px rgba(39,95,85,.15); background: var(--clr-base); }
.field-group textarea { resize: vertical; min-height: 110px; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.form-actions .action-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--clr-accent); color: var(--clr-base); font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 700; padding: 13px 30px; border-radius: var(--rnd); text-transform: uppercase; letter-spacing: .5px; transition: transform .2s, box-shadow .2s, background .3s; box-shadow: 0 4px 16px rgba(39,95,85,.3); border: none; cursor: pointer; }
.form-actions .action-btn:hover { transform: translateY(-2px); background: var(--clr-accent-dk); }
.form-actions .action-btn-alt { background: var(--clr-warm); }
.form-actions .action-btn-alt:hover { background: var(--clr-warm-dk); }
.form-msg { margin-top: 16px; background: rgba(39,95,85,.1); border: 1px solid rgba(39,95,85,.3); color: var(--clr-accent); padding: 12px 18px; border-radius: var(--rnd); font-weight: 600; font-size: .93rem; display: none; }
.map-section { max-width: 1200px; margin: 0 auto; padding: 0 20px 60px; }
.map-section iframe { width: 100%; height: 340px; border: 0; border-radius: var(--rnd-lg); box-shadow: 0 8px 30px rgba(0,0,0,.08); }

/* Breakpoints */
@media(max-width:900px) {
  .offerings-grid { grid-template-columns: repeat(2,1fr); }
  .page-body { grid-template-columns: 1fr; }
  .site-header { flex-direction: column; align-items: center; padding: 12px 16px; gap: 8px; text-align: center; }
  .site-header .logo { font-size: 1.1rem; }
  .site-header .hdr-phone { font-size: 1.05rem; background: var(--clr-warm); color: var(--clr-base); padding: 7px 18px; border-radius: 50px; }
  .offer-tile .tile-label { font-size: .75rem; padding: 12px 6px; letter-spacing: 0; }
  .toggle-wrap { display: flex; }
  .menu-toggle { display: block; }
  nav { padding: 0; }
  .menu-list { display: none; flex-direction: column; width: 100%; background: var(--clr-accent); }
  .nav-links.open { display: flex; }
  .menu-list > a, .menu-list > .has-sub > a { padding: 15px 24px; border-top: 1px solid rgba(255,255,255,.15); justify-content: center; text-align: center; }
  .has-sub { width: 100%; }
  .has-sub > a { display: flex; width: 100%; justify-content: center; }
  .sub-menu { position: static; box-shadow: none; border-radius: 0; background: rgba(0,0,0,.15); min-width: 100%; }
  .sub-menu a { padding: 12px 24px; justify-content: center; font-size: .84rem; }
  .has-sub:hover .sub-menu { display: none; }
  .has-sub .dropdown-menu.open { display: block !important; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-banner h1 { font-size: 1.7rem; }
  .hours-grid { grid-template-columns: 1fr; }
}
@media(min-width:901px) {
  .menu-list { display: flex !important; justify-content: center; }
  .toggle-wrap { display: none !important; }
}
@media(max-width:550px) {
  .offerings-grid { grid-template-columns: repeat(2,1fr); }
  .site-header .logo { font-size: .95rem; }
  .article-col h1 { font-size: 1.6rem; }
  .article-col h2 { font-size: 1.4rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; align-items: stretch; }
}
