/* Coastal Coat — bento grid / dark / neon-cyan */
:root {
  --bg: #07090d;
  --surface: #0e1319;
  --surface-2: #131a22;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.16);
  --text: #eaf2f6;
  --dim: #9fb0bb;
  --faint: #67767f;
  --accent: #16c8e6;
  --accent-2: #62e7ff;
  --ink: #04222b;
  --glow: rgba(22, 200, 230, 0.4);
  --radius: 18px;
  --sans: "Inter", system-ui, sans-serif;
  --display: "Space Grotesk", "Inter", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1, h2, h3, .brand { font-family: var(--display); line-height: 1.1; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
.grad { background: linear-gradient(100deg, var(--accent-2), var(--accent) 60%, #d6fbff); -webkit-background-clip: text; background-clip: text; color: transparent; }

.reveal { opacity: 0; }
.reveal.in { animation: pop 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
@keyframes pop { from { opacity: 0; transform: translateY(18px) scale(0.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none !important; opacity: 1 !important; } html { scroll-behavior: auto; } }

.ph { display: grid; place-items: center; aspect-ratio: 1/1; border-radius: 14px; background: linear-gradient(160deg, var(--surface-2), var(--surface)); border: 1px solid var(--line); color: var(--faint); font-size: 0.82rem; }
.ph span::before { content: "◇  "; color: var(--accent); }

.btn-accent, .btn-ghost { display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; font-family: inherit; font-weight: 700; font-size: 0.95rem; padding: 12px 22px; cursor: pointer; border: 1px solid transparent; transition: transform 0.2s, box-shadow 0.2s, background 0.2s; }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-accent { background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: var(--ink); box-shadow: 0 10px 30px -10px var(--glow); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px var(--glow); }
.btn-ghost { background: rgba(255, 255, 255, 0.05); color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }

/* Nav */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px clamp(20px, 5vw, 56px); border-bottom: 1px solid transparent; transition: background 0.35s, border-color 0.35s, padding 0.35s; }
.nav.scrolled { background: rgba(7, 9, 13, 0.85); backdrop-filter: blur(16px); border-color: var(--line); padding-top: 11px; padding-bottom: 11px; }
.brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.15rem; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-2), var(--accent)); box-shadow: 0 0 14px var(--glow); }
.brand .accent { color: var(--accent); }
.nav-links { display: flex; gap: 24px; font-size: 0.9rem; font-weight: 500; }
.nav-links a { color: var(--dim); }
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang { display: inline-flex; border: 1px solid var(--line-2); border-radius: 999px; overflow: hidden; }
.lang-btn { background: none; border: 0; color: var(--faint); font-family: inherit; font-weight: 700; font-size: 0.7rem; padding: 5px 9px; cursor: pointer; }
.lang-btn.on { background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: var(--ink); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 6px; cursor: pointer; }
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 90; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; background: rgba(7, 9, 13, 0.97); backdrop-filter: blur(10px); transform: translateY(-100%); transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1); }
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--display); font-size: 1.5rem; font-weight: 700; color: var(--text); }
.mobile-menu a.btn-accent { font-size: 1rem; }
body.no-scroll { overflow: hidden; }

/* Bento hero */
.bento-hero { max-width: 1200px; margin: 0 auto; padding: clamp(110px, 15vh, 170px) clamp(20px, 5vw, 56px) clamp(40px, 6vw, 70px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.tile { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: border-color 0.3s, box-shadow 0.3s; }
.tile-main { grid-column: 1 / 3; grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: center; gap: 14px; background: radial-gradient(700px 300px at 0% 0%, rgba(22, 200, 230, 0.12), transparent 60%), var(--surface); }
.tile-stat { grid-column: span 1; display: flex; flex-direction: column; justify-content: center; }
.tile-stat:nth-of-type(2) { grid-column: 3 / 4; grid-row: 1 / 2; }
.tile-stat:nth-of-type(3) { grid-column: 4 / 5; grid-row: 1 / 2; }
.tile-photo { grid-column: 3 / 5; grid-row: 2 / 3; aspect-ratio: auto; }
.tile-accent { grid-column: 1 / 5; grid-row: 3 / 4; background: linear-gradient(120deg, var(--accent), var(--accent-2)); color: var(--ink); font-family: var(--display); font-weight: 600; font-size: 1.15rem; display: flex; align-items: center; }
.eyebrow { color: var(--accent-2); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; font-weight: 700; }
.tile-main h1 { font-size: clamp(1.9rem, 4vw, 3rem); }
.tile-main .lead { color: var(--dim); }
.tile-main .btn-accent { align-self: flex-start; margin-top: 6px; }
.tile-stat strong { font-family: var(--display); font-size: 1.7rem; color: var(--accent-2); }
.tile-stat span { color: var(--faint); font-size: 0.85rem; }

/* Sections */
.section { max-width: 1200px; margin: 0 auto; padding: clamp(56px, 8vw, 90px) clamp(20px, 5vw, 56px); }
.section-alt { background: var(--surface); max-width: none; border-block: 1px solid var(--line); }
.section-alt > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.sec-eyebrow { color: var(--accent-2); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.76rem; font-weight: 700; }
.section h2, .section-alt h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-top: 8px; max-width: 24ch; }

/* Services bento */
.bento { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.bcard { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; }
.bcard.b-wide { grid-column: span 2; }
.bcard:hover { transform: translateY(-4px); border-color: rgba(22, 200, 230, 0.5); box-shadow: 0 20px 44px -22px var(--glow); }
.bcard h3 { font-size: 1.2rem; }
.bcard p { color: var(--dim); margin-top: 6px; font-size: 0.95rem; }

/* Why bento4 */
.bento4 { margin-top: 36px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.btile { background: var(--surface-2); border: 1px solid var(--line); border-top: 2px solid var(--accent); border-radius: 0 0 var(--radius) var(--radius); padding: 22px; }
.btile h3 { font-size: 1.1rem; }
.btile p { color: var(--dim); font-size: 0.92rem; margin-top: 6px; }

/* Process row */
.prow { margin-top: 36px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pcell { border-left: 2px solid var(--line-2); padding-left: 16px; }
.pn { font-family: var(--display); color: var(--accent); font-weight: 700; }
.pcell h3 { font-size: 1.05rem; margin: 4px 0 6px; }
.pcell p { color: var(--dim); font-size: 0.9rem; }

/* Gallery bento */
.bento-gal { margin-top: 36px; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; gap: 14px; }
.bento-gal .ph { aspect-ratio: auto; height: 100%; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* FAQ */
.faq { max-width: 800px; margin: 36px 0 0; }
.faq details { background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; padding: 16px 20px; margin-bottom: 12px; }
.faq details[open] { border-color: rgba(22, 200, 230, 0.4); }
.faq summary { cursor: pointer; list-style: none; font-weight: 700; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::after { content: "+"; color: var(--accent); }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--dim); margin-top: 12px; font-size: 0.95rem; }

/* CTA */
.estimate { text-align: center; padding: clamp(60px, 9vw, 100px) clamp(20px, 5vw, 56px); background: radial-gradient(700px 320px at 50% 0%, rgba(22, 200, 230, 0.16), transparent 60%), var(--surface); border-top: 1px solid var(--line); }
.estimate h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.estimate p { color: var(--dim); margin: 12px auto 18px; max-width: 46ch; }
.phone-big { display: block; color: var(--accent-2); font-family: var(--display); font-size: 2.1rem; font-weight: 700; }
.estimate-actions { display: flex; gap: 12px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }

/* Footer */
.site-footer { padding: clamp(40px, 5vw, 60px) clamp(20px, 5vw, 56px); border-top: 1px solid var(--line); }
.foot-cols { display: grid; grid-template-columns: repeat(3, auto); gap: 44px; margin: 22px 0; }
.foot-cols strong { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--faint); margin-bottom: 4px; }
.copyright { color: var(--faint); font-size: 0.85rem; }

/* Responsive */
@media (max-width: 900px) {
  .nav-links, .nav-quote { display: none; }
  .burger { display: flex; }
  .bento, .bento4, .prow, .bento-gal { grid-template-columns: 1fr 1fr; }
  .bcard.b-wide { grid-column: span 2; }
}
@media (max-width: 720px) {
  .bento-hero { grid-template-columns: 1fr; }
  .tile-main, .tile-stat, .tile-photo, .tile-accent { grid-column: auto !important; grid-row: auto !important; }
  .tile-photo { min-height: 200px; }
}
@media (max-width: 560px) {
  .bento, .bento4, .prow, .foot-cols { grid-template-columns: 1fr; }
  .bcard.b-wide, .g-wide, .g-tall { grid-column: auto; grid-row: auto; }
}

/* ---- Real photos in frames + glossy wet-floor sheen + flake chips ---- */
.ph { position: relative; overflow: hidden; }
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; display: block; }
.ph::after { content: ""; position: absolute; inset: -25%; z-index: 3; pointer-events: none; background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.16) 49%, transparent 58%); transform: translateX(-130%); animation: phsheen 7s ease-in-out infinite; }
@keyframes phsheen { 0%, 62% { transform: translateX(-130%); } 100% { transform: translateX(130%); } }
.ph span { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) { .ph::after { animation: none !important; } }
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
.chips img { width: 78px; height: 78px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.18); box-shadow: 0 8px 22px -8px rgba(0,0,0,0.55); transition: transform 0.25s; }
.chips img:hover { transform: scale(1.09) rotate(5deg); }
.chips-label { text-align: center; margin-top: 14px; font-size: 0.85rem; opacity: 0.7; }
