:root {
  --cream: #fbf5ee;
  --cream-deep: #f3e7dc;
  --paper: #fffaf5;
  --charcoal: #2e2a27;
  --muted: #746962;
  --soft: #a5978e;
  --line: rgba(91, 70, 59, 0.16);
  --rose: #e56a78;
  --coral: #f09a87;
  --bronze: #b68458;
  --bronze-deep: #8e6544;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(70, 45, 35, 0.12);
  --shadow-soft: 0 16px 44px rgba(70, 45, 35, 0.1);
  --radius: 28px;
  --max-width: 1180px;
  --header-height: 88px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(229, 106, 120, 0.1), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(182, 132, 88, 0.14), transparent 28%),
    var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.section-padding {
  padding: 112px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  transition: background-color 240ms ease, box-shadow 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 250, 245, 0.92);
  box-shadow: 0 10px 34px rgba(65, 42, 31, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo-link {
  flex: 0 0 auto;
}

.site-logo {
  width: 166px;
  height: auto;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(46, 42, 39, 0.78);
  font-size: 14px;
  letter-spacing: 0.02em;
}

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

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--bronze), var(--rose));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.mobile-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 22px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--bronze), var(--rose) 62%, var(--coral));
  box-shadow: 0 14px 34px rgba(217, 104, 111, 0.22);
}

.btn-secondary {
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.52);
  border-color: var(--line);
}

.header-cta:hover,
.mobile-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(217, 104, 111, 0.24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--charcoal);
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 54px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(22, 19, 17, 0.78), rgba(22, 19, 17, 0.5) 48%, rgba(22, 19, 17, 0.18)),
    url("../images/background.jpeg") center / cover no-repeat;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: block;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--bronze-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2d1a7;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 770px;
  margin-bottom: 26px;
  font-size: clamp(48px, 6vw, 82px);
}

h1 em {
  font-style: italic;
  color: transparent;
  background: linear-gradient(135deg, #f2d1a7, #ffb4be, #ffd0c3);
  -webkit-background-clip: text;
  background-clip: text;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(36px, 4vw, 58px);
}

h3 {
  color: var(--charcoal);
  font-size: 20px;
  line-height: 1.35;
}

.hero-subtext {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 250, 245, 0.84);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 74px;
  align-items: start;
}

.section-intro p:not(.section-label),
.section-heading + p {
  color: var(--muted);
}

.section-intro p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.value-list {
  display: grid;
  gap: 16px;
}

.value-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.74);
  box-shadow: 0 14px 40px rgba(70, 45, 35, 0.06);
}

.line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--rose);
  background: linear-gradient(135deg, rgba(229, 106, 120, 0.12), rgba(182, 132, 88, 0.14));
  border: 1px solid rgba(182, 132, 88, 0.2);
  font-size: 22px;
}

.value-row h3,
.value-row p {
  margin-bottom: 0;
}

.value-row h3 {
  margin-bottom: 8px;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading.narrow {
  max-width: 650px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.business-card {
  position: relative;
  min-height: 680px;
  padding: 30px;
  border-radius: 34px;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.business-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(70, 45, 35, 0.16);
}

.dark-card {
  color: rgba(255, 250, 245, 0.86);
  background:
    radial-gradient(circle at 82% 18%, rgba(229, 106, 120, 0.34), transparent 35%),
    linear-gradient(150deg, #171413, #302a27);
}

.light-card {
  color: var(--charcoal);
  background:
    radial-gradient(circle at 82% 18%, rgba(229, 106, 120, 0.15), transparent 34%),
    linear-gradient(150deg, #fffaf5, #ead8c7);
  border: 1px solid rgba(182, 132, 88, 0.22);
}

.business-visual {
  position: relative;
  height: 220px;
  margin-bottom: 34px;
  border-radius: 26px;
  overflow: hidden;
}

.digital-visual {
  background:
    linear-gradient(135deg, rgba(229, 106, 120, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.digital-visual span {
  position: absolute;
  border: 1px solid rgba(255, 250, 245, 0.18);
  border-radius: 999px;
}

.digital-visual span:nth-child(1) {
  width: 350px;
  height: 350px;
  left: -64px;
  top: -118px;
  border-color: rgba(229, 106, 120, 0.5);
}

.digital-visual span:nth-child(2) {
  width: 210px;
  height: 210px;
  right: 34px;
  top: 36px;
}

.digital-visual span:nth-child(3) {
  width: 82%;
  height: 1px;
  left: 9%;
  bottom: 54px;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 245, 0.42), transparent);
}

.home-visual {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(230, 204, 179, 0.5)),
    rgba(255, 250, 245, 0.72);
  border: 1px solid rgba(182, 132, 88, 0.18);
}

.home-visual span {
  position: absolute;
  display: block;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(142, 101, 68, 0.12);
}

.home-visual span:nth-child(1) {
  width: 58%;
  height: 124px;
  left: 32px;
  bottom: 30px;
}

.home-visual span:nth-child(2) {
  width: 34%;
  height: 170px;
  right: 34px;
  bottom: 30px;
  background: linear-gradient(160deg, rgba(229, 106, 120, 0.12), rgba(255, 255, 255, 0.5));
}

.home-visual span:nth-child(3) {
  width: 58px;
  height: 58px;
  left: 62px;
  top: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(182, 132, 88, 0.52), rgba(229, 106, 120, 0.28));
}

.business-content {
  position: relative;
  z-index: 1;
}

.brand-name {
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.1;
}

.business-subtitle {
  margin-bottom: 24px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dark-card h3,
.dark-card .brand-name {
  color: var(--white);
}

.business-card h3 {
  max-width: 430px;
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
}

.business-card p:not(.brand-name):not(.business-subtitle) {
  color: inherit;
}

.business-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.business-card li {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid currentColor;
  color: inherit;
  font-size: 13px;
  opacity: 0.78;
}

.business-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--charcoal);
  background: var(--white);
  font-weight: 800;
  font-size: 14px;
}

.dark-card .business-link {
  color: var(--white);
  background: linear-gradient(135deg, var(--bronze), var(--rose));
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.why-item {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 250, 245, 0.64);
  box-shadow: 0 14px 42px rgba(70, 45, 35, 0.06);
}

.why-item span {
  display: block;
  margin-bottom: 58px;
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 28px;
}

.why-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.stats-section {
  padding: 36px 0;
}

.stats-bar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 30%, rgba(229, 106, 120, 0.24), transparent 34%),
    radial-gradient(circle at 84% 12%, rgba(182, 132, 88, 0.2), transparent 30%),
    linear-gradient(135deg, #201c1a, #3a312d);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stat-item {
  padding: 22px;
  color: rgba(255, 250, 245, 0.78);
  text-align: center;
}

.stat-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
}

.careers {
  padding-top: 82px;
}

.careers-band {
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 250, 245, 0.86), rgba(244, 225, 211, 0.62)),
    var(--paper);
}

.careers-band h2,
.careers-band p:not(.section-label) {
  max-width: 760px;
}

.careers-band p:not(.section-label) {
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  padding: 72px 0 28px;
  color: rgba(255, 250, 245, 0.82);
  background:
    radial-gradient(circle at 16% 20%, rgba(229, 106, 120, 0.18), transparent 30%),
    linear-gradient(135deg, #211d1b, #332a26);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(250px, 0.8fr) minmax(280px, 1fr);
  gap: 52px;
  align-items: start;
}

.footer-logo {
  width: 180px;
  margin-bottom: 22px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 250, 245, 0.94);
}

.footer-brand p {
  max-width: 340px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 245, 0.18);
  border-radius: 50%;
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

address {
  font-style: normal;
}

address a {
  color: var(--white);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 245, 0.16);
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 250, 245, 0.08);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 250, 245, 0.5);
}

.form-message {
  min-height: 24px;
  margin-bottom: 0;
  color: #ffc1c6;
  font-size: 14px;
}

.form-message.is-success {
  color: #f2d1a7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 250, 245, 0.12);
  color: rgba(255, 250, 245, 0.62);
  font-size: 14px;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

@media (max-width: 1024px) {
  :root {
    --header-height: 78px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .mobile-nav {
    position: fixed;
    top: var(--header-height);
    right: 20px;
    left: 20px;
    display: grid;
    gap: 4px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 250, 245, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .mobile-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav a {
    padding: 13px 8px;
    color: var(--charcoal);
    font-weight: 700;
  }

  .mobile-cta {
    margin-top: 8px;
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--bronze), var(--rose));
  }

  .hero-grid,
  .two-column,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    max-width: 760px;
  }

  .business-grid {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .stats-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .section-padding {
    padding: 78px 0;
  }

  .site-logo {
    width: 148px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 30px);
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 35px;
  }

  .hero-subtext {
    font-size: 17px;
  }

  .hero-actions,
  .footer-bottom,
  .footer-bottom div {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .value-row {
    grid-template-columns: 1fr;
  }

  .business-card {
    min-height: auto;
    padding: 22px;
    border-radius: 26px;
  }

  .business-visual {
    height: 180px;
  }

  .business-card h3 {
    font-size: 30px;
  }

  .why-grid,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .why-item {
    min-height: 0;
  }

  .why-item span {
    margin-bottom: 30px;
  }

  .stats-bar,
  .careers-band {
    padding: 28px;
    border-radius: 24px;
  }
}
