/* Ocean Blinds — landing page
   Theme sampled from the supplied logo: ocean blue + silver/graphite.
*/
:root {
  --ocean: #1499e8;
  --ocean-deep: #0878bb;
  --ink: #0c1720;
  --muted: #64717a;
  --silver: #a9b0b4;
  --silver-light: #e7ebed;
  --paper: #f7f9f9;
  --white: #ffffff;
  --line: rgba(12, 23, 32, .12);
  --shadow: 0 24px 70px rgba(12, 23, 32, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(247,249,249,.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: .3s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(0,0,0,.04); }
.brand img { width: 165px; height: auto; display: block; }
.nav { display: flex; gap: 34px; align-items: center; font-size: 14px; font-weight: 600; }
.nav a { transition: color .2s ease; }
.nav a:hover { color: var(--ocean-deep); }
.nav-cta {
  padding: 12px 19px;
  border: 1px solid var(--ink);
  border-radius: 99px;
}
.nav-cta:hover { background: var(--ink); color: white !important; }
.menu-toggle { display: none; border: 0; background: none; font-size: 27px; }

.hero {
  min-height: 100vh;
  padding: 140px 7vw 70px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 5vw;
  align-items: center;
  background:
    radial-gradient(circle at 80% 35%, rgba(20,153,232,.13), transparent 31%),
    linear-gradient(135deg, #fbfcfc 0%, #edf4f6 100%);
}
.eyebrow, .section-kicker {
  letter-spacing: .2em;
  font-size: 11px;
  font-weight: 700;
  color: var(--ocean-deep);
}
.hero h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: 1.02;
}
.hero h1 {
  font-size: clamp(48px, 5.7vw, 82px);
  margin: 18px 0 25px;
  letter-spacing: -.035em;
}
em { color: var(--ocean-deep); font-style: italic; }
.hero-text {
  max-width: 610px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.button {
  border: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.primary { background: var(--ink); color: white; box-shadow: 0 12px 30px rgba(12,23,32,.18); }
.primary:hover { background: var(--ocean-deep); }
.ghost { border: 1px solid var(--line); background: rgba(255,255,255,.5); }
.hero-note {
  margin-top: 32px; display: flex; gap: 10px; align-items: center;
  font-size: 12px; color: var(--muted); font-weight: 600;
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--ocean); box-shadow: 0 0 0 6px rgba(20,153,232,.12); }

.window-scene {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}
.house {
  position: relative;
  width: min(580px, 90%);
  height: 470px;
  background: #fefefe;
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.roof {
  position: absolute;
  width: 110%; height: 100px;
  left: -5%; top: -48px;
  background: linear-gradient(135deg, #b9c1c5, #737e84);
  transform: rotate(-4deg);
}
.window-frame {
  position: absolute;
  inset: 48px;
  border: 14px solid #e9edef;
  box-shadow: inset 0 0 0 4px #6e7a80;
  overflow: hidden;
  background: #8fd0ef;
}
.outside {
  position: absolute; inset: 0;
  background: linear-gradient(#8bd2f5 0%, #dff4fb 58%, #93ad8c 59%, #61765b 100%);
}
.sun {
  position: absolute;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,214,119,.7);
  right: 12%; top: 15%;
  filter: blur(1px);
}
.skyline {
  position: absolute; bottom: 25%; width: 20%;
  background: rgba(38,90,104,.28);
}
.skyline-a { left: 5%; height: 35%; }
.skyline-b { right: 8%; height: 52%; width: 27%; }
.plant {
  position: absolute; bottom: 0; left: 18%;
  width: 50px; height: 90px;
  border-radius: 60% 40% 0 0;
  background: rgba(38,77,56,.55);
  transform: skew(-12deg);
}
.blind {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-start;
  transform-origin: top;
  transition: clip-path .1s linear;
  background: linear-gradient(90deg, #159de9, #69c5f3 48%, #0a80c5);
  clip-path: inset(0 0 100% 0);
}
.blind span {
  flex: 1; min-height: 25px;
  border-bottom: 2px solid rgba(255,255,255,.35);
  box-shadow: inset 0 -7px 7px rgba(0,0,0,.07);
}
.window-cross { position: absolute; background: rgba(255,255,255,.75); z-index: 4; }
.vertical { top:0; bottom:0; width:7px; left:50%; transform:translateX(-50%); }
.horizontal { left:0; right:0; height:7px; top:57%; }
.pull { position:absolute; z-index:5; width:2px; height:180px; background:#5c666b; right:11%; top:0; }
.scene-label {
  position: absolute; bottom: 2px; right: 0;
  font-size: 10px; letter-spacing: .17em; color: var(--muted);
}
.scene-label span { color: var(--ocean-deep); font-weight: 700; }

.intro, .services, .process { padding: 130px 7vw; }
.intro { background: white; }
.intro-grid {
  margin-top: 35px; display:grid; grid-template-columns: 1.2fr .8fr; gap: 9vw;
  align-items:end;
}
h2 { font-size: clamp(42px, 5vw, 68px); margin: 0; letter-spacing: -.03em; }
.intro-grid p, .section-heading > p {
  color: var(--muted); line-height: 1.8; font-size: 16px; max-width: 510px;
}
.text-link { display:inline-flex; gap:14px; margin-top:22px; font-weight:700; border-bottom:1px solid var(--ink); padding-bottom:6px; }

.services { background: var(--paper); }
.section-heading { display:flex; justify-content:space-between; gap:50px; align-items:end; }
.section-heading h2 { margin-top:15px; }
.service-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:55px; }
.service-card {
  position:relative; min-height:330px; padding:32px;
  background:white; border:1px solid var(--line); border-radius:16px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.service-card:hover { transform:translateY(-8px); box-shadow:var(--shadow); }
.service-card.featured { background:var(--ink); color:white; }
.service-card.featured p { color:#b8c2c8; }
.icon { color:var(--ocean-deep); font-weight:700; font-size:12px; letter-spacing:.15em; }
.service-card h3 { font-family:"Playfair Display",serif; font-size:32px; font-weight:500; margin-top:80px; }
.service-card p { color:var(--muted); line-height:1.7; }
.card-arrow { position:absolute; right:30px; bottom:28px; font-size:22px; color:var(--ocean); }

.statement {
  min-height: 470px; display:grid; place-items:center; text-align:center;
  background: var(--ink); color:white; overflow:hidden;
}
.statement-inner { position:relative; }
.statement-mark {
  font-family:"Playfair Display",serif; color:rgba(20,153,232,.13);
  font-size:220px; line-height:1; position:absolute; left:50%; top:50%;
  transform:translate(-50%,-58%);
}
.statement p { position:relative; font-family:"Playfair Display",serif; font-size:clamp(40px,5vw,72px); line-height:1.05; margin:0; }

.steps { margin-top:55px; border-top:1px solid var(--line); }
.step { display:grid; grid-template-columns:100px 1fr; gap:30px; padding:35px 0; border-bottom:1px solid var(--line); align-items:center; }
.step > span { color:var(--ocean-deep); font-weight:700; }
.step h3 { margin:0 0 7px; font-size:24px; }
.step p { margin:0; color:var(--muted); }

.contact { padding: 110px 7vw 130px; background: white; }
.contact-card {
  max-width:1250px; margin:auto; padding:65px;
  border-radius:22px; background:linear-gradient(135deg,#eaf6fb,#f8fafb);
  display:grid; grid-template-columns:.8fr 1.2fr; gap:70px;
  box-shadow:var(--shadow);
}
.contact-copy p { color:var(--muted); line-height:1.7; max-width:400px; margin-top:25px; }
.quote-form { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.quote-form label { font-size:12px; font-weight:700; color:var(--muted); }
.quote-form input, .quote-form select, .quote-form textarea {
  display:block; width:100%; margin-top:8px; padding:14px 15px;
  border:1px solid var(--line); border-radius:8px; background:white; outline:none;
}
.quote-form textarea { resize:vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color:var(--ocean); box-shadow:0 0 0 3px rgba(20,153,232,.1); }
.full { grid-column:1/-1; }

footer {
  padding:55px 7vw; background:#09131a; color:white;
  display:grid; grid-template-columns:1fr auto auto; gap:50px; align-items:end;
}
.footer-brand img { width:175px; filter:brightness(1.1); }
.footer-brand p { color:#9aa6ad; font-size:13px; }
.footer-contact { display:flex; flex-direction:column; gap:10px; text-align:right; font-size:14px; }
.footer-contact a:hover { color:var(--ocean); }
.copyright { color:#68757c; font-size:11px; margin:0; }

@media (max-width: 900px) {
  .site-header { height:72px; padding:0 5vw; }
  .brand img { width:145px; }
  .nav { display:none; position:absolute; top:72px; left:0; right:0; padding:20px 5vw 25px; background:white; flex-direction:column; align-items:stretch; box-shadow:0 20px 30px rgba(0,0,0,.08); }
  .nav.open { display:flex; }
  .nav-cta { text-align:center; }
  .menu-toggle { display:block; }
  .hero { grid-template-columns:1fr; padding-top:110px; }
  .window-scene { min-height:480px; }
  .intro-grid, .section-heading, .contact-card { grid-template-columns:1fr; }
  .section-heading { align-items:start; }
  .service-grid { grid-template-columns:1fr; }
  .service-card { min-height:270px; }
  .service-card h3 { margin-top:55px; }
  .contact-card { gap:40px; padding:38px 25px; }
  footer { grid-template-columns:1fr; gap:25px; }
  .footer-contact { text-align:left; }
  .copyright { margin-top:10px; }
}
@media (max-width: 560px) {
  .hero h1 { font-size:46px; }
  .window-scene { min-height:370px; }
  .house { height:310px; }
  .window-frame { inset:30px; border-width:9px; }
  .quote-form { grid-template-columns:1fr; }
  .full { grid-column:auto; }
  .contact { padding-left:5vw; padding-right:5vw; }
  .intro, .services, .process { padding-top:90px; padding-bottom:90px; }
}
