/*
Theme Name: Custom Auto Theme
Author: System
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
:root{
  --bg:#F5EFE6;--surface:#EDE0D0;--brown:#6B5B3E;--amber:#A67C52;--pine:#4A6741;
  --text:#3D2B1F;--light:#FAF6F0;--muted:#8C7B6B;--radius:20px;
  --shadow:0 4px 24px rgba(61,43,31,0.10);--shadow-sm:0 2px 10px rgba(61,43,31,0.07);
}
html{scroll-behavior:smooth;font-size:16px;}
body{font-family:'Lato',sans-serif;background:var(--bg);color:var(--text);line-height:1.8;min-height:100vh;display:flex;flex-direction:column;overflow-x:hidden;position:relative;}
body::before{content:'';position:fixed;inset:0;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)' opacity='0.5'/%3E%3C/svg%3E");opacity:0.04;pointer-events:none;z-index:9997;}
h1,h2,h3,h4,h5{font-family:'Playfair Display',serif;color:var(--brown);line-height:1.25;}
a{color:var(--amber);text-decoration:none;transition:color 0.2s;}
a:hover{color:var(--pine);}
img{max-width:100%;height:auto;border-radius:var(--radius);display:block;}
.container{width:100%;max-width:1100px;margin:0 auto;padding:0 1.5rem;}
.site-header{background:rgba(250,246,240,0.95);border-bottom:1px solid var(--surface);position:sticky;top:0;z-index:100;backdrop-filter:blur(10px);}
.nav-inner{display:flex;align-items:center;justify-content:space-between;padding:1rem 2rem;max-width:1100px;margin:0 auto;flex-wrap:wrap;gap:1rem;}
.site-logo{font-family:'Playfair Display',serif;font-size:1.7rem;font-weight:700;color:var(--brown);letter-spacing:0.04em;}
#nav-toggle{display:none;}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none;padding:0.3rem;}
.hamburger span{display:block;width:24px;height:2px;background:var(--brown);border-radius:2px;transition:0.3s;}
.nav-links{display:flex;gap:2rem;list-style:none;align-items:center;}
.nav-links a{color:var(--text);font-size:0.92rem;font-weight:400;letter-spacing:0.02em;transition:color 0.2s;}
.nav-links a:hover{color:var(--amber);}
@media(max-width:768px){
  .hamburger{display:flex;}
  .nav-links{display:none;width:100%;flex-direction:column;gap:0;background:var(--light);padding:1rem 0;border-top:1px solid var(--surface);}
  .nav-links li{width:100%;}
  .nav-links a{display:block;padding:0.75rem 2rem;}
  #nav-toggle:checked ~ .nav-links{display:flex;}
}
.site-footer{background:var(--brown);color:rgba(245,239,230,0.85);padding:3.5rem 1.5rem 0;margin-top:auto;}
.footer-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:3rem;}
@media(max-width:768px){.footer-inner{grid-template-columns:1fr;gap:2rem;}}
.footer-logo{font-family:'Playfair Display',serif;font-size:1.5rem;color:var(--bg);margin-bottom:0.75rem;}
.footer-desc{font-size:0.875rem;line-height:1.8;max-width:280px;}
.footer-col-title{font-family:'Playfair Display',serif;color:var(--bg);font-size:1rem;margin-bottom:1rem;}
.footer-links{list-style:none;}
.footer-links li{margin-bottom:0.5rem;}
.footer-links a{color:rgba(245,239,230,0.7);font-size:0.875rem;transition:color 0.2s;}
.footer-links a:hover{color:var(--bg);}
.footer-bottom{text-align:center;padding:1.5rem 0;font-size:0.8rem;color:rgba(245,239,230,0.45);border-top:1px solid rgba(245,239,230,0.15);margin-top:2.5rem;}
#cookie-accept{display:none;}
.cookie-banner{position:fixed;bottom:1.5rem;right:1.5rem;width:min(380px,calc(100vw - 3rem));background:var(--light);border:1px solid var(--surface);border-radius:var(--radius);padding:1.5rem;box-shadow:var(--shadow);z-index:9999;animation:slideUp 0.5s ease;}
@keyframes slideUp{from{transform:translateY(30px);opacity:0;}to{transform:translateY(0);opacity:1;}}
#cookie-accept:checked ~ .cookie-banner{display:none;}
.cookie-banner-title{font-family:'Playfair Display',serif;font-size:1.05rem;color:var(--brown);margin-bottom:0.6rem;}
.cookie-banner p{font-size:0.85rem;margin-bottom:1rem;line-height:1.65;color:var(--muted);}
.cookie-banner .btn-accept{display:inline-block;background:var(--pine);color:#fff;padding:0.55rem 1.4rem;border-radius:50px;cursor:pointer;font-size:0.875rem;font-weight:700;transition:background 0.2s;}
.cookie-banner .btn-accept:hover{background:var(--brown);}
.btn{display:inline-block;background:var(--amber);color:#fff;padding:0.8rem 2rem;border-radius:50px;font-weight:700;font-size:0.95rem;letter-spacing:0.03em;transition:background 0.2s,transform 0.2s;border:none;cursor:pointer;}
.btn:hover{background:var(--brown);transform:translateY(-2px);color:#fff;}
.btn-outline{background:transparent;color:var(--amber);border:2px solid var(--amber);}
.btn-outline:hover{background:var(--amber);color:#fff;transform:translateY(-2px);}
.btn-pine{background:var(--pine);}
.btn-pine:hover{background:#3a5332;}
.hero{position:relative;min-height:88vh;display:flex;align-items:center;overflow:hidden;background:linear-gradient(160deg,#4A3728 0%,#6B5B3E 40%,#4A6741 100%);}
.hero-blob{position:absolute;border-radius:60% 40% 30% 70%/60% 30% 70% 40%;animation:blobAnim 9s ease-in-out infinite;}
.hero-blob-1{width:500px;height:500px;background:rgba(166,124,82,0.15);top:-100px;right:-100px;}
.hero-blob-2{width:300px;height:300px;background:rgba(74,103,65,0.2);bottom:-50px;left:-50px;animation-delay:3s;}
@keyframes blobAnim{0%,100%{border-radius:60% 40% 30% 70%/60% 30% 70% 40%;}50%{border-radius:30% 60% 70% 40%/50% 60% 30% 60%;}}
.hero-content{position:relative;z-index:2;max-width:720px;padding:4rem 2rem;margin:0 auto;text-align:center;}
.hero-eyebrow{display:inline-block;background:rgba(255,255,255,0.12);color:rgba(255,255,255,0.88);font-size:0.78rem;letter-spacing:0.18em;text-transform:uppercase;padding:0.4rem 1.3rem;border-radius:50px;margin-bottom:1.75rem;border:1px solid rgba(255,255,255,0.25);}
.hero h1{font-size:clamp(2.4rem,5.5vw,4rem);color:#fff;margin-bottom:1.25rem;text-shadow:0 2px 30px rgba(0,0,0,0.15);}
.hero p{color:rgba(255,255,255,0.88);font-size:1.1rem;margin-bottom:2.5rem;max-width:520px;margin-left:auto;margin-right:auto;}
.hero-cta{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;}
section{padding:5rem 1.5rem;}
.section-label{display:inline-block;font-size:0.78rem;letter-spacing:0.16em;text-transform:uppercase;color:var(--amber);font-weight:700;margin-bottom:0.75rem;}
.section-title{font-size:clamp(1.9rem,3.5vw,2.7rem);margin-bottom:0.6rem;text-align:center;}
.section-sub{text-align:center;color:var(--muted);font-size:0.98rem;max-width:540px;margin:0 auto 3rem;line-height:1.75;}
.divider{width:50px;height:3px;background:linear-gradient(90deg,var(--amber),var(--pine));border-radius:2px;margin:0.6rem auto 1.5rem;}
.cards-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;max-width:1100px;margin:0 auto;}
.card{background:var(--light);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-sm);transition:transform 0.3s,box-shadow 0.3s;display:flex;flex-direction:column;}
.card:hover{transform:translateY(-7px);box-shadow:var(--shadow);}
.card-body{padding:2rem;flex:1;display:flex;flex-direction:column;}
.card-tag{display:inline-block;background:var(--surface);color:var(--amber);font-size:0.72rem;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;padding:0.3rem 1rem;border-radius:50px;margin-bottom:1.1rem;}
.card h3{margin-bottom:0.75rem;font-size:1.35rem;}
.card p{color:var(--muted);font-size:0.9rem;margin-bottom:1.5rem;line-height:1.75;flex:1;}
.card-link{font-size:0.875rem;font-weight:700;color:var(--amber);display:inline-flex;align-items:center;gap:0.5rem;margin-top:auto;}
.card-link::after{content:'→';transition:transform 0.2s;}
.card:hover .card-link::after{transform:translateX(4px);}
.about-wrap{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center;}
@media(max-width:768px){.about-wrap{grid-template-columns:1fr;gap:2.5rem;}}
.about-image-box{position:relative;}
.about-image-box img{border-radius:50% 30% 60% 40%/40% 60% 30% 60%;box-shadow:var(--shadow);}
.about-image-box::before{content:'';position:absolute;inset:-15px;background:linear-gradient(135deg,var(--amber),var(--pine));border-radius:50% 30% 60% 40%/40% 60% 30% 60%;z-index:-1;opacity:0.25;}
.about-eyebrow{font-size:0.78rem;letter-spacing:0.16em;text-transform:uppercase;color:var(--amber);font-weight:700;margin-bottom:1rem;}
.about-text h2{font-size:2rem;margin-bottom:1.25rem;}
.about-text p{color:var(--muted);margin-bottom:1.1rem;line-height:1.8;}
.philosophy-bg{background:var(--surface);}
.philosophy-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:2rem;max-width:1100px;margin:0 auto;}
.phil-item{background:var(--light);border-radius:var(--radius);padding:2.25rem 2rem;text-align:center;box-shadow:var(--shadow-sm);position:relative;overflow:hidden;}
.phil-item::after{content:'';position:absolute;bottom:-30px;right:-30px;width:100px;height:100px;background:var(--surface);border-radius:50%;}
.phil-icon{font-size:2.8rem;margin-bottom:1.1rem;position:relative;z-index:1;}
.phil-item h3{font-size:1.2rem;margin-bottom:0.75rem;position:relative;z-index:1;}
.phil-item p{color:var(--muted);font-size:0.875rem;line-height:1.75;position:relative;z-index:1;}
.subscribe-wrap{background:linear-gradient(135deg,#4A3728 0%,var(--brown) 50%,#3d5636 100%);border-radius:calc(var(--radius)*2);max-width:680px;margin:0 auto;padding:4.5rem 3rem;text-align:center;position:relative;overflow:hidden;}
.subscribe-wrap::before{content:'';position:absolute;top:-60px;right:-60px;width:200px;height:200px;background:rgba(255,255,255,0.05);border-radius:50%;}
.subscribe-wrap::after{content:'';position:absolute;bottom:-40px;left:-40px;width:150px;height:150px;background:rgba(255,255,255,0.04);border-radius:50%;}
@media(max-width:600px){.subscribe-wrap{padding:3rem 1.5rem;}}
.subscribe-wrap h2{color:#fff;margin-bottom:0.75rem;}
.subscribe-wrap p{color:rgba(255,255,255,0.78);margin-bottom:2rem;max-width:440px;margin-left:auto;margin-right:auto;}
.subscribe-form{display:grid;gap:0.9rem;position:relative;z-index:1;}
.subscribe-form input{width:100%;padding:0.9rem 1.3rem;border-radius:12px;border:1px solid rgba(255,255,255,0.2);background:rgba(255,255,255,0.1);color:#fff;font-size:0.95rem;outline:none;transition:border-color 0.2s,background 0.2s;font-family:'Lato',sans-serif;}
.subscribe-form input::placeholder{color:rgba(255,255,255,0.5);}
.subscribe-form input:focus{border-color:rgba(255,255,255,0.55);background:rgba(255,255,255,0.18);}
.subscribe-form button{width:100%;font-size:1rem;}
.article-hero{background:var(--surface);padding:5rem 1.5rem 3.5rem;text-align:center;position:relative;overflow:hidden;}
.article-hero::before{content:'';position:absolute;top:-80px;right:-80px;width:300px;height:300px;background:rgba(107,91,62,0.07);border-radius:50%;}
.article-eyebrow{font-size:0.78rem;letter-spacing:0.16em;text-transform:uppercase;color:var(--amber);font-weight:700;margin-bottom:1rem;}
.article-hero h1{font-size:clamp(2rem,4.5vw,3.2rem);max-width:750px;margin:0 auto 1.25rem;}
.article-meta{color:var(--muted);font-size:0.85rem;display:flex;justify-content:center;gap:1.5rem;flex-wrap:wrap;}
.article-feat-img{max-width:900px;margin:3rem auto 0;padding:0 1.5rem;border-radius:var(--radius);overflow:hidden;}
.article-feat-img img{width:100%;border-radius:var(--radius);box-shadow:var(--shadow);}
.article-body{max-width:740px;margin:0 auto;padding:4rem 1.5rem;}
.article-body h2{font-size:1.7rem;margin:3rem 0 1.1rem;color:var(--brown);}
.article-body h3{font-size:1.25rem;margin:2rem 0 0.75rem;color:var(--amber);}
.article-body p{margin-bottom:1.3rem;color:var(--text);line-height:1.85;}
.article-body blockquote{border-left:4px solid var(--amber);padding:1.25rem 1.75rem;margin:2.5rem 0;background:var(--surface);border-radius:0 var(--radius) var(--radius) 0;font-style:italic;color:var(--brown);font-size:1.05rem;line-height:1.7;}
.article-body ul{padding-left:1.5rem;margin-bottom:1.3rem;}
.article-body ul li{margin-bottom:0.6rem;color:var(--text);line-height:1.75;}
.fact-box{background:linear-gradient(135deg,#F0EBE3,#E8DDD2);border-radius:var(--radius);padding:1.75rem;margin:2rem 0;border:1px solid var(--surface);}
.fact-box h3{color:var(--brown);margin-bottom:0.75rem;font-size:1.1rem;}
.fact-box p{color:var(--text);font-size:0.9rem;margin-bottom:0;}
.source-note{font-size:0.78rem;color:var(--muted);font-style:italic;margin-top:0.5rem;}
.disclaimer{background:linear-gradient(135deg,#FFF9F4,#FDF3EC);border:1px solid var(--surface);border-left:4px solid var(--amber);border-radius:0 var(--radius) var(--radius) 0;padding:1.75rem;margin-top:3.5rem;font-size:0.875rem;color:var(--muted);line-height:1.75;}
.disclaimer strong{color:var(--brown);}
.breadcrumb{font-size:0.82rem;color:var(--muted);margin-bottom:2rem;}
.breadcrumb a{color:var(--amber);}
.breadcrumb span{margin:0 0.4rem;opacity:0.5;}
.legal-wrap{max-width:820px;margin:0 auto;padding:5rem 1.5rem;}
.legal-wrap h1{font-size:2.2rem;margin-bottom:0.5rem;}
.legal-date{color:var(--muted);font-size:0.85rem;margin-bottom:3rem;display:block;}
.legal-wrap h2{font-size:1.35rem;margin:2.5rem 0 0.9rem;color:var(--brown);}
.legal-wrap p{margin-bottom:1rem;color:var(--text);line-height:1.8;}
.legal-wrap ul{padding-left:1.5rem;margin-bottom:1rem;}
.legal-wrap ul li{margin-bottom:0.5rem;color:var(--text);}
.legal-wrap a{color:var(--amber);}
.success-main{min-height:70vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:3rem 1.5rem;flex:1;}
.success-card{background:var(--light);border-radius:calc(var(--radius)*2);padding:4rem 3rem;max-width:520px;box-shadow:var(--shadow);}
.success-icon{font-size:4.5rem;margin-bottom:1.25rem;}
.success-card h1{font-size:2.1rem;margin-bottom:1rem;}
.success-card p{color:var(--muted);margin-bottom:2rem;line-height:1.8;}
.error-main{min-height:70vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:3rem 1.5rem;flex:1;}
.error-num{font-family:'Playfair Display',serif;font-size:clamp(5rem,15vw,9rem);color:var(--surface);font-weight:700;display:block;line-height:1;margin-bottom:0.5rem;text-shadow:0 4px 20px rgba(107,91,62,0.1);}
.error-main h2{font-size:1.9rem;margin-bottom:0.75rem;}
.error-main p{color:var(--muted);max-width:400px;margin:0 auto 2rem;}
@media(max-width:768px){section{padding:3.5rem 1.5rem;}.hero{min-height:75vh;}}
