:root {
  --ink: #16202a;
  --ink-panel: #0f1822;
  --muted: #66717f;
  --line: #dce3ea;
  --paper: #f7f9fb;
  --paper-alt: #edf4fa;
  --white: #ffffff;
  --rust: #0a67b1;
  --rust-dark: #064a7f;
  --forest: #0a67b1;
  --shadow: 0 16px 40px rgba(16, 30, 44, 0.18);
  --radius: 5px;
  --header-h: 72px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Public Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  min-height: var(--header-h);
  grid-template-columns: minmax(200px, 1fr) auto minmax(150px, auto);
  align-items: center;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.18));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 8px 24px rgba(10, 18, 28, 0.08);
  backdrop-filter: blur(26px) saturate(1.7);
  -webkit-backdrop-filter: blur(26px) saturate(1.7);
}

.site-header:not(:has(~ main .hero)) {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: auto;
  height: 40px;
  flex-shrink: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
}

.nav a {
  border-radius: 4px;
  padding: 9px 10px;
  white-space: nowrap;
}

.nav a:hover {
  background: var(--paper-alt);
}

.nav a[aria-current="page"] {
  color: var(--rust-dark);
}

.nav-phone {
  display: none;
}

.header-action {
  justify-self: end;
  border-radius: 4px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
}

.nav-toggle-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle {
  display: none;
}

/* ---------- Buttons ---------- */

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-weight: 700;
  font-size: 15px;
}

.button.primary {
  background: var(--rust);
  color: var(--white);
}

.button.primary:hover {
  background: var(--rust-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 252, 245, 0.55);
  color: var(--white);
}

.button.secondary.dark {
  border-color: rgba(255, 252, 245, 0.35);
}

.button.light {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.button.light:hover {
  border-color: var(--rust);
}

/* ---------- Hero (home) ---------- */

.hero {
  position: relative;
  z-index: 1;
  margin-top: calc(-1 * var(--header-h));
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 58%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 18, 28, 0.82), rgba(10, 18, 28, 0.46) 42%, rgba(10, 18, 28, 0.08)),
    linear-gradient(0deg, rgba(10, 18, 28, 0.65), transparent 42%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 7vw, 96px) 76px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: #7fc2f2;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(38px, 5.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.hero-content p {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* ---------- Section headings ---------- */

.section {
  padding: 88px clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(280px, 1fr);
  gap: 28px 70px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 36px;
}

.section-heading h2,
.work-copy h2,
.trust-text h2,
.contact-main h2,
.testimonial-text h2 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.1;
}

.section-heading p:last-child,
.work-copy p,
.trust-text p,
.contact-main p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

/* ---------- Atelier / work section ---------- */

.work-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: 48px;
  align-items: center;
  padding: 88px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink-panel);
  color: var(--white);
}

.work-copy {
  max-width: 560px;
}

.work-copy p {
  margin-top: 18px;
  color: rgba(255, 252, 245, 0.72);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 252, 245, 0.9);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 3px;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--rust);
}

.work-gallery {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 16px;
  align-items: stretch;
}

.work-gallery img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.work-gallery img:nth-child(2) {
  height: 360px;
  align-self: end;
}

/* ---------- Testimonial ---------- */

.testimonial-section {
  background: var(--paper-alt);
}

.testimonial-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.testimonial-mark {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--rust);
}

.testimonial-card blockquote {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
}

.testimonial-card cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  color: var(--muted);
  font-size: 14.5px;
}

/* ---------- Trust / marques ---------- */

.trust-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: center;
  padding: 88px clamp(18px, 5vw, 72px);
  background: var(--white);
}

.trust-text {
  max-width: 540px;
}

.trust-text p {
  margin-top: 18px;
}

.trust-section img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
}

/* ---------- Contact ---------- */

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(280px, 0.65fr) minmax(320px, 1fr);
  gap: 24px;
  padding: 88px clamp(18px, 5vw, 72px);
  background: var(--ink-panel);
  color: var(--white);
}

.contact-main,
.hours,
.map-card {
  border: 1px solid rgba(255, 252, 245, 0.16);
  border-radius: 3px;
  padding: clamp(24px, 4vw, 44px);
  background: rgba(255, 252, 245, 0.05);
}

.contact-main p {
  margin-top: 18px;
  color: rgba(255, 252, 245, 0.8);
}

.hours h3,
.map-card h3 {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: 24px;
}

.map-card p {
  margin: 0 0 20px;
  color: rgba(255, 252, 245, 0.76);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 3px;
  background: rgba(255, 252, 245, 0.12);
}

.map-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hours dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.hours dl div {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 252, 245, 0.16);
}

.hours dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hours dt {
  font-weight: 700;
}

.hours dd {
  margin: 0;
  color: rgba(255, 252, 245, 0.72);
}

/* ---------- Footer ---------- */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: #0a1017;
  color: rgba(255, 252, 245, 0.7);
  font-size: 13.5px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a:hover {
  color: var(--white);
}

/* ---------- Inner page hero ---------- */

.page-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: center;
  padding: 72px clamp(18px, 5vw, 72px);
  background: var(--white);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.page-hero p {
  max-width: 600px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.page-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.page-content {
  padding: 72px clamp(18px, 5vw, 72px);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

/* ---------- Pricing ---------- */

.pricing-intro {
  max-width: 720px;
  margin: 0 auto 36px;
}

.pricing-intro h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
}

.pricing-intro p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  padding: clamp(20px, 3vw, 28px);
}

.price-card h3 {
  margin: 0 0 16px;
  font-size: 20px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: #333e49;
  font-size: 14.5px;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table td:last-child {
  padding-left: 12px;
  text-align: right;
  white-space: nowrap;
  font-weight: 700;
  color: var(--ink);
}

.price-note {
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  overflow-wrap: break-word;
}

.price-note a {
  color: var(--rust-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Recharges ---------- */

.recharge-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.recharge-copy {
  max-width: 480px;
}

.recharge-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
}

.recharge-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.recharge-list-image {
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.recharge-list-image img {
  width: 100%;
  height: auto;
}

.info-panel,
.content-panel {
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  padding: clamp(24px, 4vw, 42px);
}

.info-panel h2,
.content-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.15;
}

.content-panel p,
.info-panel p {
  color: var(--muted);
}

.content-panel p:first-of-type,
.info-panel p:first-of-type {
  margin-top: 0;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  border-bottom: 1px solid var(--line);
  padding: 0 0 14px;
  color: #443a30;
}

.feature-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.inline-figure {
  margin: 26px 0;
}

.inline-figure img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 3px;
}

.inline-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13.5px;
}

.page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ---------- FAQ ---------- */

.faq-section {
  border-top: 1px solid var(--line);
  background: var(--paper-alt);
}

.faq-section h2 {
  max-width: 1180px;
  margin: 0 auto 32px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
}

.faq-list {
  display: grid;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  padding: clamp(20px, 3vw, 28px);
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
}

/* ---------- Responsive ---------- */

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

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-self: end;
    width: 40px;
    height: 40px;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
  }

  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    position: relative;
  }

  .nav-toggle span::before {
    position: absolute;
    top: -6px;
  }

  .nav-toggle span::after {
    position: absolute;
    top: 6px;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 15;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px clamp(18px, 4vw, 56px) 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    font-size: 16px;
  }

  .nav-toggle-input:checked ~ .nav {
    display: flex;
  }

  .nav a {
    padding: 13px 8px;
    border-bottom: 1px solid var(--line);
  }

  .nav-phone {
    display: block;
    margin-top: 10px;
    padding: 13px 8px;
    border-bottom: 0;
    color: var(--rust-dark);
    font-weight: 700;
  }

  .header-action {
    display: none;
  }

  .brand small {
    display: none;
  }

  .section-heading,
  .work-section,
  .trust-section,
  .contact-section,
  .page-hero,
  .detail-grid,
  .pricing-grid,
  .recharge-layout,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .work-gallery img,
  .work-gallery img:nth-child(2) {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .hero-content {
    margin: 0 18px 48px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .section,
  .work-section,
  .trust-section,
  .contact-section,
  .page-content,
  .faq-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .page-hero {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .page-hero img {
    height: 280px;
  }

  .work-gallery {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
