/* ==========================================================
   YKWoodWorking - Shared Styles
   ========================================================== */

/* RESET */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --dark:#1a1a1a;--dark2:#222;--dark3:#2d2d2d;
  --orange:#e8642c;--gold:#c5a55a;--gold-light:#d4b96a;
  --text:#333;--text-light:#666;--text-muted:#999;
  --bg:#f5f5f5;--white:#fff;
}
html{scroll-behavior:smooth}
body{font-family:'DM Sans',sans-serif;background:var(--bg);color:var(--text);overflow-x:hidden}

/* NAV */
nav{position:fixed;top:0;left:0;right:0;z-index:100;background:var(--dark);padding:0 2rem;display:flex;justify-content:space-between;align-items:center;height:60px}
.nav-left{display:flex;align-items:center;gap:1rem}
.nav-left img{height:34px;display:block}
.nav-left .nav-logo{height:44px}
.nav-left .nav-brand{color:#fff;font-weight:700;font-size:1rem;text-decoration:none}
.nav-links{display:flex;align-items:center;gap:2rem;list-style:none}
.nav-links a{color:rgba(255,255,255,.7);text-decoration:none;font-size:.9rem;font-weight:500;transition:color .3s}
.nav-links a:hover,.nav-links a.active{color:#fff}

/* Hamburger Menu */
.hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:4px;z-index:101}
.hamburger span{display:block;width:24px;height:2px;background:#fff;transition:all .3s}
.hamburger.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

@media(max-width:768px){
  .hamburger{display:flex}
  .nav-links{display:none;position:fixed;top:60px;left:0;right:0;background:var(--dark);flex-direction:column;padding:1.5rem 2rem;gap:1rem;border-top:1px solid #333}
  .nav-links.open{display:flex}
}

/* HERO */
.hero{min-height:100vh;position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;color:#fff;padding:60px 2rem 4rem;overflow:hidden}
.hero-slides{position:absolute;inset:0;z-index:0}
.hero-slide{position:absolute;inset:0;background:center/cover no-repeat;opacity:0;transition:opacity 1.2s ease-in-out;animation:heroKenBurns 20s ease-in-out infinite alternate}
.hero-slide.active{opacity:1}
@keyframes heroKenBurns{0%{transform:scale(1) translate(0,0)}50%{transform:scale(1.08) translate(-1%,-1%)}100%{transform:scale(1.04) translate(1%,0)}}
.hero-overlay{position:absolute;inset:0;background:rgba(0,0,0,.6);z-index:1}
.hero-logo-img{width:420px;max-width:80vw;position:relative;z-index:2;margin-bottom:.5rem}
.hero-logo{width:240px;height:240px;margin-bottom:1.5rem;position:relative;z-index:2}
.hero-logo img{width:100%;height:100%;object-fit:contain}
.hero-logo-circle{width:300px;height:300px;border:2px solid var(--gold);border-radius:50%;display:flex;align-items:center;justify-content:center;position:relative;z-index:2}
.hero-logo-circle::before{content:'';position:absolute;inset:-10px;border:1px solid rgba(197,165,90,.4);border-radius:50%;background:radial-gradient(circle,transparent 60%,rgba(197,165,90,.05) 100%)}
.hero-logo-circle::after{content:'';position:absolute;inset:-20px;border:1px dotted rgba(197,165,90,.3);border-radius:50%;animation:rotate 30s linear infinite}
@keyframes rotate{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
.hero-logo-text{font-family:'Playfair Display',serif;font-size:6rem;font-weight:700;color:var(--gold);line-height:1}
.hero-brand{font-size:2.5rem;letter-spacing:14px;text-transform:uppercase;color:var(--gold-light);margin-bottom:.4rem;font-weight:400;position:relative;z-index:2}
.hero-tagline{font-size:1.1rem;letter-spacing:10px;text-transform:uppercase;color:var(--gold);opacity:.7;margin-bottom:2rem;position:relative;z-index:2}
.hero-subtitle{display:flex;align-items:center;gap:1rem;margin-bottom:2.5rem;position:relative;z-index:2}
.hero-subtitle::before,.hero-subtitle::after{content:'';flex:1;height:1px;background:linear-gradient(to right,transparent,var(--orange))}
.hero-subtitle::after{background:linear-gradient(to left,transparent,var(--orange))}
.hero-subtitle span{font-size:.85rem;letter-spacing:5px;text-transform:uppercase;color:var(--orange);white-space:nowrap}

/* BUTTONS */
.btn-white{display:inline-flex;align-items:center;gap:.8rem;background:var(--white);color:var(--dark);padding:1rem 2.5rem;font-size:.95rem;font-weight:500;text-decoration:none;border:none;cursor:pointer;transition:all .3s;position:relative;z-index:2}
.btn-white:hover{background:#eee;transform:translateY(-2px)}
.btn-dark{display:inline-flex;align-items:center;gap:.8rem;background:var(--dark3);color:#fff;padding:1rem 2rem;font-size:.85rem;font-weight:500;text-decoration:none;border:none;cursor:pointer;transition:all .3s}
.btn-dark:hover{background:#444;transform:translateY(-2px)}
.btn-orange{display:inline-flex;align-items:center;gap:.8rem;background:var(--orange);color:#fff;padding:1rem 2rem;font-size:.85rem;font-weight:600;text-decoration:none;border:none;cursor:pointer;transition:all .3s}
.btn-orange:hover{background:#d4571f;transform:translateY(-2px)}
.arrow{font-size:1.1rem}

/* ABOUT */
.about-section{background:var(--white);padding:5rem 3rem}
.about-grid{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start}
.about-label{display:flex;align-items:center;gap:.5rem;color:var(--orange);font-weight:600;font-size:.9rem;margin-bottom:1rem}
.about-label svg{width:18px;height:18px;fill:var(--orange)}
.about-title{font-family:'Playfair Display',serif;font-size:2.5rem;font-weight:700;color:var(--dark);margin-bottom:1.5rem;font-style:italic}
.about-desc{color:var(--text-light);line-height:1.8;margin-bottom:.8rem;font-size:.95rem}
.about-highlight{color:var(--text-light);font-style:italic;margin-bottom:2rem;font-size:.95rem}
.check-grid{display:grid;grid-template-columns:1fr 1fr;gap:.8rem 2rem;margin-bottom:2.5rem}
.check-item{display:flex;align-items:center;gap:.6rem;font-weight:600;font-size:.9rem;color:var(--dark)}
.check-item svg{width:20px;height:20px;fill:var(--orange);flex-shrink:0}
.about-images{display:grid;grid-template-columns:1.3fr 1fr;grid-template-rows:1fr 1fr;gap:12px}
.about-images img{width:100%;height:100%;object-fit:cover;border-radius:2px}
@media(max-width:900px){.about-grid{grid-template-columns:1fr;gap:2rem}}

/* SECTION HEADINGS */
.section-heading{font-family:'Playfair Display',serif;font-size:2.8rem;font-weight:700;text-align:center;color:var(--dark);margin-bottom:3rem;font-style:italic}
.section-heading-bold{font-family:'DM Sans',sans-serif;font-size:2.8rem;font-weight:800;text-align:center;color:var(--dark);margin-bottom:3rem}

/* WE DO */
.wedo-section{background:var(--white);padding:4rem 3rem 5rem;border-top:1px solid #eee}
.wedo-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;max-width:1200px;margin:0 auto}
.wedo-card{overflow:hidden}
.wedo-card img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block}
.wedo-card-title{background:var(--dark3);color:#fff;text-align:center;padding:.8rem;font-family:'Playfair Display',serif;font-size:1.1rem;font-weight:600;font-style:italic}
.wedo-card-link{display:flex;align-items:center;justify-content:center;gap:.5rem;padding:.8rem;border:1px solid #ddd;color:var(--orange);font-size:.8rem;font-weight:600;letter-spacing:2px;text-transform:uppercase;text-decoration:none;transition:all .3s}
.wedo-card-link:hover{background:var(--orange);color:#fff;border-color:var(--orange)}
@media(max-width:768px){.wedo-grid{grid-template-columns:1fr 1fr}}
@media(max-width:500px){.wedo-grid{grid-template-columns:1fr}}

/* WE DID / PROJECTS */
.wedid-section{background:var(--white);padding:4rem 3rem 5rem;border-top:1px solid #eee}
.wedid-header{max-width:1200px;margin:0 auto 2.5rem}
.wedid-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2.5rem;max-width:1200px;margin:0 auto}
.project-card{position:relative}
.project-card img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:2px}
.project-card h3{font-family:'DM Sans',sans-serif;font-size:1.1rem;font-weight:700;color:var(--dark);margin:.8rem 0 .5rem}
.project-card h3 a{color:inherit;text-decoration:none}
.project-card h3 a:hover{color:var(--orange)}
.project-card p{color:var(--text-muted);font-size:.88rem;line-height:1.6;margin-bottom:1rem}
.project-card hr{border:none;border-top:3px solid var(--orange);width:100%;margin-bottom:1rem}
.project-card .btn-dark{font-size:.8rem;padding:.8rem 1.5rem}
.project-card .card-date{font-size:.82rem;color:var(--text-muted);margin-bottom:.5rem}
.project-card .card-cats{position:absolute;top:10px;right:10px;display:flex;gap:4px;flex-wrap:wrap;justify-content:flex-end}
.project-card .card-cat-badge{background:var(--orange);color:#fff;font-size:.75rem;font-weight:600;padding:4px 12px;border-radius:2px;font-family:'DM Sans',sans-serif;text-decoration:none;transition:background .3s}
.project-card .card-cat-badge:hover{background:#c65a00}
.project-card .read-more{display:inline-flex;align-items:center;gap:.4rem;color:var(--dark);font-size:.85rem;font-weight:600;text-decoration:none;transition:color .3s}
.project-card .read-more:hover{color:var(--orange)}
.project-card .read-more .arrow{font-size:1.1rem}
@media(max-width:900px){.wedid-grid{grid-template-columns:1fr 1fr}}
@media(max-width:500px){.wedid-grid{grid-template-columns:1fr}}

/* CATEGORY FILTER */
.filter-bar{display:flex;flex-wrap:wrap;gap:.6rem;max-width:1200px;margin:0 auto 2.5rem;justify-content:center}
.filter-btn{background:var(--white);border:1px solid #ddd;padding:.5rem 1.2rem;font-size:.85rem;font-weight:500;cursor:pointer;transition:all .3s;font-family:inherit;color:var(--text)}
.filter-btn:hover,.filter-btn.active{background:var(--orange);color:#fff;border-color:var(--orange)}

/* PAGE HEADER (for inner pages) */
.page-header{position:relative;padding:120px 2rem 60px;text-align:center;color:#fff;overflow:hidden}
.page-header::before{content:'';position:absolute;inset:0;background:url('../images/Page_Head.jpg') center/cover;opacity:0.5;z-index:0}
.page-header::after{content:'';position:absolute;inset:0;background:var(--dark);z-index:-1}
.page-header>*{position:relative;z-index:1}
.page-header h1{font-family:'Playfair Display',serif;font-size:3rem;font-weight:700;font-style:italic;margin-bottom:.5rem}
.page-header .subtitle{font-family:'DM Sans',sans-serif;font-size:1.1rem;font-weight:300;letter-spacing:4px;text-transform:uppercase;color:rgba(255,255,255,.7);margin-bottom:.5rem}
.page-header .page-desc{font-size:.95rem;color:rgba(255,255,255,.6);max-width:700px;margin:.8rem auto .5rem;line-height:1.6}
.page-header .breadcrumb{font-size:.9rem;color:rgba(255,255,255,.5)}
.page-header .breadcrumb a{color:var(--orange);text-decoration:none}
.page-header .breadcrumb a:hover{text-decoration:underline}

/* DECK STYLE CARDS */
.deck-styles-section{background:var(--white);padding:4rem 3rem}
.deck-styles-section h2{font-family:'Playfair Display',serif;font-size:2rem;font-weight:700;text-align:center;color:var(--dark);margin-bottom:2.5rem;font-style:italic}
.deck-styles-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:1.5rem;max-width:1200px;margin:0 auto}
.deck-style-card{text-decoration:none;color:inherit;overflow:hidden;transition:transform .3s}
.deck-style-card:hover{transform:translateY(-4px)}
.deck-style-card img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block}
.deck-style-card .card-label{background:var(--dark3);color:#fff;text-align:center;padding:.8rem;font-family:'Playfair Display',serif;font-size:1rem;font-weight:600;font-style:italic}
@media(max-width:900px){.deck-styles-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:500px){.deck-styles-grid{grid-template-columns:1fr 1fr}}

/* PROJECT DETAIL */
.project-detail{background:var(--white);padding:4rem 3rem}
.project-detail-inner{max-width:1000px;margin:0 auto}
.project-meta{display:flex;align-items:center;gap:1.5rem;margin-bottom:2rem;flex-wrap:wrap}
.project-meta .date{color:var(--text-muted);font-size:.9rem}
.project-meta .category-tag{background:var(--orange);color:#fff;padding:.25rem .8rem;font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:1px}
.project-description{margin-bottom:3rem}
.project-description p{color:var(--text-light);line-height:1.8;margin-bottom:1rem;font-size:1rem}

/* PROJECT GALLERY */
.project-gallery{margin-bottom:3rem}
.project-gallery h2{font-family:'Playfair Display',serif;font-size:1.8rem;font-weight:700;font-style:italic;margin-bottom:1.5rem;color:var(--dark)}
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.gallery-grid img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:2px;cursor:pointer;transition:transform .3s}
.gallery-grid img:hover{transform:scale(1.02)}
@media(max-width:768px){.gallery-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:500px){.gallery-grid{grid-template-columns:1fr}}

/* PROJECT NAVIGATION */
.project-nav{display:flex;justify-content:space-between;border-top:1px solid #eee;padding-top:2rem;margin-top:2rem}
.project-nav a{color:var(--orange);text-decoration:none;font-weight:600;font-size:.9rem;display:flex;align-items:center;gap:.5rem;transition:color .3s}
.project-nav a:hover{color:var(--dark)}
.project-nav .next{margin-left:auto}

/* GALLERY PAGE SECTIONS */
.gallery-section{background:var(--white);padding:4rem 3rem;border-top:1px solid #eee}
.gallery-section h2{font-family:'Playfair Display',serif;font-size:2rem;font-weight:700;font-style:italic;text-align:center;margin-bottom:2rem;color:var(--dark)}
.gallery-section .gallery-grid{max-width:1200px;margin:0 auto}

/* SERVICES SECTION */
.services-section{background:var(--white);padding:4rem 3rem;border-top:1px solid #eee}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;max-width:1200px;margin:0 auto}
.service-card{text-align:center;padding:2rem 1.5rem;border:1px solid #eee;transition:all .3s}
.service-card:hover{border-color:var(--orange);transform:translateY(-4px);box-shadow:0 8px 30px rgba(0,0,0,.08)}
.service-card .icon{font-size:2.5rem;margin-bottom:1rem;color:var(--orange)}
.service-card h3{font-family:'Playfair Display',serif;font-size:1.3rem;font-weight:700;font-style:italic;margin-bottom:.8rem;color:var(--dark)}
.service-card p{color:var(--text-muted);font-size:.9rem;line-height:1.6}
@media(max-width:768px){.services-grid{grid-template-columns:1fr 1fr}}
@media(max-width:500px){.services-grid{grid-template-columns:1fr}}

/* ADVANTAGES */
.advantages-section{background:var(--bg);padding:4rem 3rem}
.advantages-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;max-width:1200px;margin:0 auto}
.advantage-item{text-align:center;padding:1.5rem}
.advantage-item .number{font-family:'Playfair Display',serif;font-size:3rem;font-weight:700;color:var(--orange);margin-bottom:.5rem}
.advantage-item h4{font-weight:700;margin-bottom:.5rem;color:var(--dark)}
.advantage-item p{color:var(--text-muted);font-size:.88rem;line-height:1.5}
@media(max-width:768px){.advantages-grid{grid-template-columns:1fr 1fr}}
@media(max-width:500px){.advantages-grid{grid-template-columns:1fr}}

/* COMPANY */
.company-section{background:var(--white);padding:4rem 3rem}
.company-inner{max-width:900px;margin:0 auto}
.company-inner h2{font-family:'Playfair Display',serif;font-size:2rem;font-weight:700;font-style:italic;color:var(--dark);margin-bottom:1.5rem}
.company-inner p{color:var(--text-light);line-height:1.8;margin-bottom:1rem;font-size:1rem}
.company-values{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin:3rem 0}
.company-value{text-align:center;padding:1.5rem}
.company-value h3{font-family:'Playfair Display',serif;font-size:1.2rem;font-weight:700;color:var(--dark);margin-bottom:.8rem;font-style:italic}
.company-value p{color:var(--text-muted);font-size:.9rem;line-height:1.6}
@media(max-width:600px){.company-values{grid-template-columns:1fr}}

/* TESTIMONIALS */
.testimonials-section{background:var(--bg);padding:4rem 3rem;border-top:1px solid #eee}
.testimonials-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem;max-width:1200px;margin:0 auto}
.testimonial-card{background:var(--white);padding:2rem;border:1px solid #eee;border-radius:2px}
.testimonial-text{color:var(--text-light);font-style:italic;line-height:1.8;margin-bottom:1rem;font-size:.95rem}
.testimonial-author{color:var(--dark);font-weight:700;font-size:.9rem}
@media(max-width:768px){.testimonials-grid{grid-template-columns:1fr}}

/* CONTACT */
.contact-section{background:var(--white);padding:4rem 3rem 5rem;border-top:1px solid #eee}
.contact-grid{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1.5fr;gap:3rem}
.contact-info{background:var(--orange);color:#fff;padding:2.5rem;border-radius:2px}
.contact-info h3{font-family:'Playfair Display',serif;font-size:1.8rem;font-weight:700;margin-bottom:.8rem;font-style:italic}
.contact-info p{font-size:.92rem;line-height:1.7;margin-bottom:1.5rem}
.contact-info a{color:#fff;text-decoration:none}
.contact-info img{max-width:150px;margin-top:.5rem}
.contact-form label{display:block;font-weight:600;font-size:.9rem;margin-bottom:.4rem;color:var(--dark)}
.contact-form label span{color:red}
.contact-form input,.contact-form textarea{width:100%;border:1px solid #ccc;padding:.7rem;font-size:.9rem;font-family:inherit;margin-bottom:1.2rem;border-radius:2px;transition:border .3s}
.contact-form input:focus,.contact-form textarea:focus{outline:none;border-color:var(--orange)}
.contact-form textarea{min-height:120px;resize:vertical}
.contact-form .name-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.contact-form .name-hint{font-size:.75rem;color:var(--text-muted);margin-top:-1rem;margin-bottom:1.2rem}
.btn-submit{background:var(--dark3);color:#fff;border:none;padding:1rem 2.5rem;font-size:.9rem;font-weight:600;cursor:pointer;transition:all .3s}
.btn-submit:hover{background:#444}
@media(max-width:768px){.contact-grid{grid-template-columns:1fr}}

/* FOOTER */
.footer{background:var(--dark);color:rgba(255,255,255,.6);padding:4rem 3rem}
.footer-grid{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr 1fr;gap:3rem;align-items:start}
.footer-brand{text-align:left}
.footer-brand img{width:100px;margin-bottom:.5rem}
.footer-logo{width:180px !important;margin-bottom:0 !important}
.footer-brand-name{font-size:1rem;letter-spacing:4px;text-transform:uppercase;color:var(--gold);margin-bottom:.2rem}
.footer-brand-tag{font-size:.7rem;letter-spacing:3px;text-transform:uppercase;color:var(--gold);opacity:.6}
.footer h4{color:var(--orange);font-size:.9rem;font-weight:700;margin-bottom:1rem;letter-spacing:1px}
.footer-links{list-style:none}
.footer-links li{margin-bottom:.5rem}
.footer-links a{color:rgba(255,255,255,.5);text-decoration:none;font-size:.88rem;transition:color .3s}
.footer-links a:hover{color:var(--orange)}
.footer-company p{font-size:.88rem;line-height:1.6;margin-bottom:.3rem}
.footer-company img{max-width:100px;margin-top:.5rem}
.copyright{background:var(--dark2);color:rgba(255,255,255,.4);text-align:center;padding:1rem;font-size:.82rem}
.copyright a{color:var(--orange);text-decoration:none}
@media(max-width:768px){.footer-grid{grid-template-columns:1fr}}

/* LIGHTBOX */
.lightbox{position:fixed;inset:0;z-index:200;background:rgba(0,0,0,.92);display:none;align-items:center;justify-content:center;cursor:zoom-out}
.lightbox.open{display:flex}
.lightbox img{max-width:90vw;max-height:90vh;object-fit:contain}
.lightbox-close{position:absolute;top:1.5rem;right:1.5rem;width:40px;height:40px;border:1px solid rgba(255,255,255,.3);background:none;color:#fff;font-size:1.2rem;cursor:pointer;display:flex;align-items:center;justify-content:center;border-radius:50%;transition:all .3s}
.lightbox-close:hover{background:rgba(255,255,255,.1)}
.lightbox-nav{position:absolute;top:50%;transform:translateY(-50%);width:50px;height:50px;border:1px solid rgba(255,255,255,.3);background:rgba(0,0,0,.4);color:#fff;font-size:2rem;cursor:pointer;display:flex;align-items:center;justify-content:center;border-radius:50%;transition:all .3s;line-height:1}
.lightbox-nav:hover{background:rgba(255,255,255,.15)}
.lightbox-prev{left:2rem}
.lightbox-next{right:2rem}
.lightbox-counter{position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);color:rgba(255,255,255,.6);font-size:.85rem}

/* FAQ */
.faq-section{background:var(--bg);padding:4rem 3rem;border-top:1px solid #eee}
.faq-list{max-width:900px;margin:0 auto}
.faq-item{background:var(--white);border:1px solid #eee;margin-bottom:1rem;border-radius:2px;overflow:hidden}
.faq-question{width:100%;display:flex;justify-content:space-between;align-items:center;padding:1.2rem 1.5rem;background:none;border:none;cursor:pointer;font-family:inherit;font-size:1rem;font-weight:600;color:var(--dark);text-align:left;transition:color .3s}
.faq-question:hover{color:var(--orange)}
.faq-question .faq-icon{font-size:1.4rem;color:var(--orange);transition:transform .3s;flex-shrink:0;margin-left:1rem}
.faq-item.open .faq-icon{transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .4s ease}
.faq-item.open .faq-answer{max-height:600px}
.faq-answer-inner{padding:0 1.5rem 1.5rem;color:var(--text-light);font-size:.95rem;line-height:1.8}

/* ANIMATIONS */
.reveal{opacity:0;transform:translateY(30px);transition:opacity .7s,transform .7s}
.reveal.visible{opacity:1;transform:translateY(0)}

/* CONTENT PAGE BODY */
.content-section{background:var(--white);padding:4rem 3rem}
.content-inner{max-width:1000px;margin:0 auto}
.content-inner h2{font-family:'Playfair Display',serif;font-size:2rem;font-weight:700;font-style:italic;color:var(--dark);margin:2rem 0 1rem}
.content-inner p{color:var(--text-light);line-height:1.8;margin-bottom:1rem;font-size:1rem}
