:root {
  --navy: #0b2744;
  --navy-soft: #12365a;
  --pink: #e6a7b6;
  --pink-soft: #fff2f6;
  --gold: #c6a46d;
  --cream: #fffdf9;
  --white: #ffffff;
  --text: #243244;
  --muted: #6d7280;
  --border: #f1d8df;
  --shadow: 0 18px 45px rgba(11, 39, 68, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

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

h1,
h2,
h3,
.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.08;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-name {
  font-size: 26px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--navy);
  font-weight: 800;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.22s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--navy);
  font-size: 30px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 0;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.btn.alt {
  background: var(--pink);
  color: var(--navy);
}

.btn.light {
  background: var(--white);
  color: var(--navy);
}

.badge {
  display: inline-block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 120px;
  background: radial-gradient(circle at 50% 0, #ffffff 0, #fff8fb 42%, #fffdf9 75%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -82px;
  height: 190px;
  background: var(--navy);
  border-top: 14px solid var(--pink);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  box-shadow: 0 -3px 0 var(--gold);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0px;
  align-items: center;
}

.hero h1,
.page-hero h1 {
  margin: 16px 0 12px;
  font-size: clamp(46px, 7vw, 84px);
}

.tagline {
  color: var(--pink);
  font-size: clamp(22px, 3vw, 35px);
  letter-spacing: 0.04em;
}

.hero p,
.page-hero p {
  max-width: 680px;
  font-size: 18px;
}

.actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-logo {
  display: flex;
  justify-content: center;
}

.hero-logo img {
  width: min(390px, 88%);
  filter: drop-shadow(0 18px 25px rgba(11, 39, 68, 0.14));
}

.page-hero {
  padding: 72px 0;
  background: linear-gradient(135deg, #ffffff, var(--pink-soft));
  border-bottom: 1px solid var(--border);
}

.section {
  padding: 78px 0;
}

.section-title {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-title h2,
.panel h2 {
  margin: 8px 0 14px;
  font-size: clamp(34px, 4vw, 48px);
}

.cards,
.service-grid,
.gallery-grid,
.process-grid {
  display: grid;
  gap: 24px;
}

.cards {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.panel,
.service-card,
.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.card,
.service-card,
.process-card {
  padding: 28px;
}

.icon {
  color: var(--pink);
  font-size: 35px;
  line-height: 1;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.panel {
  padding: 36px;
}

.theme-image {
  width: 100%;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.service-grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}

.service-card {
  border-left: 5px solid var(--pink);
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.service-card h3 {
  margin: 0 0 22px;
  font-size: 28px;
  text-align: center;
}

.service-card p {
  max-width: 520px;
  min-height: 58px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 26px;
  padding: 0;
  margin: auto 0 0;
  list-style: none;
  columns: auto;
}

.checklist li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  justify-items: start;
  gap: 8px;
  min-height: 30px;
  margin: 0;
  text-align: left;
  font-weight: 700;
}

.checklist li::before {
  content: "♡";
  color: var(--pink);
  font-weight: 900;
  margin: 0;
  line-height: 1;
  text-align: center;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--navy);
  font-weight: 900;
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  color: var(--white);
}

.contact-card a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form label {
  display: block;
  margin: 0 0 6px;
  color: var(--navy);
  font-weight: 800;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 14px;
  border: 1px solid #ecd3dc;
  border-radius: 15px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.note {
  color: var(--muted);
  font-size: 14px;
}

.cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  border-radius: 38px;
  padding: 46px 28px;
  box-shadow: var(--shadow);
}

.cta h2 {
  color: var(--white);
  margin-top: 0;
}

.site-footer {
  margin-top: 50px;
  padding: 38px 12px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.site-footer img {
  width: 86px;
  margin: 0 auto 12px;
}

.site-footer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

@media (max-width: 880px) {
  .mobile-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 16px;
    padding: 22px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-call {
    display: none;
  }

  .hero-grid,
  .split,
  .contact-box,
  .form-row {
    grid-template-columns: 1fr;
  }

  .cards,
  .service-grid,
  .gallery-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .hero::after {
    height: 120px;
  }

  .brand-name {
    font-size: 21px;
  }

  .service-card p {
    min-height: auto;
  }

  .checklist {
    grid-template-columns: 1fr;
  }
    .service-card{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  text-align:center;
  min-height:360px;
}

.service-card h3{
  text-align:center;
  min-height:46px;
  margin-bottom:24px;
}

.service-card p{
  text-align:center;
  max-width:760px;
  min-height:82px;
  margin:0 auto 36px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.service-card .checklist{
  width:82%;
  margin:0 auto;
  padding:0;
  list-style:none;
  display:grid;
  grid-template-columns:1fr 1fr;
  column-gap:70px;
  row-gap:18px;
  columns:unset;
}

.service-card .checklist li{
  display:grid;
  grid-template-columns:28px 1fr;
  align-items:center;
  justify-content:start;
  text-align:left;
  margin:0;
  min-height:34px;
  white-space:nowrap;
}

.service-card .checklist li::before{
  content:"♡";
  color:var(--pink);
  font-weight:900;
  margin:0;
  width:28px;
  text-align:center;
}

@media (max-width:880px){
  .service-card{
    min-height:auto;
  }

  .service-card p{
    min-height:auto;
  }

  .service-card .checklist{
    width:100%;
    grid-template-columns:1fr;
  }

  .service-card .checklist li{
    justify-content:center;
    text-align:left;
  }
}
