/*
  ANJU Company Website - Main Styles
*/

:root {
  --color-brand: #ea707f;
  --color-brand-dark: #d85f6f;
  --color-text: #222222;
  --color-muted: #5f5f5f;
  --color-brown: #90735c;
  --color-border: #f3d8d8;
  --color-surface: #ffffff;
  --color-soft: #fff7f3;
  --color-soft-strong: #fdecef;
  --color-footer: #2a2422;
  --shadow-soft: 0 20px 50px rgba(234, 112, 127, 0.14);
  --shadow-card: 0 16px 36px rgba(144, 115, 92, 0.1);
  --container-width: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(234, 112, 127, 0.08) 0 12%, transparent 12% 100%),
    var(--color-soft);
  color: var(--color-text);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

.container {
  width: min(100% - 36px, var(--container-width));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(234, 112, 127, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 20px;
}

.site-logo,
.footer-logo {
  color: var(--color-brand);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  min-height: 76px;
}

.site-logo img {
  display: block;
  width: auto;
  height: 76px;
  max-width: 230px;
  object-fit: contain;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.footer-logo img {
  display: block;
  width: auto;
  height: 60px;
  max-width: 190px;
  object-fit: contain;
}

.mobile-menu-button {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
  cursor: pointer;
  gap: 5px;
  box-shadow: 0 8px 20px rgba(55, 42, 36, 0.06);
}

.mobile-menu-line {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--color-brand);
}

.site-nav {
  position: absolute;
  top: 92px;
  left: 0;
  right: 0;
  display: none;
  padding: 20px 18px 24px;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 16px 30px rgba(55, 42, 36, 0.08);
}

.site-nav.is-open {
  display: block;
}

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

.nav-list a,
.language-switch a {
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-list a {
  position: relative;
  display: inline-flex;
  width: fit-content;
  padding-bottom: 5px;
}

.nav-list a:hover,
.language-switch a:hover {
  color: var(--color-brand);
}

.nav-list a.is-active {
  color: var(--color-brand);
  font-weight: 800;
}

.nav-list a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-brand);
}

.language-switch a.is-active {
  color: var(--color-brand);
  font-weight: 800;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.brand-inline {
  display: inline;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--color-brand);
  font-weight: 750;
}

.brand-hero {
  color: var(--color-brand);
  font-weight: inherit;
}

.site-header .brand-inline,
.site-nav .brand-inline,
.site-footer .brand-inline,
h1 .brand-inline,
h2 .brand-inline,
.button .brand-inline,
.section-label .brand-inline,
.contact-cta .brand-inline,
.poster-bento-card-large .brand-inline,
.poster-cta-card .brand-inline,
.editorial-cta-card .brand-inline {
  color: inherit;
  font-weight: inherit;
}

main {
  background: var(--color-soft);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.18;
  color: var(--color-text);
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: 2.45rem;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: 1.9rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.hero-content h1,
.section-heading h2 {
  color: var(--color-text);
}

.hero-content h1 {
  max-width: 680px;
}

.hero-content h1::after {
  content: "";
  display: block;
  width: 86px;
  height: 6px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--color-brand);
}

p {
  color: var(--color-muted);
  margin-bottom: 0;
}

.home-section,
.hero-section {
  padding: 58px 0;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(253, 236, 239, 0.96), rgba(255, 247, 243, 0.9) 42%, rgba(255, 255, 255, 0.94)),
    var(--color-soft);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: min(38vw, 460px);
  height: 100%;
  border-radius: 0;
  background:
    linear-gradient(135deg, transparent 0 28%, rgba(234, 112, 127, 0.16) 28% 42%, transparent 42% 100%),
    linear-gradient(160deg, transparent 0 55%, rgba(144, 115, 92, 0.1) 55% 70%, transparent 70% 100%);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: min(46vw, 520px);
  height: 14px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(234, 112, 127, 0.26) 0 34px, transparent 34px 48px);
  pointer-events: none;
}

.hero-grid,
.why-grid {
  position: relative;
  display: grid;
  gap: 28px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 12px;
  border: 1px solid rgba(234, 112, 127, 0.22);
  border-radius: 999px;
  background: rgba(253, 236, 239, 0.88);
  color: var(--color-brand);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--color-muted);
  font-size: 1.12rem;
}

.hero-actions,
.contact-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(144, 115, 92, 0.1);
}

.button-primary {
  background: var(--color-brand);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(234, 112, 127, 0.34);
}

.button-secondary {
  background: #ffffff;
  color: var(--color-text);
  border-color: var(--color-border);
}

.button-light {
  background: #ffffff;
  color: var(--color-brand);
  box-shadow: none;
}

.button-outline-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: none;
}

.button:hover {
  border-color: rgba(234, 112, 127, 0.46);
}

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

.button-secondary:hover,
.button-light:hover {
  color: var(--color-brand-dark);
}

.placeholder-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 196px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(234, 112, 127, 0.34), rgba(255, 255, 255, 0.78)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.42) 0 10px, rgba(243, 216, 216, 0.34) 10px 20px),
    var(--color-soft-strong);
  color: var(--color-brown);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.placeholder-image::before {
  content: "";
  position: absolute;
  width: 92px;
  height: 58px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(234, 112, 127, 0.28), rgba(144, 115, 92, 0.14));
  transform: rotate(8deg);
}

.placeholder-image::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 82px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-brand);
  opacity: 0.56;
}

.placeholder-image span {
  position: relative;
  z-index: 1;
}

.hero-image {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 6px solid #ffffff;
  border-radius: 28px;
  background: var(--color-soft-strong);
  box-shadow: var(--shadow-soft);
}

.hero-image img,
.poster-main-image img,
.poster-service-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.section-heading h2 {
  position: relative;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--color-brand);
}

.card-grid,
.why-list {
  display: grid;
  gap: 18px;
}

.info-card,
.highlight-card,
.service-card,
.why-item {
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(144, 115, 92, 0.09);
}

.info-card,
.highlight-card,
.why-item {
  position: relative;
  padding: 22px;
  overflow: hidden;
}

.info-card,
.highlight-card {
  border-top: 6px solid var(--color-brand);
  background:
    linear-gradient(180deg, rgba(253, 236, 239, 0.64), rgba(255, 255, 255, 0) 42%),
    #ffffff;
}

.info-card::after,
.highlight-card::after,
.why-item::after {
  content: "";
  position: absolute;
  top: 16px;
  right: -28px;
  width: 90px;
  height: 16px;
  border-radius: 999px;
  background: rgba(234, 112, 127, 0.14);
  transform: rotate(-28deg);
}

.info-card::before,
.highlight-card::before,
.why-item::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(234, 112, 127, 0.95), rgba(234, 112, 127, 0.52)),
    var(--color-brand);
  box-shadow: 0 12px 24px rgba(234, 112, 127, 0.22);
}

.info-card h3,
.highlight-card h3,
.why-item h3 {
  color: var(--color-text);
}

.info-card:hover,
.highlight-card:hover,
.service-card:hover,
.why-item:hover {
  border-color: rgba(234, 112, 127, 0.5);
}

.service-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff, rgba(253, 236, 239, 0.52)),
    #ffffff;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 68px;
  height: 12px;
  border-radius: 999px;
  background: rgba(234, 112, 127, 0.22);
  transform: rotate(-22deg);
}

.service-card h3,
.service-card p {
  padding-inline: 24px;
}

.service-card h3 {
  margin-top: 20px;
  color: var(--color-brand);
}

.service-card p {
  padding-bottom: 22px;
}

.service-image {
  display: grid;
  place-items: center;
  min-height: 150px;
  border-width: 0 0 1px;
  border-radius: 0;
  border-bottom: 1px solid var(--color-border);
  background:
    linear-gradient(135deg, rgba(234, 112, 127, 0.2), rgba(255, 255, 255, 0.76)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.38) 0 12px, rgba(243, 216, 216, 0.34) 12px 24px),
    var(--color-soft-strong);
  color: var(--color-brown);
  font-size: 0.86rem;
  font-weight: 750;
  text-align: center;
  box-shadow: none;
}

.service-image span {
  position: relative;
  z-index: 1;
  max-width: 80%;
}

.icon-card-grid {
  display: grid;
  gap: 16px;
}

.icon-badge {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid rgba(244, 207, 213, 0.68);
  border-radius: 17px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.9), transparent 36%),
    linear-gradient(145deg, #fffaf8, #fff5f6 64%, #fffbf6),
    #fff7f8;
  color: var(--color-brand);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -8px 14px rgba(234, 112, 127, 0.025),
    0 8px 18px rgba(234, 112, 127, 0.075),
    0 2px 8px rgba(144, 115, 92, 0.04);
}

.icon-badge::before {
  content: "";
  position: absolute;
  inset: 6px auto auto 7px;
  width: 16px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  pointer-events: none;
}

.icon-badge svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.luxury-icon-card::before {
  display: none;
}

.info-card.luxury-icon-card,
.highlight-card.luxury-icon-card,
.why-item.luxury-icon-card,
.icon-card.luxury-icon-card {
  border-color: rgba(244, 207, 213, 0.52);
  background:
    radial-gradient(circle at 18% 0, rgba(255, 247, 248, 0.62), transparent 34%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 246, 0.76) 76%, rgba(253, 236, 239, 0.22)),
    #ffffff;
  box-shadow:
    0 12px 28px rgba(144, 115, 92, 0.065),
    0 1px 5px rgba(234, 112, 127, 0.03);
}

.info-card.luxury-icon-card,
.highlight-card.luxury-icon-card {
  border-top: 1px solid rgba(244, 207, 213, 0.52);
}

.luxury-icon-card {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.luxury-icon-card .icon-badge {
  margin-bottom: 14px;
}

.luxury-icon-card::after {
  top: 20px;
  right: 22px;
  width: 34px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(234, 112, 127, 0.12), rgba(234, 112, 127, 0));
  opacity: 0.18;
  transform: none;
}

.luxury-icon-card:hover {
  border-color: rgba(234, 112, 127, 0.34);
  box-shadow:
    0 16px 34px rgba(144, 115, 92, 0.085),
    0 2px 10px rgba(234, 112, 127, 0.045);
  transform: translateY(-1px);
}

.icon-card {
  position: relative;
  overflow: hidden;
  min-height: 164px;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(253, 236, 239, 0.58), rgba(255, 255, 255, 0) 46%),
    #ffffff;
  box-shadow: 0 12px 28px rgba(144, 115, 92, 0.08);
}

.icon-card::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 22px;
  width: 34px;
  height: 1px;
  border-radius: 999px;
  background: rgba(234, 112, 127, 0.08);
  transform: none;
}

.icon-card h3 {
  margin-bottom: 7px;
  color: var(--color-text);
}

.luxury-icon-card h3 {
  margin-bottom: 6px;
}

.icon-card p {
  max-width: 34rem;
}

.highlight-grid .highlight-card.luxury-icon-card,
.highlight-grid .info-card.luxury-icon-card {
  min-height: 0;
  padding: 22px;
}

.highlight-grid .luxury-icon-card .icon-badge {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
}

.highlight-grid .luxury-icon-card .icon-badge svg {
  width: 23px;
  height: 23px;
}

.home-section:not(.hero-section) .container > .highlight-card,
.home-section form.highlight-card {
  max-width: 760px;
}

.home-section form.highlight-card {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--color-border);
  background:
    linear-gradient(180deg, rgba(253, 236, 239, 0.58), rgba(255, 255, 255, 0) 34%),
    #ffffff;
}

.home-section form.highlight-card::before {
  width: 58px;
  height: 6px;
  margin-bottom: 4px;
  border-radius: 999px;
}

.home-section form.highlight-card label {
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 800;
}

.home-section form.highlight-card input,
.home-section form.highlight-card select,
.home-section form.highlight-card textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: #ffffff;
  color: var(--color-text);
  font: inherit;
  outline: none;
}

.home-section form.highlight-card textarea {
  min-height: 132px;
  resize: vertical;
}

.home-section form.highlight-card input:focus,
.home-section form.highlight-card select:focus,
.home-section form.highlight-card textarea:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 4px rgba(234, 112, 127, 0.14);
}

.home-section form.highlight-card .button {
  margin-top: 8px;
  cursor: default;
}

.why-section .why-list .why-item:nth-child(2n) {
  background:
    linear-gradient(180deg, rgba(255, 247, 243, 0.88), rgba(255, 255, 255, 0) 46%),
    #ffffff;
}

.highlights-section,
.why-section {
  background: var(--color-surface);
}

.highlights-section {
  background:
    linear-gradient(180deg, #ffffff, rgba(255, 247, 243, 0.78)),
    linear-gradient(90deg, transparent 0 8%, rgba(234, 112, 127, 0.08) 8% 13%, transparent 13% 100%);
}

.why-section {
  background:
    linear-gradient(180deg, #ffffff, var(--color-soft-strong));
}

.services-section {
  background:
    linear-gradient(180deg, var(--color-soft), #ffffff 42%, var(--color-soft-strong)),
    repeating-linear-gradient(90deg, transparent 0 96px, rgba(234, 112, 127, 0.04) 96px 100px);
}

.contact-cta-section {
  padding-bottom: 0;
  background: #ffffff;
}

.contact-cta {
  padding: 38px 24px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 30px 30px 0 0;
  background:
    linear-gradient(135deg, #ea707f, #f18a98 54%, #90735c),
    var(--color-brand);
  color: #ffffff;
  box-shadow: 0 -18px 48px rgba(234, 112, 127, 0.22);
}

.contact-cta h2 {
  color: #ffffff;
}

.contact-cta p {
  color: #f0f0f0;
}

.contact-cta p {
  max-width: 720px;
  margin-bottom: 24px;
}

.poster-hero-section {
  position: relative;
  overflow: hidden;
  padding: 52px 0 48px;
  background:
    linear-gradient(135deg, rgba(253, 236, 239, 0.96), rgba(255, 247, 243, 0.9) 48%, rgba(255, 255, 255, 0.94)),
    var(--color-soft);
}

.poster-hero-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: min(46vw, 560px);
  height: 100%;
  background:
    linear-gradient(135deg, transparent 0 26%, rgba(234, 112, 127, 0.18) 26% 42%, transparent 42% 100%),
    repeating-linear-gradient(90deg, transparent 0 60px, rgba(234, 112, 127, 0.06) 60px 66px);
  pointer-events: none;
}

.poster-hero-section::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: min(44vw, 520px);
  height: 12px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(234, 112, 127, 0.26) 0 32px, transparent 32px 46px);
  pointer-events: none;
}

.poster-hero-grid {
  position: relative;
  display: grid;
  gap: 24px;
}

.poster-hero-copy {
  display: grid;
  align-content: center;
}

.poster-hero-copy h1 {
  max-width: 720px;
}

.poster-hero-copy h1::after {
  content: "";
  display: block;
  width: 94px;
  height: 6px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--color-brand);
}

.poster-hero-media {
  display: grid;
  gap: 14px;
}

.poster-main-image {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 6px solid #ffffff;
  border-radius: 30px;
  background: var(--color-soft-strong);
  box-shadow: var(--shadow-soft);
}

.poster-chip-grid {
  display: grid;
  gap: 12px;
}

.poster-chip,
.poster-bento-card,
.poster-service-card,
.poster-why-list article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(144, 115, 92, 0.09);
}

.poster-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 14px;
}

.poster-chip h2 {
  margin: 0;
  font-size: 1rem;
}

.poster-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(234, 112, 127, 0.98), rgba(234, 112, 127, 0.54)),
    var(--color-brand);
  box-shadow: 0 12px 24px rgba(234, 112, 127, 0.22);
}

.poster-bento-grid {
  display: grid;
  gap: 16px;
}

.poster-bento-card {
  min-height: 178px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(253, 236, 239, 0.7), rgba(255, 255, 255, 0) 50%),
    #ffffff;
}

.poster-bento-card::after,
.poster-service-card::after,
.poster-why-list article::after {
  content: "";
  position: absolute;
  top: 18px;
  right: -28px;
  width: 96px;
  height: 16px;
  border-radius: 999px;
  background: rgba(234, 112, 127, 0.16);
  transform: rotate(-26deg);
}

.poster-bento-card-large {
  background:
    linear-gradient(135deg, rgba(234, 112, 127, 0.94), rgba(241, 138, 152, 0.9)),
    var(--color-brand);
}

.poster-bento-card-large h3,
.poster-bento-card-large p {
  color: #ffffff;
}

.poster-bento-card-large .poster-icon {
  background: #ffffff;
  box-shadow: none;
}

.poster-bento-card h3 {
  margin-top: 16px;
  font-size: 1.25rem;
}

.poster-bento-card p {
  max-width: 460px;
}

.poster-services-section {
  background:
    linear-gradient(180deg, var(--color-soft), #ffffff 45%, var(--color-soft-strong)),
    repeating-linear-gradient(90deg, transparent 0 96px, rgba(234, 112, 127, 0.04) 96px 100px);
}

.poster-service-grid {
  display: grid;
  gap: 18px;
}

.poster-service-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  background:
    linear-gradient(180deg, #ffffff, rgba(253, 236, 239, 0.54)),
    #ffffff;
}

.poster-card-label {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--color-soft-strong);
  color: var(--color-brand);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.poster-service-card h3 {
  margin-bottom: 0;
  color: var(--color-text);
  font-size: 1.35rem;
}

.poster-service-card p:not(.poster-card-label) {
  margin-bottom: 0;
}

.poster-service-image {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-soft-strong);
  box-shadow: none;
}

.poster-service-card .button {
  justify-self: start;
  min-height: 44px;
  padding: 10px 18px;
}

.poster-why-section {
  background:
    linear-gradient(180deg, #ffffff, var(--color-soft-strong));
}

.poster-why-panel {
  display: grid;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background:
    linear-gradient(135deg, #ffffff, rgba(255, 247, 243, 0.86)),
    #ffffff;
  box-shadow: 0 18px 42px rgba(144, 115, 92, 0.1);
}

.poster-why-intro {
  align-self: center;
}

.poster-why-list {
  display: grid;
  gap: 12px;
}

.poster-why-list article {
  padding: 18px;
}

.poster-why-list h3 {
  margin-bottom: 6px;
  color: var(--color-brand);
  font-size: 1.02rem;
}

.poster-cta-section {
  padding-bottom: 0;
  background: #ffffff;
}

.poster-cta-card {
  display: grid;
  gap: 24px;
  padding: 34px 24px;
  border-radius: 30px 30px 0 0;
  background:
    linear-gradient(135deg, rgba(42, 36, 34, 0.12), transparent 42%),
    linear-gradient(135deg, #ea707f, #f18a98 58%, #90735c),
    var(--color-brand);
  color: #ffffff;
  box-shadow: 0 -18px 48px rgba(234, 112, 127, 0.22);
}

.poster-cta-card .section-label {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

.poster-cta-card h2,
.poster-cta-card p {
  color: #ffffff;
}

.poster-cta-card p {
  max-width: 720px;
}

.editorial-hero-section {
  position: relative;
  overflow: hidden;
  padding: 64px 0 74px;
  background:
    radial-gradient(circle at 78% 22%, rgba(234, 112, 127, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(255, 247, 243, 0.98), rgba(255, 255, 255, 0.9) 48%, rgba(253, 236, 239, 0.76)),
    var(--color-soft);
}

.editorial-hero-section::before {
  content: "";
  position: absolute;
  inset: auto -7vw 3% auto;
  width: min(52vw, 680px);
  height: min(44vw, 560px);
  border-radius: 56% 44% 36% 64%;
  background:
    linear-gradient(135deg, rgba(234, 112, 127, 0.24), rgba(144, 115, 92, 0.14)),
    rgba(253, 236, 239, 0.86);
  transform: rotate(-8deg);
  pointer-events: none;
}

.editorial-hero-section::after {
  content: "";
  position: absolute;
  top: 16%;
  right: 31%;
  width: 1px;
  height: 58%;
  background: linear-gradient(180deg, transparent, rgba(234, 112, 127, 0.34), transparent);
  pointer-events: none;
}

.editorial-hero-grid {
  position: relative;
  display: grid;
  gap: 32px;
}

.editorial-hero-copy {
  display: grid;
  align-content: center;
}

.editorial-hero-copy h1 {
  max-width: 720px;
  font-weight: 850;
}

.editorial-hero-copy h1::after {
  content: "";
  display: block;
  width: 94px;
  height: 5px;
  margin-top: 20px;
  border-radius: 999px;
  background: var(--color-brand);
}

.editorial-hero-media {
  position: relative;
  isolation: isolate;
  padding: 26px 0 42px 28px;
}

.editorial-hero-media::before {
  content: "";
  position: absolute;
  inset: 0 9% 4% 2%;
  border-radius: 52px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(253, 236, 239, 0.5)),
    rgba(255, 255, 255, 0.64);
  box-shadow: 0 34px 82px rgba(144, 115, 92, 0.16);
  transform: rotate(-4deg);
  z-index: -1;
}

.editorial-hero-media::after {
  content: "";
  position: absolute;
  inset: auto 2% 16px auto;
  width: 42%;
  height: 34%;
  border-radius: 36px;
  background: rgba(234, 112, 127, 0.14);
  transform: rotate(7deg);
  z-index: -2;
}

.editorial-hero-image {
  min-height: 310px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 42px 42px 42px 18px;
  box-shadow: 0 34px 82px rgba(55, 42, 36, 0.18);
  transform: translate(12px, -8px) rotate(1.2deg);
}

.editorial-hero-image img,
.editorial-service-image img,
.editorial-service-mini-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.editorial-float-card {
  position: absolute;
  display: grid;
  gap: 2px;
  max-width: 220px;
  padding: 17px 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 243, 0.86)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 48px rgba(55, 42, 36, 0.16);
  backdrop-filter: blur(14px);
}

.editorial-float-card::before {
  content: "";
  width: 42px;
  height: 3px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: var(--color-brand);
}

.editorial-float-card span {
  color: var(--color-brand);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.editorial-float-card strong {
  color: var(--color-text);
  font-size: 0.94rem;
  line-height: 1.25;
}

.editorial-float-card-primary {
  left: 2px;
  bottom: 18px;
}

.editorial-float-card-secondary {
  right: -4px;
  top: 48px;
}

.editorial-vertical-label {
  position: absolute;
  left: -10px;
  top: 64px;
  z-index: 2;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--color-brand);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.editorial-services-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 94% 22%, rgba(144, 115, 92, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff, rgba(255, 247, 243, 0.92)),
    var(--color-surface);
}

.editorial-services-section::before {
  content: "";
  position: absolute;
  top: 18%;
  left: -10vw;
  width: min(38vw, 470px);
  height: min(38vw, 470px);
  border-radius: 44% 56% 60% 40%;
  background: rgba(234, 112, 127, 0.1);
  transform: rotate(16deg);
  pointer-events: none;
}

.editorial-services-inner {
  position: relative;
}

.editorial-section-heading {
  margin-bottom: 34px;
}

.editorial-service-layout {
  display: grid;
  gap: 24px;
}

.editorial-service-feature,
.editorial-service-mini {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(144, 115, 92, 0.12);
}

.editorial-service-feature {
  display: grid;
  border-radius: 42px 18px 42px 42px;
}

.editorial-service-feature::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 74px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-brand);
  opacity: 0.86;
}

.editorial-service-image {
  min-height: 300px;
  overflow: hidden;
  border-radius: inherit;
}

.editorial-service-copy {
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 243, 0.84)),
    #ffffff;
}

.editorial-service-copy h3,
.editorial-service-mini h3 {
  margin-bottom: 0;
}

.editorial-service-copy p:not(.poster-card-label),
.editorial-service-mini p:not(.poster-card-label) {
  margin-bottom: 0;
}

.editorial-service-copy .button {
  justify-self: start;
  margin-top: 4px;
}

.editorial-service-side {
  display: grid;
  gap: 24px;
  padding-top: 18px;
}

.editorial-service-mini {
  display: grid;
  gap: 18px;
  padding: 16px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 243, 0.82)),
    #ffffff;
}

.editorial-service-mini:nth-child(2) {
  margin-left: 22px;
}

.editorial-service-mini-image {
  min-height: 190px;
  overflow: hidden;
  border-radius: 22px;
}

.editorial-service-mini a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--color-brand);
  font-size: 0.92rem;
  font-weight: 850;
}

.editorial-why-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(234, 112, 127, 0.1), transparent 26%),
    linear-gradient(90deg, rgba(255, 247, 243, 0.96), #ffffff 42%, rgba(253, 236, 239, 0.64)),
    #ffffff;
}

.editorial-why-panel {
  position: relative;
  display: grid;
  gap: 26px;
  padding: 34px 0;
}

.editorial-why-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 112px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-brand);
}

.editorial-why-intro h2 {
  max-width: 620px;
}

.editorial-why-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(144, 115, 92, 0.14);
}

.editorial-why-list article {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 104px;
  padding: 22px 18px;
  border-bottom: 1px solid rgba(144, 115, 92, 0.14);
}

.editorial-why-list article::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: rgba(234, 112, 127, 0.22);
}

.editorial-why-list .icon-badge {
  flex: 0 0 auto;
  margin-bottom: 0;
  border-radius: 18px;
}

.editorial-why-list .icon-badge svg {
  width: 24px;
  height: 24px;
}

.editorial-why-list h3 {
  margin: 0;
  font-size: 1.05rem;
}

.editorial-cta-section {
  padding-bottom: 0;
  background: #ffffff;
}

.editorial-cta-card {
  position: relative;
  display: grid;
  gap: 24px;
  overflow: hidden;
  padding: 42px 26px;
  border-radius: 42px 42px 0 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.26), transparent 22%),
    linear-gradient(135deg, rgba(42, 36, 34, 0.18), transparent 44%),
    linear-gradient(135deg, #ea707f, #f18a98 48%, #90735c),
    var(--color-brand);
  color: #ffffff;
  box-shadow: 0 -22px 58px rgba(144, 115, 92, 0.2);
}

.editorial-cta-card::after {
  content: "";
  position: absolute;
  inset: 12% -8% auto auto;
  width: 300px;
  height: 300px;
  border-radius: 46% 54% 42% 58%;
  background: rgba(255, 255, 255, 0.14);
  transform: rotate(-12deg);
}

.editorial-cta-card .section-label {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.38);
  color: #ffffff;
}

.editorial-cta-card h2,
.editorial-cta-card p {
  position: relative;
  color: #ffffff;
}

.editorial-cta-card p {
  max-width: 720px;
}

.inner-page-hero,
main > .home-section:only-child {
  display: grid;
  align-items: center;
  min-height: 40vh;
  padding: 66px 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(251, 246, 242, 0.94)),
    var(--color-soft);
}

.inner-page-wrapper,
main > .home-section:only-child .section-heading {
  position: relative;
  max-width: 760px;
  padding: 34px 0 36px;
}

.inner-page-wrapper::before,
main > .home-section:only-child .section-heading::before {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--color-brand);
}

.inner-page-title,
main > .home-section:only-child h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: 2.55rem;
}

.inner-page-description,
main > .home-section:only-child p {
  max-width: 620px;
  color: #514b48;
  font-size: 1.06rem;
}

.site-footer {
  margin-top: 0;
  padding: 48px 0 26px;
  background: var(--color-footer);
  color: #ffffff;
}

.footer-inner {
  display: grid;
  gap: 34px;
}

.footer-brand p,
.footer-contact p,
.footer-bottom p {
  margin: 8px 0 0;
  color: #d6d0cc;
}

.footer-links h2,
.footer-contact h2 {
  margin: 0 0 14px;
  font-size: 1rem;
  color: #ffffff;
}

.footer-links ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #d6d0cc;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
