/**/



:root {
--bg: #f7f4ef;
--white: #ffffff;
--text: #222222;
--muted: #6f6f6f;
--accent: #8d6b45;
--border: #e5ddd2;
--container: 1200px;
--radius: 18px;
--shadow: 0 12px 40px rgba(0,0,0,0.08);
}



img { max-width: 100%; display: block; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.narrow { max-width: 760px; }
.section-spacing { padding: 110px 0; }
.bg-light { background: var(--bg); }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.1; }
h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }

.eyebrow { text-transform: uppercase; letter-spacing: 0.2em; font-size: 1rem; color: white; margin-bottom: 18px; font-weight: 600; }

#content { padding:20px 10px; }



/* HEADER */
.site-header { position: absolute; width: 100%; top: 60px; left: 0; z-index: 10; }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 28px 0; }
.main-nav { display: flex; gap: 25px; }
.main-nav a { color: white; text-decoration: none; font-size: 1.1rem; line-height:1.1; }
.main-nav a:hover { color:white; text-decoration:underline; }
.main-nav a.selected { font-size:1.4rem; color:white; text-decoration:underline; }



/* HERO */
.hero, .hero-home { position: relative; height:20vh; min-height:180px;
    display: flex; align-items: center; overflow: hidden; 
    background-image: url('bghome.png'); background-size: cover; 
    background-repeat: no-repeat; background-position: center; }
.hero-home { min-height: 100vh; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.hero-content { position: relative; color: white; max-width: 760px; }
.hero-text { margin: 28px 0 36px; color: rgba(255,255,255,0.88); font-size: 1.1rem; max-width: 620px; }

.btn-primary { display: inline-flex; align-items: center; justify-content: center; 
    padding: 16px 28px; border-radius: 999px;
    background: var(--accent); color: white;
    text-decoration: none; font-weight: 600; transition: 0.25s ease; }
.btn-primary:hover { color:white; background:#cc6633; }
.btn-primary a:hover { color:white; }



/* SECTION HEADING */
.section-heading { margin-bottom: 60px; }
.section-heading.center { text-align: center; }



/* SERVICES */
.service-grid { display: grid; grid-template-columns: xrepeat(2, 1fr); xgap: 30px; }
.service-grid {   grid-template-columns: 1fr; }
.service-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.service-image { height: 280px; background-image: url('_______________________________');
background-size: cover; background-position: center; }
.service-content { padding: 32px; }



/* SPLIT SECTION */
.split-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.split-image { min-height: 620px; border-radius: var(--radius);
    background-image: url('___________________________________'); 
    background-size: cover; background-position: center; }
.split-content ul { margin-top: 24px; padding-left: 18px; }
.split-content li { margin-bottom: 10px; color: var(--muted); }



/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 24px; }
.gallery-item { border-radius: var(--radius); background-image: url('_____________________________'); 
    background-size: cover; background-position: center; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }



/* CTA */
.cta-box { background: var(--bg); border-radius: 28px; padding: 60px; 
    display: flex; justify-content: space-between; align-items: center; gap: 40px; }



/* FOOTER */
.site-footer { background: #181818; color: white; padding: 80px 0; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.site-footer p,
.site-footer h4 { color: rgba(255,255,255,0.7); }
.site-footer h3,
.site-footer h4 { margin-bottom: 16px; }
.site-footer a { color:white; }
.site-footer a:hover { color:white; text-decoration:underline; }



/* RESPONSIVE */
@media (max-width: 1020px) {
.service-grid, .split-layout, .footer-grid {   grid-template-columns: 1fr; }
.gallery-grid {   grid-template-columns: 1fr 1fr; }
.cta-box {   flex-direction: column;   align-items: flex-start; }
}


@media (max-width: 800px) {
.main-nav {   display: none; }
.gallery-grid {   grid-template-columns: 1fr; }
.section-spacing {   padding: 80px 0; }
.cta-box {   padding: 40px 28px; }
}







