﻿:root {
  --bg: #f4f8fc;
  --surface: #ffffff;
  --ink: #0c1f33;
  --muted: #4d6178;
  --brand: #0d6efd;
  --brand-2: #00a6a6;
  --accent: #ff7a1a;
  --line: #d5e1ee;
  --radius: 20px;
  --shadow: 0 20px 45px rgba(12, 31, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(13, 110, 253, 0.14), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(0, 166, 166, 0.12), transparent 40%),
    var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.section-fade {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(12, 31, 51, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: 148px;
  height: auto;
}

.site-nav {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: #f6f9ff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.site-nav a:hover {
  color: #93c2ff;
}

.btn {
  border: 0;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(120deg, var(--brand), #2f89ff);
  padding: 0.82rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(13, 110, 253, 0.35);
}

.btn-small {
  font-size: 0.85rem;
  padding: 0.65rem 1rem;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 82svh;
  display: grid;
  align-items: center;
  overflow: clip;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(95deg, rgba(6, 17, 31, 0.84), rgba(6, 17, 31, 0.52)),
    url("./assets/images/DSC05690-scaled.jpg") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-content {
  padding-block: 5rem;
  color: #f9fbff;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-family: "Sora", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5.6vw, 4rem);
  line-height: 1.02;
  max-width: 16ch;
}

.hero-content p {
  max-width: 58ch;
  color: #d7e8ff;
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero .btn-ghost {
  color: #eaf2ff;
  border-color: rgba(255, 255, 255, 0.45);
}

.services,
.media,
.owner,
.contact {
  margin-top: 4.8rem;
}

.section-top {
  margin-bottom: 1.3rem;
}

.section-top h2 {
  font-size: clamp(1.65rem, 3.6vw, 2.6rem);
}

.section-top > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 62ch;
}

.seo-local,
.faq-section {
  margin-top: 3rem;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.area-list span {
  padding: 0.52rem 0.85rem;
  border-radius: 999px;
  background: #edf5ff;
  border: 1px solid #d3e2f4;
  color: #153753;
  font-weight: 700;
  font-size: 0.9rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.8rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid #dbe7f4;
  border-radius: 14px;
  padding: 0.9rem;
  box-shadow: 0 10px 20px rgba(10, 28, 46, 0.08);
}

.faq-item h3 {
  font-size: 1rem;
}

.faq-item p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #e2eaf3;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-content {
  padding: 1rem 1rem 1.1rem;
}

.service-content h3 {
  font-size: 1.2rem;
}

.service-content p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.service-actions {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.chip {
  border: 0;
  background: #eff4fb;
  color: #13304f;
  padding: 0.54rem 0.9rem;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.9rem;
}

.chip:hover {
  background: #dce9fa;
}

.chip-link {
  border: 1px solid #cddff7;
}

.media {
  padding-block: 4rem;
  background: linear-gradient(180deg, transparent, #e9f3ff 18%, #e9f3ff 82%, transparent);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.7rem;
}

.media-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #d8e4f3;
  box-shadow: 0 8px 18px rgba(9, 27, 44, 0.08);
}

.media-grid img:nth-child(1) { grid-column: span 6; aspect-ratio: 16 / 10; }
.media-grid img:nth-child(2) { grid-column: span 3; aspect-ratio: 3 / 4; }
.media-grid img:nth-child(3) { grid-column: span 3; aspect-ratio: 3 / 4; }
.media-grid img:nth-child(4) { grid-column: span 4; aspect-ratio: 4 / 3; }
.media-grid img:nth-child(5) { grid-column: span 4; aspect-ratio: 4 / 3; }
.media-grid img:nth-child(6) { grid-column: span 4; aspect-ratio: 4 / 3; }

.video-row {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.video-row iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(9, 27, 44, 0.14);
}

.owner {
  background: var(--surface);
  border: 1px solid #dbe7f4;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1.1rem;
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 1rem;
}

.owner-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 8px 20px rgba(10, 32, 54, 0.25);
}

.owner p {
  color: var(--muted);
}

.contact {
  margin-bottom: 4.5rem;
}

.contact-box {
  background: linear-gradient(130deg, #0f2742, #154674);
  color: #ebf3ff;
  border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

.contact-box .eyebrow {
  color: #74d7ff;
}

.contact-box p {
  color: #cfe1f7;
  line-height: 1.65;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.contact-box .btn-ghost {
  color: #d9eaff;
  border-color: rgba(223, 238, 255, 0.52);
}

.site-footer {
  background: #0d2238;
  color: #c4d7ec;
}

.footer-row {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.video-modal {
  width: min(960px, calc(100% - 1rem));
  border: 0;
  padding: 0;
  border-radius: 16px;
  background: #081625;
}

.video-modal::backdrop {
  background: rgba(3, 9, 17, 0.86);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 2;
  font-size: 1.9rem;
  line-height: 1;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.modal-frame-wrap {
  padding: 2.2rem 0 0;
}

.modal-frame-wrap iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.service-page .site-header {
  position: sticky;
}

.service-page main {
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.service-page .faq-section {
  margin-bottom: clamp(2.4rem, 6vw, 4.6rem);
}

.detail-hero {
  padding-block: clamp(2.7rem, 8vw, 5rem) 2rem;
}

.detail-hero .detail-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.1rem;
  align-items: stretch;
}

.detail-hero .detail-copy {
  background: linear-gradient(140deg, #0f2742, #16446e);
  color: #eaf3ff;
  border-radius: var(--radius);
  padding: clamp(1.1rem, 3.2vw, 2rem);
  box-shadow: var(--shadow);
}

.detail-hero .detail-copy p {
  color: #d0e4fb;
  line-height: 1.7;
}

.detail-hero .detail-cover {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #d5e3f2;
  box-shadow: var(--shadow);
}

.detail-hero .detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.detail-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 4rem;
}

.detail-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid #dae7f4;
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.detail-card p,
.detail-card li {
  color: var(--muted);
  line-height: 1.65;
}

.detail-card ul {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.price-card {
  border: 1px solid #d5e4f6;
  border-radius: 14px;
  padding: 0.8rem;
  background: linear-gradient(130deg, #fafdff, #edf5ff);
}

.price-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.18rem;
}

.price-card span {
  color: #0e3a64;
  font-weight: 800;
}

.price-note {
  font-size: 0.92rem;
  margin-top: 0.9rem;
}

.detail-video {
  margin-top: 1rem;
}

.detail-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(9, 27, 44, 0.14);
}

.reels-card {
  margin-bottom: 4rem;
}

.reels-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.reels-grid iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(9, 27, 44, 0.14);
  background: #000;
}

.reel-item {
  display: grid;
  gap: 0.45rem;
}

.reel-caption {
  margin: 0;
  text-align: center;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.92rem;
}

.mini-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.mini-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid #d4e2f2;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: #d8ebff;
  border: 1px solid rgba(216, 235, 255, 0.45);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  font-weight: 700;
}

.back-link:hover {
  background: rgba(216, 235, 255, 0.12);
}

@media (max-width: 920px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  .detail-hero .detail-wrap,
  .detail-main {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 921px) {
  .header-row {
    min-height: 68px;
    gap: 0.75rem;
  }

  .brand img {
    width: 132px;
  }

  .site-nav {
    gap: 0.9rem;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .btn-small {
    font-size: 0.82rem;
    padding: 0.56rem 0.9rem;
  }
}

@media (max-width: 700px) {
  .site-header .container {
    width: min(1120px, calc(100% - 0.9rem));
  }

  .header-row {
    min-height: 58px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.45rem;
    padding-block: 0.42rem;
  }

  .brand {
    flex: 0 0 auto;
  }

  .brand img {
    width: 88px;
  }

  .site-nav {
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
    gap: 0.55rem;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    font-size: 0.78rem;
  }

  .btn-small {
    display: none;
  }

  .service-grid,
  .video-row {
    grid-template-columns: 1fr;
  }

  .media-grid img {
    grid-column: span 12 !important;
    aspect-ratio: 16 / 10 !important;
  }

  .owner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}
