/* =============================================
   Naomy Luxe – Site-wide styles (light blue theme)
   ============================================= */

:root {
  --bg: #e5f2f7;
  --bg-section: #ddeef5;
  --white: #ffffff;
  --ink: #1a2a35;
  --ink-soft: #4a6070;
  --brand: #2d4b5c;
  --brand-hover: #1e3545;
  --accent: #a8d4db;
  --line: #c5dde6;
  --footer-bg: #1e2f3a;
  --footer-text: #d4e8ef;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(30, 47, 58, 0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

/* ── Layout ── */
.container { width: min(1100px, 92%); margin: 0 auto; }
.section { padding: 32px 0; }
.text-center { text-align: center; }

/* ── Navigation ── */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(30,47,58,0.07);
}

.site-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  position: relative;
}

.nav-social { display: flex; gap: 14px; align-items: center; }
.nav-social a { color: var(--ink); font-size: 1.1rem; transition: color 0.2s; }
.nav-social a:hover { color: var(--brand); }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
  padding-bottom: 2px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--brand); border-bottom: 2px solid var(--brand); }

.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); margin: 5px 0; border-radius: 2px; transition: 0.3s;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  background: var(--brand);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--brand);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: var(--brand-hover); border-color: var(--brand-hover); }
.btn-ghost {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}
.btn-ghost:hover { background: var(--brand); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--brand); }

/* ── Hero ── */
.hero {
  background: var(--bg-section);
  padding: 60px 0 40px;
  text-align: center;
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.hero h1 { margin-bottom: 14px; color: var(--ink); font-weight: 600; }
.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 10px;
}
.hero-stars {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.hero-stars .stars { color: var(--ink); font-size: 1.1rem; letter-spacing: 3px; }
.hero-logo {
  max-width: 260px;
  margin: 0 auto 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Hero frame ── */
.hero-frame {
  background: var(--bg-section);
  border: 2px solid rgba(45, 75, 92, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px 0 36px;
  max-width: 1060px;
  margin: 0 auto 0 auto;
  color: var(--ink);
}
.hero-frame h1, .hero-frame .hero-sub, .hero-frame .hero-stars, .hero-frame .hero-logo, .hero-frame .btn {
  color: var(--ink) !important;
}
.hero-frame .hero-logo {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.hero-frame .btn {
  background: var(--brand);
  color: var(--white) !important;
  border: none;
}
.hero-frame .btn:hover {
  background: var(--brand-hover);
  color: var(--white) !important;
}

/* ── Hero outer frame ── */
.hero-outer-frame {
  background: #e5f2f7;
  border: 2.5px solid #c5dde6;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px 0 18px 0;
  max-width: 1100px;
  width: 94%;
  margin: 0 auto 0 auto;
}
@media (max-width: 1100px) {
  .hero-outer-frame {
    max-width: 100vw;
    border-radius: 0;
    margin: 0;
  }
}

/* ── Feature strip ── */
.feature-strip {
  background: var(--white);
  padding: 40px 0;
}
.feature-blob {
  background: var(--bg-section);
  border: 2px solid rgba(45, 75, 92, 0.18);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.feature-text h3 { margin-bottom: 16px; font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; line-height: 1.3; }
.feature-list { list-style: none; display: grid; gap: 14px; }
.feature-list li {
  display: flex; flex-direction: column; gap: 3px;
  padding-left: 22px; position: relative;
}
.feature-list li:nth-child(2) { margin-left: 80px; }
.feature-list li:nth-child(3) { margin-left: 160px; }
.feature-list li::before {
  content: "•"; position: absolute; left: 0;
  color: var(--ink); font-weight: 700; font-size: 1.1rem;
}
.feature-list li strong { font-weight: 700; font-size: 1rem; color: var(--ink); }
.feature-list li span { font-size: 0.92rem; color: var(--ink-soft); }
.feature-photo img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

/* ── Services section ── */
.services-section { background: var(--bg-section); }
.services-section .section-intro {
  text-align: center;
  margin-bottom: 36px;
}
.services-section .section-intro p {
  color: var(--ink-soft);
  margin-top: 8px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.service-card:hover { transform: translateY(-4px); }
.service-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.service-card-body { padding: 16px; }
.service-card-body h3 { margin-bottom: 6px; font-size: 1rem; }
.service-card-body p { font-size: 0.88rem; color: var(--ink-soft); }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--brand);
  color: var(--white);
  text-align: center;
  padding: 52px 20px;
}
.cta-banner h2 { margin-bottom: 10px; }
.cta-banner p { margin-bottom: 24px; opacity: 0.88; }

/* ── Footer ── */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 28px 0 12px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px;
  margin-bottom: 12px;
}
.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  color: var(--white);
}
.footer-col p, .footer-col a {
  font-size: 0.88rem;
  color: var(--footer-text);
  line-height: 1.5;
  display: block;
}
.footer-col a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a {
  color: var(--footer-text);
  font-size: 1.05rem;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--accent); }
.footer-email-form { display: flex; gap: 8px; margin-top: 8px; }
.footer-email-form input {
  flex: 1;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.88rem;
}
.footer-email-form input::placeholder { color: rgba(255,255,255,0.5); }
.footer-email-form button {
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: var(--brand);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.86rem;
}
.footer-map iframe {
  width: 100%;
  height: 150px;
  border-radius: var(--radius-sm);
  border: none;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

/* ── About page ── */
.about-hero {
  background: var(--white);
  padding: 24px 0 30px;
}
.about-split {
  background: var(--bg-section);
  border: 1px solid rgba(45, 75, 92, 0.08);
  border-radius: var(--radius);
  padding: 32px 24px 24px;
  display: grid;
  grid-template-columns: 0.66fr 1.34fr;
  gap: 34px;
  align-items: center;
  box-shadow: var(--shadow);
}
.about-split h1 { font-size: clamp(2rem, 3.9vw, 2.65rem); margin-bottom: 10px; }
.about-split p { font-size: 1.08rem; line-height: 1.38; max-width: 410px; }
.about-split .btn { margin-top: 20px; border-width: 1.6px; }
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.about-photos img {
  border-radius: var(--radius-sm);
  height: 420px;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow);
}
.about-badge {
  background: var(--brand);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 14px;
}
.our-work-section { background: var(--white); }
.work-card {
  background: var(--bg-section);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.work-card h3 { margin-bottom: 6px; font-size: 1.7rem; }
.work-card p { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 16px; }
.work-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.work-photos img {
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.gallery-strip img {
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.gallery-strip-frame {
  background: var(--bg-section);
  border: 1.5px solid rgba(45, 75, 92, 0.18);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-top: 32px;
}
.gallery-strip-frame .gallery-strip {
  margin-top: 0;
}

/* ── Services page ── */
.services-hero {
  background: var(--bg-section);
  text-align: center;
  padding: 32px 0 18px;
}
.service-block {
  background: var(--bg-section);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}
.service-block-header { padding: 20px 24px 8px; text-align: center; }
.service-block-header h3 { margin-bottom: 4px; }
.service-block-header p { color: var(--ink-soft); font-size: 0.9rem; }
.service-block-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px 24px 20px;
}
.service-block-photos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.spotless-section {
  background: var(--white);
  text-align: center;
  padding: 32px 0;
}
.spotless-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 900px;  margin: 0 auto;
}
.spotless-grid-frame {
  background: var(--bg-section);
  border: 1.5px solid rgba(45, 75, 92, 0.18);
  border-radius: var(--radius-sm);
  padding: 14px;
  max-width: 900px;
  margin: 24px auto 0;
}
.spotless-grid img {
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  min-height: 280px;
}
.spotless-grid img:nth-child(2),
.spotless-grid img:nth-child(4) {
  margin-top: 34px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .feature-blob { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 56px; left: 0; right: 0; background: var(--white); padding: 16px 20px; border-bottom: 1px solid var(--line); gap: 14px; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: block; }
  .about-photos { grid-template-columns: 1fr; }
  .work-photos { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .service-block-photos { grid-template-columns: 1fr; }
  .spotless-grid { grid-template-columns: 1fr; }
  .spotless-grid img:nth-child(2),
  .spotless-grid img:nth-child(4) { margin-top: 0; }
}
