/* ── HERO ── */
.hero{min-height:100vh;background:var(--teal-rich);position:relative;display:flex;align-items:center;overflow:hidden;padding-top:68px;}
.hero-texture{position:absolute;inset:0;background-image:radial-gradient(circle at 15% 50%,rgba(10,45,46,0.8) 0%,transparent 55%),radial-gradient(circle at 85% 20%,rgba(67,110,111,0.3) 0%,transparent 45%),radial-gradient(circle at 60% 80%,rgba(222,174,159,0.07) 0%,transparent 40%);}
.hero-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(239,215,207,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(239,215,207,0.04) 1px,transparent 1px);background-size:60px 60px;}
.hero-content{position:relative;z-index:2;padding:0 5% 100px;max-width:680px;animation:fadeUp 1s ease-out both;}
.hero-eyebrow{display:inline-flex;align-items:center;gap:8px;border:1px solid rgba(222,174,159,0.3);color:var(--blush);font-size:11px;font-weight:400;letter-spacing:0.2em;text-transform:uppercase;padding:7px 16px;border-radius:2px;margin-bottom:32px;}
.eyebrow-dot{width:5px;height:5px;border-radius:50%;background:var(--blush);animation:blink 2.5s ease-in-out infinite;flex-shrink:0;}
@keyframes blink{0%,100%{opacity:1;}50%{opacity:0.3;}}
.hero h1{font-family:var(--font-display);font-size:clamp(48px,7.5vw,86px);font-weight:900;color:var(--white);line-height:1.03;letter-spacing:-0.03em;margin-bottom:10px;}
.hero h1 em{font-style:italic;color:var(--blush-soft);}
.hero h1 .line-accent{color:var(--blush);}
.hero-sub{font-size:clamp(15px,1.8vw,18px);font-weight:300;color:rgba(255,255,255,0.55);line-height:1.7;margin:24px 0 40px;max-width:500px;}
.hero-btns{display:flex;gap:14px;flex-wrap:wrap;}
.hero-right{position:absolute;right:0;top:0;bottom:0;width:42%;display:flex;align-items:center;justify-content:center;z-index:1;}
.hero-cert-stack{display:flex;flex-direction:column;gap:16px;padding:40px;animation:fadeUp 1s ease-out 0.3s both;}
.cert-card{background:rgba(10,45,46,0.6);border:1px solid rgba(239,215,207,0.12);border-radius:8px;padding:18px 22px;backdrop-filter:blur(8px);}
.cert-card-line{width:28px;height:2px;background:var(--blush);border-radius:1px;margin-bottom:10px;}
.cert-card h4{font-family:var(--font-display);font-size:15px;font-weight:700;color:var(--white);margin-bottom:4px;}
.cert-card p{font-size:12px;color:var(--sage);font-weight:300;}
.cert-badge-label{font-size:10px;letter-spacing:0.12em;text-transform:uppercase;color:var(--blush);margin-top:8px;font-weight:500;}
.hero-stats{position:absolute;bottom:0;left:0;right:0;display:flex;border-top:1px solid rgba(239,215,207,0.08);z-index:2;}
.hero-stat{flex:1;padding:24px 5%;border-right:1px solid rgba(239,215,207,0.08);animation:fadeUp 1s ease-out 0.5s both;}
.hero-stat:last-child{border-right:none;}
.hero-stat-num{font-family:var(--font-display);font-size:28px;font-weight:700;color:var(--blush-soft);line-height:1;}
.hero-stat-label{font-size:11px;color:rgba(255,255,255,0.35);text-transform:uppercase;letter-spacing:0.1em;margin-top:4px;}

/* ── CRUISES ── */
.cruises{background:var(--teal-deep);padding:100px 5%;}
.cruises .section-title{color:var(--white);}
.cruises .section-title em{color:var(--blush-soft);}
.cruises .section-body{color:var(--sage);}
.cruise-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1px;background:rgba(239,215,207,0.08);border:1px solid rgba(239,215,207,0.08);border-radius:8px;overflow:hidden;}
.cruise-card{background:var(--teal-deep);padding:40px 36px;transition:background 0.3s;}
.cruise-card:hover{background:#0f3839;}
.cruise-card-tag{font-size:10px;letter-spacing:0.16em;text-transform:uppercase;color:var(--blush);margin-bottom:20px;display:flex;align-items:center;gap:8px;}
.cruise-card-tag::before{content:'';width:20px;height:1px;background:var(--blush);}
.cruise-card h3{font-family:var(--font-display);font-size:24px;font-weight:700;color:var(--white);margin-bottom:12px;line-height:1.2;}
.cruise-card p{font-size:14px;color:var(--sage);font-weight:300;line-height:1.7;margin-bottom:24px;}
.cert-tag{display:inline-flex;align-items:center;gap:6px;background:rgba(222,174,159,0.12);border:1px solid rgba(222,174,159,0.25);color:var(--blush-soft);font-size:11px;font-weight:400;letter-spacing:0.06em;padding:6px 12px;border-radius:2px;}
.cert-star{color:var(--blush);font-size:12px;}
.cruise-more{margin-top:32px;padding:24px 36px;background:rgba(239,215,207,0.04);border:1px solid rgba(239,215,207,0.08);border-radius:4px;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:16px;}
.cruise-more p{font-size:14px;color:var(--sage);font-weight:300;}
.cruise-more p strong{color:var(--blush-soft);font-weight:500;}
.line-chips{display:flex;gap:8px;flex-wrap:wrap;}
.line-chip{background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.1);color:rgba(255,255,255,0.4);font-size:11px;padding:4px 12px;border-radius:20px;}

/* ── WHY ── */
.why{background:var(--blush-pale);padding:100px 5%;}
.why .section-eye{color:var(--teal-mid);}
.why .section-title{color:var(--teal-deep);}
.why .section-body{color:var(--teal-mid);}
.why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:20px;}
.why-card{background:var(--white);border-radius:6px;border:1px solid rgba(10,45,46,0.06);padding:32px 28px;position:relative;overflow:hidden;transition:transform 0.25s,border-color 0.25s;}
.why-card::after{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:var(--blush);transform:scaleX(0);transform-origin:left;transition:transform 0.3s;}
.why-card:hover{transform:translateY(-4px);border-color:rgba(222,174,159,0.4);}
.why-card:hover::after{transform:scaleX(1);}
.why-num{font-family:var(--font-display);font-size:42px;font-weight:900;color:rgba(10,45,46,0.06);line-height:1;margin-bottom:16px;letter-spacing:-2px;}
.why-card h4{font-family:var(--font-display);font-size:18px;font-weight:700;color:var(--teal-deep);margin-bottom:10px;}
.why-card p{font-size:13px;color:var(--sage);line-height:1.7;font-weight:300;}

/* ── ABOUT ── */
.about{background:var(--teal-rich);padding:100px 5%;display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;}
.about-photo{position:relative;}
.about-frame{aspect-ratio:4/5;background:var(--teal-deep);border-radius:6px;border:1px solid rgba(239,215,207,0.12);display:flex;align-items:center;justify-content:center;overflow:hidden;}
.about-placeholder{text-align:center;padding:40px;}
.about-placeholder-circle{width:90px;height:90px;border-radius:50%;border:1px dashed rgba(239,215,207,0.25);display:flex;align-items:center;justify-content:center;margin:0 auto 16px;}
.about-placeholder p{font-size:13px;color:rgba(255,255,255,0.25);line-height:1.5;}
.about-corner-tl{position:absolute;top:-12px;left:-12px;width:60px;height:60px;border-top:1px solid rgba(222,174,159,0.3);border-left:1px solid rgba(222,174,159,0.3);}
.about-corner-br{position:absolute;bottom:-12px;right:-12px;width:60px;height:60px;border-bottom:1px solid rgba(222,174,159,0.3);border-right:1px solid rgba(222,174,159,0.3);}
.about .section-eye{color:var(--blush);}
.about .section-title{color:var(--white);}
.about .section-title em{color:var(--blush-soft);}
.about .section-body{color:rgba(255,255,255,0.5);margin-bottom:28px;}
.cert-pills{display:flex;flex-direction:column;gap:10px;margin-top:28px;}
.cert-pill-item{display:flex;align-items:center;gap:12px;padding:12px 16px;background:rgba(10,45,46,0.5);border:1px solid rgba(239,215,207,0.1);border-radius:4px;}
.cert-pill-dot{width:6px;height:6px;border-radius:50%;background:var(--blush);flex-shrink:0;}
.cert-pill-text{font-size:13px;color:var(--blush-soft);font-weight:300;}

/* ── BLOG ── */
.blog{background:var(--teal-deep);padding:100px 5%;}
.blog .section-eye{color:var(--blush);}
.blog .section-title{color:var(--white);}
.blog .section-title em{color:var(--blush-soft);}
.blog-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px;margin-top:48px;}
.blog-card{background:rgba(28,78,79,0.4);border-radius:6px;border:1px solid rgba(239,215,207,0.08);overflow:hidden;transition:transform 0.25s,border-color 0.25s;}
.blog-card:hover{transform:translateY(-4px);border-color:rgba(222,174,159,0.2);}
.blog-img{height:150px;display:flex;align-items:center;justify-content:center;position:relative;}
.blog-img-tag{position:absolute;top:12px;left:12px;background:var(--blush);color:var(--teal-deep);font-size:9px;font-weight:500;letter-spacing:0.1em;text-transform:uppercase;padding:4px 10px;border-radius:2px;}
.blog-body{padding:22px;}
.blog-body h4{font-family:var(--font-display);font-size:17px;font-weight:700;color:var(--white);margin-bottom:8px;line-height:1.3;}
.blog-body p{font-size:13px;color:var(--sage);line-height:1.6;font-weight:300;}
.blog-soon{margin-top:10px;font-size:11px;color:var(--blush);font-weight:500;letter-spacing:0.08em;text-transform:uppercase;}

/* ── CONTACT ── */
.contact{background:var(--teal-rich);padding:90px 5%;}
.contact-inner{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;}
.contact .section-eye{color:var(--blush);}
.contact .section-title{color:var(--white);}
.contact .section-title em{color:var(--blush-soft);}
.contact .section-body{color:rgba(255,255,255,0.5);margin-bottom:28px;}
.contact-info{display:flex;flex-direction:column;gap:10px;}
.contact-info-row{display:flex;align-items:center;gap:12px;padding:13px 18px;background:rgba(10,45,46,0.4);border:1px solid rgba(239,215,207,0.08);border-radius:5px;transition:border-color 0.2s;}
.contact-info-row:hover{border-color:rgba(222,174,159,0.25);}
.contact-info-label{font-size:10px;text-transform:uppercase;letter-spacing:0.12em;color:rgba(255,255,255,0.3);width:64px;flex-shrink:0;}
.contact-info-val{font-size:14px;color:var(--blush-soft);font-weight:300;}
.contact-info-val a{color:var(--blush-soft);text-decoration:none;}
.contact-info-val a:hover{color:var(--white);}
.contact-cta{margin-top:24px;}
.cta-large{display:inline-block;background:var(--blush);color:var(--teal-deep);padding:16px 40px;border-radius:3px;font-size:14px;font-weight:500;letter-spacing:0.04em;text-decoration:none;transition:background 0.2s,transform 0.15s;}
.cta-large:hover{background:var(--blush-soft);transform:translateY(-2px);}
.contact-right{background:rgba(10,45,46,0.5);border:1px solid rgba(239,215,207,0.08);border-radius:8px;padding:36px;display:flex;flex-direction:column;align-items:center;text-align:center;gap:16px;}
.contact-right-icon{font-size:44px;line-height:1;}
.contact-right h4{font-family:var(--font-display);font-size:22px;font-weight:700;color:var(--white);}
.contact-right p{font-size:13px;color:rgba(255,255,255,0.45);font-weight:300;line-height:1.65;max-width:260px;}
.btn-cal{display:inline-block;background:transparent;color:var(--blush);border:1px solid rgba(222,174,159,0.35);padding:13px 28px;border-radius:3px;font-size:13px;font-weight:500;letter-spacing:0.04em;text-decoration:none;transition:background 0.2s,border-color 0.2s;}
.btn-cal:hover{background:rgba(222,174,159,0.1);border-color:rgba(222,174,159,0.6);}

/* ── FOOTER (index overrides) ── */
footer{padding:36px 5% 28px;}
.footer-top{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px;}
.footer-compliance{margin-top:24px;padding-top:20px;border-top:1px solid rgba(239,215,207,0.06);display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:16px 28px;}
.footer-sot{font-size:11px;color:rgba(255,255,255,0.25);letter-spacing:0.03em;}
.footer-compliance-logo img{height:40px;}

/* ── RESPONSIVE ── */
@media(max-width:960px){.contact-inner{grid-template-columns:1fr;}}
@media(max-width:820px){.hero-right{display:none;}.about{grid-template-columns:1fr;}.about-photo{display:none;}}
@media(max-width:600px){.hero h1{font-size:42px;}.hero-stats{display:none;}.cruise-grid,.why-grid,.blog-grid{grid-template-columns:1fr;}}
