@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --color-primary:#37474f;
  --color-secondary:#546e7a;
  --color-accent:#d84315;
  --color-accent-dark:#bf360c;
  --color-text:#1a1f23;
  --color-muted:#6b7280;
  --color-bg:#fafaf8;
  --color-surface:#f0f2f4;
  --color-border:#e2e6ea;
  --color-white:#ffffff;
  --font-display:'Playfair Display',serif;
  --font-body:'Inter',system-ui,sans-serif;
  --radius:10px;
  --shadow-sm:0 1px 3px rgba(0,0,0,.06);
  --shadow-md:0 4px 18px rgba(0,0,0,.08);
  --max:1200px;
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:var(--font-body);color:var(--color-text);background:var(--color-bg);line-height:1.6;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{color:var(--color-accent);text-decoration:none}
a:hover{text-decoration:underline}
h1,h2,h3,h4{font-family:var(--font-display);color:var(--color-primary);line-height:1.2;margin:0 0 .6em}
h1{font-size:clamp(1.9rem,4vw,3rem)}
h2{font-size:clamp(1.5rem,2.6vw,2.1rem)}
h3{font-size:1.25rem}
p{margin:0 0 1em}
ul{margin:0 0 1em;padding-left:1.2em}
button{font-family:inherit;cursor:pointer;border:0;background:none}
:focus-visible{outline:2px solid var(--color-accent);outline-offset:2px}

.cr-cre-8wh7-layout{max-width:var(--max);margin:0 auto;padding:0 1.25rem;width:100%}
.cr-cre-8wh7-block{padding:3.5rem 0}
.cr-cre-8wh7-block--alt{background:var(--color-surface)}
.cr-cre-8wh7-h-center{text-align:center}
.cr-cre-8wh7-h-sub{text-align:center;color:var(--color-muted);max-width:680px;margin:0 auto 2rem}

.cr-cre-8wh7-push{display:inline-block;padding:.85rem 1.6rem;border-radius:var(--radius);font-weight:600;font-size:.95rem;transition:.2s;border:1px solid transparent;text-decoration:none}
.cr-cre-8wh7-push--primary{background:var(--color-accent);color:#fff}
.cr-cre-8wh7-push--primary:hover{background:var(--color-accent-dark);text-decoration:none}
.cr-cre-8wh7-push--secondary{background:var(--color-primary);color:#fff}
.cr-cre-8wh7-push--outline{background:transparent;color:var(--color-primary);border-color:var(--color-primary)}

/* Header */
.cr-cre-8wh7-nav-bar{position:sticky;top:0;background:#fff;border-bottom:1px solid var(--color-border);z-index:1000;box-shadow:var(--shadow-sm)}
.cr-cre-8wh7-nav-bar__inner{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;padding:.85rem 1.25rem;max-width:var(--max);margin:0 auto}
.cr-cre-8wh7-nav-bar__left{display:flex;align-items:center;gap:1.75rem;flex:1}
.cr-cre-8wh7-nav-bar__logo img{height:26px;width:auto}
.cr-cre-8wh7-nav-bar__nav{display:flex;align-items:center;gap:1.1rem}
.cr-cre-8wh7-nav-bar__nav a{color:var(--color-primary);font-weight:500;font-size:14px;text-decoration:none;padding:.4rem 0}
.cr-cre-8wh7-nav-bar__nav a:hover{color:var(--color-accent)}
.cr-cre-8wh7-nav-bar__right{display:flex;align-items:center;gap:.85rem}
.cr-cre-8wh7-nav-bar__cta{padding:.55rem 1rem;background:var(--color-accent);color:#fff;border-radius:var(--radius);font-weight:600;font-size:13px}
.cr-cre-8wh7-nav-bar__menu-btn{display:none;font-size:1.5rem;color:var(--color-primary)}
.cr-cre-8wh7-dropdown{position:relative}
.cr-cre-8wh7-dropdown__btn{background:none;color:var(--color-primary);font-weight:500;font-size:14px;display:inline-flex;align-items:center;gap:.3rem;padding:.4rem 0;font-family:inherit}
.cr-cre-8wh7-dropdown__panel{display:none;position:absolute;top:100%;left:0;background:#fff;border:1px solid var(--color-border);border-radius:var(--radius);box-shadow:var(--shadow-md);min-width:240px;padding:.4rem 0;z-index:200}
.cr-cre-8wh7-dropdown:hover .cr-cre-8wh7-dropdown__panel,.cr-cre-8wh7-dropdown:focus-within .cr-cre-8wh7-dropdown__panel{display:block}
.cr-cre-8wh7-dropdown__panel a{display:block;padding:.6rem 1rem;font-size:14px}
.cr-cre-8wh7-dropdown__panel a:hover{background:var(--color-surface)}

/* Mobile menu */
.cr-cre-8wh7-mobile-overlay{display:block;position:fixed;top:0;right:0;bottom:0;width:85%;max-width:340px;background:#fff;z-index:1500;padding:5rem 1.5rem 2rem;overflow-y:auto;box-shadow:-4px 0 20px rgba(0,0,0,.15);transform:translateX(100%);transition:transform .3s;visibility:hidden}
.cr-cre-8wh7-mobile-overlay.is-open{transform:translateX(0);visibility:visible}
.cr-cre-8wh7-mobile-close{position:absolute;top:1rem;right:1rem;font-size:1.4rem;color:var(--color-primary);background:none;border:none;cursor:pointer;padding:.5rem;line-height:1;border-bottom:none!important}
.cr-cre-8wh7-mobile-overlay a,.cr-cre-8wh7-mobile-overlay button{display:block;padding:.85rem 0;font-size:16px;color:var(--color-primary);font-weight:500;border-bottom:1px solid var(--color-border);text-align:left;width:100%;font-family:inherit}
.cr-cre-8wh7-mobile-sub{padding-left:1rem;display:none}
.cr-cre-8wh7-mobile-sub.is-open{display:block}

/* Hero */
.cr-cre-8wh7-banner{position:relative;background:url('/static/crete-main-slider.webp') center/cover no-repeat,linear-gradient(135deg,#263238 0%,#37474f 100%);color:#fff;padding:3.5rem 9px 4rem}
.cr-cre-8wh7-banner__overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(38,50,56,.78),rgba(55,71,79,.7));pointer-events:none}
.cr-cre-8wh7-banner__inner{position:relative;display:flex;flex-direction:column;gap:2rem;padding-top:5px;padding-bottom:6px}
.cr-cre-8wh7-banner__copy{text-align:center;max-width:880px;margin:0 auto}
.cr-cre-8wh7-banner__copy h1{color:#fff}
.cr-cre-8wh7-banner__copy p{color:rgba(255,255,255,.92);font-size:1.05rem}
.cr-cre-8wh7-banner__eyebrow{display:inline-flex;align-items:center;gap:.5rem;background:var(--color-accent);color:#fff;padding:.4rem .9rem;border-radius:999px;font-size:.8rem;font-weight:600;margin-bottom:1rem}
.cr-cre-8wh7-banner__trust{display:flex;flex-wrap:wrap;justify-content:center;gap:1rem 1.5rem;margin-top:1.2rem;font-size:.9rem}
.cr-cre-8wh7-banner__trust span{display:inline-flex;align-items:center;gap:.4rem;color:rgba(255,255,255,.95)}
.cr-cre-8wh7-banner__trust i{color:var(--color-accent)}
.cr-cre-8wh7-banner__widget{width:100%}
.cr-cre-8wh7-ads2{padding:1.5rem 1.25rem 0}

/* Feature strip */
.cr-cre-8wh7-feature-strip{display:flex;flex-wrap:nowrap;justify-content:space-between;align-items:center;gap:.75rem;padding:1.25rem 1.5rem;background:var(--color-surface);border-radius:var(--radius);border:1px solid var(--color-border);width:100%;margin-left:auto;margin-right:auto;overflow:hidden}
@media(max-width:900px){.cr-cre-8wh7-feature-strip{flex-wrap:wrap;width:100%}}
.cr-cre-8wh7-feature-strip .cr-cre-8wh7-panel{display:flex;align-items:center;gap:.5rem;background:transparent;white-space:nowrap;flex-shrink:1;min-width:0}
.cr-cre-8wh7-feature-strip i{color:var(--color-accent);font-size:1.2rem}
.cr-cre-8wh7-feature-strip p{margin:0;font-weight:500;font-size:.82rem;color:var(--color-primary);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}

/* Scenegrid */
.cr-cre-8wh7-scenegrid-8w{display:grid;grid-template-columns:3fr 2fr;gap:2.5rem;align-items:start}
.cr-cre-8wh7-scenegrid-8w--reverse .cr-cre-8wh7-scenegrid-8w__media{order:-1}
.cr-cre-8wh7-scenegrid-8w__media img{border-radius:var(--radius);box-shadow:var(--shadow-md);transition:transform .4s;cursor:pointer}
.cr-cre-8wh7-scenegrid-8w__media img:hover{transform:scale(1.03)}
.cr-cre-8wh7-scenegrid-8w--wrap::after{content:"";display:table;clear:both}
.cr-cre-8wh7-scenegrid-8w--wrap{display:block}
.cr-cre-8wh7-scenegrid-8w--wrap .cr-cre-8wh7-scenegrid-8w__media{float:right;width:42%;margin:0 0 1rem 1.5rem}

/* Gallery */
.cr-cre-8wh7-gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.25rem;margin:0 0 1.5rem}
.cr-cre-8wh7-gallery figure{margin:0;border-radius:var(--radius);overflow:hidden;background:#fff;box-shadow:var(--shadow-sm)}
.cr-cre-8wh7-gallery img{width:100%;height:260px;object-fit:cover;transition:transform .5s;cursor:pointer}
.cr-cre-8wh7-gallery img:hover{transform:scale(1.05)}
.cr-cre-8wh7-gallery figcaption{padding:.75rem 1rem;font-size:.9rem;color:var(--color-muted)}

/* Timeline */
.cr-cre-8wh7-timeline{width:100%;height:auto;max-width:900px;margin:0 auto;display:block}

/* Reviews */
.cr-cre-8wh7-reviews{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.25rem}
.cr-cre-8wh7-review{background:#fff;padding:1.25rem;border-radius:var(--radius);border:1px solid var(--color-border)}
.cr-cre-8wh7-review p{font-size:.95rem;font-style:italic}
.cr-cre-8wh7-review small{color:var(--color-muted)}
.cr-cre-8wh7-stars{color:#f5a623;margin-bottom:.5rem;font-size:.85rem}

/* FAQ */
.cr-cre-8wh7-faq-grid{display:grid;grid-template-columns:2fr 1fr;gap:2rem;align-items:start}
.cr-cre-8wh7-ask{border:1px solid var(--color-border);border-radius:var(--radius);margin-bottom:.75rem;background:#fff;overflow:hidden}
.cr-cre-8wh7-ask__question{display:flex;justify-content:space-between;align-items:center;width:100%;padding:1rem 1.2rem;font-weight:600;color:var(--color-primary);font-size:.98rem;text-align:left}
.cr-cre-8wh7-ask__question i{color:var(--color-accent);transition:transform .3s}
.cr-cre-8wh7-ask.is-open .cr-cre-8wh7-ask__question i{transform:rotate(45deg)}
.cr-cre-8wh7-ask__answer{max-height:0;overflow:hidden;transition:max-height .3s;padding:0 1.2rem}
.cr-cre-8wh7-ask.is-open .cr-cre-8wh7-ask__answer{max-height:400px;padding:0 1.2rem 1rem}
.cr-cre-8wh7-faq-tips{background:var(--color-primary);color:#fff;padding:1.5rem;border-radius:var(--radius);position:sticky;top:90px}
.cr-cre-8wh7-faq-tips h3{color:#fff;font-family:var(--font-body);font-size:1rem;display:flex;align-items:center;gap:.5rem}
.cr-cre-8wh7-faq-tips ul{padding-left:1.1rem;font-size:.9rem;color:rgba(255,255,255,.92)}
.cr-cre-8wh7-faq-tips li{margin-bottom:.5rem}

/* Map */
.cr-cre-8wh7-map-panel{display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:center}
.cr-cre-8wh7-map-frame{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-md)}
.cr-cre-8wh7-map-frame iframe{width:100%;height:340px;border:0;display:block}

/* CTA strip */
.cr-cre-8wh7-cta-strip{background:var(--color-primary);color:#fff}
.cr-cre-8wh7-cta-strip h2{color:#fff;margin-bottom:.3em}
.cr-cre-8wh7-cta-strip p{color:rgba(255,255,255,.85);margin:0}
.cr-cre-8wh7-cta-inner{display:flex;justify-content:space-between;align-items:center;gap:1.5rem;flex-wrap:wrap}

/* Footer */
.cr-cre-8wh7-base-bar{background:var(--color-primary);color:#cfd8dc;padding:3rem 0 0;margin-top:3rem}
.cr-cre-8wh7-base-bar__grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:2.5rem;padding:0 1.25rem;max-width:var(--max);margin:0 auto}
.cr-cre-8wh7-base-bar__brand img{margin-bottom:1rem}
.cr-cre-8wh7-base-bar__brand p,.cr-cre-8wh7-base-bar__contact p{color:#cfd8dc;font-size:.9rem;margin-bottom:.4rem}
.cr-cre-8wh7-base-bar h4{color:#fff;font-family:var(--font-body);font-size:.95rem;text-transform:uppercase;letter-spacing:.05em;margin-bottom:1rem}
.cr-cre-8wh7-base-bar ul{list-style:none;padding:0}
.cr-cre-8wh7-base-bar li{margin-bottom:.5rem}
.cr-cre-8wh7-base-bar a{color:#cfd8dc;font-size:.9rem}
.cr-cre-8wh7-base-bar a:hover{color:var(--color-accent);text-decoration:none}
.cr-cre-8wh7-base-bar__bottom{border-top:1px solid rgba(255,255,255,.1);margin-top:2.5rem;padding:1.25rem;text-align:center;font-size:.85rem;color:#90a4ae}

/* Language selector */
.language-selector{position:relative}
.language-selector .current-lang{cursor:pointer;display:flex;align-items:center;gap:6px;padding:6px 10px;border-radius:6px;font-size:13px;color:var(--color-primary)}
.language-selector .current-lang:hover{background:var(--color-surface)}
.language-dropdown{display:none;position:absolute;top:100%;right:0;background:transparent;z-index:3000;min-width:140px;padding-top:6px;max-height:320px}
.language-dropdown-inner{background:#fff;border:1px solid var(--color-border);border-radius:var(--radius);box-shadow:var(--shadow-md);padding:4px 0;max-height:300px;overflow-y:auto}
.language-selector:hover .language-dropdown{display:block}
.language-dropdown a,.language-dropdown-inner .language-option{display:flex;align-items:center;gap:8px;padding:8px 16px;font-size:13px;color:var(--color-text)}
.language-dropdown a:hover,.language-dropdown-inner .language-option:hover{background:var(--color-surface);text-decoration:none}

/* Cookie */
.cookie-consent{position:fixed;bottom:0;left:0;right:0;background:rgba(38,50,56,.97);color:#fff;padding:1rem 1.25rem;z-index:9999;display:none;flex-wrap:wrap;align-items:center;gap:1rem;justify-content:center;box-shadow:0 -4px 20px rgba(0,0,0,.2)}
.cookie-consent.is-visible{display:flex}
.cookie-consent__text{font-size:.9rem;margin:0;flex:1;min-width:240px}
.cookie-consent__link{color:var(--color-accent);text-decoration:underline}
.cookie-consent__accept{background:var(--color-accent);color:#fff;padding:.55rem 1.2rem;border-radius:var(--radius);font-weight:600;font-size:.85rem}
.cookie-consent__decline{background:transparent;color:#cfd8dc;padding:.55rem 1rem;font-size:.85rem;text-decoration:underline}

/* Anim */
[data-anim="reveal"]{opacity:0;transform:translateY(20px);transition:opacity .7s,transform .7s}
[data-anim="reveal"].is-visible{opacity:1;transform:none}

@media (max-width:1024px){
  .cr-cre-8wh7-base-bar__grid{grid-template-columns:1fr 1fr;gap:2rem}
  .cr-cre-8wh7-faq-grid{grid-template-columns:1fr}
  .cr-cre-8wh7-map-panel{grid-template-columns:1fr}
}
@media (max-width:768px){
  .cr-cre-8wh7-nav-bar__nav{display:none}
  .cr-cre-8wh7-nav-bar__menu-btn{display:block}
  .cr-cre-8wh7-nav-bar__cta{display:none}
  .cr-cre-8wh7-scenegrid-8w{grid-template-columns:1fr}
  .cr-cre-8wh7-scenegrid-8w--reverse .cr-cre-8wh7-scenegrid-8w__media{order:0}
  .cr-cre-8wh7-scenegrid-8w--wrap .cr-cre-8wh7-scenegrid-8w__media{float:none;width:100%;margin:0 0 1rem}
  .cr-cre-8wh7-block{padding:2.5rem 0}
  .cr-cre-8wh7-base-bar__grid{grid-template-columns:1fr}
  .cr-cre-8wh7-cta-inner{flex-direction:column;text-align:center}
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition:none!important}
  [data-anim="reveal"]{opacity:1;transform:none}
}
@media print{
  .cr-cre-8wh7-nav-bar,.cr-cre-8wh7-base-bar,.cookie-consent{display:none}
}