/*
Theme Name: MyHospitality Premium
Theme URI: https://myhospitality.io/
Author: OpenAI Codex
Author URI: https://openai.com/
Description: Custom premium WordPress theme for MyHospitality.io focused on revenue, distribution, strategy, and execution.
Version: 1.5.0
Requires at least: 6.5
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: myhospitality-premium
*/

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #ffffff;
  --bg-soft: #f4f7f5;
  --bg-deep: #e8eeea;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-tint: rgba(244, 247, 245, 0.92);
  --line: rgba(26, 26, 26, 0.08);
  --line-strong: rgba(26, 26, 26, 0.14);
  --text: #1a1a1a;
  --muted: #6b7280;
  --muted-strong: #4b5563;
  --accent: #6f8f7b;
  --accent-deep: #4f6f5e;
  --accent-soft: #e3ebe6;
  --accent-strong: #4f6f5e;
  --luxury: #c8a96b;
  --luxury-soft: rgba(200, 169, 107, 0.16);
  --shadow: 0 28px 80px rgba(61, 84, 72, 0.09);
  --shadow-soft: 0 16px 40px rgba(61, 84, 72, 0.06);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(111, 143, 123, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(200, 169, 107, 0.11), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f7faf8 48%, #ffffff 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.18), transparent 46%),
    radial-gradient(circle at 18% 20%, rgba(111, 143, 123, 0.08), transparent 18%);
  opacity: 0.74;
  z-index: -1;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.page-shell {
  position: relative;
  overflow: clip;
}

.section {
  padding: 96px 0;
}

.section--tight {
  padding: 72px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(244, 247, 245, 0.82), rgba(255, 255, 255, 0.92));
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--luxury), var(--accent));
  box-shadow: 0 0 0 6px var(--luxury-soft);
}

.section-heading {
  margin: 22px 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.section-intro {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.02rem;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.eyebrow-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(26, 26, 26, 0.07);
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand__mark {
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(79, 111, 94, 0.08));
}

.brand__copy {
  min-width: 0;
}

.brand__name {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.brand__tag {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav__link {
  color: var(--muted-strong);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--accent-strong);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--accent-strong);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease,
    box-shadow 200ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: white;
  box-shadow: 0 18px 34px rgba(79, 111, 94, 0.18);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(26, 26, 26, 0.08);
  color: var(--accent-strong);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.62);
  border-color: var(--line);
  color: var(--accent-strong);
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero {
  padding: 36px 0 20px;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.92fr);
  gap: 26px;
  align-items: start;
}

.hero__copy {
  padding: 18px 0;
}

.hero__heading {
  margin: 18px 0 18px;
  font-family: "Cormorant Garamond", serif;
  max-width: 760px;
  font-size: clamp(3rem, 5.6vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.hero__lead {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero__visual {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: calc(var(--radius-xl) + 4px);
  border: 1px solid rgba(26, 26, 26, 0.06);
  background:
    radial-gradient(circle at top right, rgba(200, 169, 107, 0.12), transparent 28%),
    radial-gradient(circle at 28% 18%, rgba(111, 143, 123, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 245, 0.92));
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(26, 26, 26, 0.06);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hero-card--image {
  min-height: 292px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(200, 169, 107, 0.12), transparent 24%),
    radial-gradient(circle at 48% 36%, rgba(111, 143, 123, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 250, 248, 0.98));
}

.hero-card--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.44), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(244, 247, 245, 0.28));
  pointer-events: none;
}

.hero-card--image img {
  width: min(100%, 430px);
  max-height: 100%;
  padding: 18px;
  object-fit: contain;
  object-position: center;
  transform: none;
  filter: drop-shadow(0 18px 28px rgba(79, 111, 94, 0.08));
}

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

.hero-card--stat {
  min-height: 188px;
  padding: 24px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 245, 0.96));
}

.hero-card--stat strong {
  display: block;
  margin: 6px 0 10px;
  font-size: 3rem;
  line-height: 0.9;
  color: var(--accent-strong);
}

.hero-card--stat span,
.hero-card--mini span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-card--logic {
  padding: 24px;
  background: linear-gradient(160deg, rgba(244, 247, 245, 0.98), rgba(255, 255, 255, 0.94));
}

.hero-card--logic h3,
.hero-card--mini h3,
.hero-card--stat h3 {
  margin: 0 0 10px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.hero-card--logic ul,
.check-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.hero-card--logic li,
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 10px;
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.hero-card--logic li::before,
.check-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.hero-card--mini {
  min-height: 188px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(200, 169, 107, 0.1));
}

.hero-card--mini strong {
  display: block;
  margin-top: 14px;
  font-size: 2rem;
  line-height: 1;
  color: var(--accent-strong);
}

.hero-signature {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-signature__item {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(26, 26, 26, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hero-signature__item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.hero-signature__item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.authority-grid,
.services-grid,
.package-grid,
.insight-grid,
.partner-grid,
.value-grid {
  display: grid;
  gap: 18px;
}

.authority-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 26px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.package-grid,
.partner-grid,
.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
}

.insight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 26, 26, 0.06);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto 20px 0 auto;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(111, 143, 123, 0.14), transparent 70%);
  pointer-events: none;
}

.card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card__title {
  margin: 14px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.card__body {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.signature-band {
  position: relative;
  margin-top: 28px;
  padding: 30px 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(79, 111, 94, 0.98), rgba(111, 143, 123, 0.96)),
    var(--accent-strong);
  color: white;
  box-shadow: var(--shadow);
}

.signature-band::after {
  content: "";
  position: absolute;
  inset: auto 24px 16px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(200, 169, 107, 0.24), transparent 68%);
  pointer-events: none;
}

.signature-band p {
  margin: 0;
  max-width: 860px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

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

.logic-panel {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 247, 245, 0.94));
  border: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: var(--shadow);
}

.logic-stack {
  display: grid;
  gap: 16px;
}

.logic-stack__item {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(26, 26, 26, 0.06);
}

.logic-stack__item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logic-stack__item span {
  color: var(--muted);
  font-size: 0.94rem;
}

.quote-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(200, 169, 107, 0.16), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(200, 169, 107, 0.22);
  box-shadow: var(--shadow-soft);
}

.quote-card p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.results-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.96fr) minmax(0, 1.04fr);
  gap: 20px;
  margin-top: 34px;
  align-items: stretch;
}

.results-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(26, 26, 26, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 245, 0.94));
  box-shadow: var(--shadow);
}

.results-story__media {
  min-height: 100%;
}

.results-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.results-story__content {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 30px;
}

.results-story__eyebrow {
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.results-story__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.results-story__copy {
  margin: 0;
  color: var(--muted);
}

.results-story__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.results-story__list li {
  display: flex;
  gap: 10px;
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.results-story__list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--luxury), var(--accent));
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.metric-grid--results {
  margin-top: 20px;
}

.results-layout .metric-grid {
  margin-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.metric {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2.4rem;
  line-height: 0.94;
  color: var(--accent-strong);
}

.metric span {
  color: var(--muted);
  font-size: 0.94rem;
}

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.package-card__price {
  margin: 18px 0 2px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--accent-strong);
}

.package-card__note {
  color: var(--muted);
  font-size: 0.9rem;
}

.package-card .button {
  margin-top: auto;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.profile-card {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.profile-card__image,
.profile-card__art {
  min-height: 320px;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(145deg, rgba(79, 111, 94, 0.95), rgba(111, 143, 123, 0.88));
}

.profile-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.profile-card__art {
  display: grid;
  place-items: center;
  color: white;
}

.profile-card__art strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 5.5rem;
  line-height: 1;
  letter-spacing: -0.08em;
}

.profile-card__role {
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-card__name {
  margin: 8px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.profile-card__copy {
  margin: 0;
  color: var(--muted);
  max-width: 44ch;
}

.profile-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.profile-link,
.contact-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-strong);
  font-size: 0.94rem;
  font-weight: 700;
}

.profile-link::after,
.contact-inline-link::after {
  content: "↗";
  font-size: 0.92rem;
}

.profile-link:hover,
.profile-link:focus-visible,
.contact-inline-link:hover,
.contact-inline-link:focus-visible {
  color: var(--accent-deep);
}

.profile-card .check-list {
  margin-top: 18px;
}

.insight-card {
  min-height: 100%;
}

.insight-card h3 {
  margin: 14px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.insight-card p {
  margin: 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: 28px;
  align-items: stretch;
}

.contact-panel,
.contact-form {
  padding: 30px;
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: var(--shadow);
}

.contact-panel {
  background: linear-gradient(155deg, rgba(79, 111, 94, 0.98), rgba(111, 143, 123, 0.94));
  color: white;
}

.contact-panel .section-heading,
.contact-panel .section-label,
.contact-panel p,
.contact-panel span {
  color: white;
}

.contact-panel .section-label {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
}

.contact-panel .section-label::before {
  box-shadow: none;
  background: linear-gradient(135deg, #ffffff, var(--luxury));
}

.contact-panel p,
.contact-form p {
  color: var(--muted);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.84);
}

.contact-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(26, 26, 26, 0.06);
  color: var(--muted-strong);
}

.contact-panel .contact-list li {
  border-top-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
}

.contact-list strong {
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-panel .contact-list strong {
  color: #ffffff;
}

.contact-list span {
  min-width: 0;
}

.profile-link::after,
.contact-inline-link::after {
  content: "->";
  font-size: 0.92rem;
}

.profile-link::after,
.contact-inline-link::after {
  content: "↗";
  font-size: 0.92rem;
}

.profile-link::after,
.contact-inline-link::after {
  content: "->";
  font-size: 0.92rem;
}

@media (hover: hover) {
  .card:hover,
  .metric:hover,
  .profile-card:hover,
  .hero-signature__item:hover,
  .hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 52px rgba(61, 84, 72, 0.11);
    border-color: rgba(79, 111, 94, 0.14);
  }
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: #374151;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-weight: 600;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #6b7280;
  font-weight: 500;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(79, 111, 94, 0.3);
  box-shadow: 0 0 0 5px rgba(111, 143, 123, 0.12);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-status {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  font-size: 0.94rem;
  font-weight: 600;
}

.form-status--success {
  background: rgba(111, 143, 123, 0.12);
  color: var(--accent-strong);
}

.form-status--error {
  background: rgba(200, 169, 107, 0.18);
  color: #7d3e20;
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  padding: 28px 0 42px;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.page-hero {
  padding: 62px 0 16px;
}

.page-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.page-hero__panel {
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 245, 0.94));
  border: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: var(--shadow);
}

.page-hero__aside {
  padding: 30px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(79, 111, 94, 0.98), rgba(111, 143, 123, 0.96));
  color: white;
  box-shadow: var(--shadow);
}

.page-hero__aside h3 {
  margin: 0 0 14px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-hero__aside p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.page-hero__aside .check-list li {
  color: rgba(255, 255, 255, 0.88);
}

.section-panel {
  padding: 36px;
  border-radius: 34px;
  background: var(--surface);
  border: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: var(--shadow-soft);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.96fr) minmax(0, 1.04fr);
  gap: 24px;
  align-items: stretch;
}

.about-story--poster {
  grid-template-columns: 1fr;
  gap: 18px;
}

.about-story__media {
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(26, 26, 26, 0.06);
  background: #ffffff;
  box-shadow: var(--shadow);
  min-height: 420px;
}

.about-story--poster .about-story__media {
  min-height: auto;
  max-width: 880px;
  margin: 0 auto;
}

.about-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-story__content {
  display: grid;
  align-content: center;
  gap: 16px;
}

.about-story__actions {
  display: flex;
  justify-content: center;
}

.about-story__content .section-heading,
.about-story__content .section-intro {
  margin-top: 0;
}

.about-story__copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.article-card {
  display: grid;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(26, 26, 26, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 245, 0.94));
  box-shadow: var(--shadow);
}

.article-card__media {
  min-height: 240px;
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.article-card__content {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.article-card__eyebrow {
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-card__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.article-card__copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

.page-hero__media {
  margin-top: 22px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.page-hero__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.partner-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 22px;
  margin-top: 24px;
  padding: 22px;
  border-radius: 32px;
  border: 1px solid rgba(26, 26, 26, 0.06);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 245, 0.95));
  box-shadow: var(--shadow);
  align-items: center;
}

.partner-showcase__media {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(26, 26, 26, 0.06);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.partner-showcase__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.partner-showcase__content {
  display: grid;
  gap: 12px;
  align-content: center;
}

.partner-showcase__eyebrow {
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partner-showcase__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.partner-showcase__copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 540ms ease, transform 540ms ease;
}

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

@media (max-width: 1080px) {
  .hero__layout,
  .about-story,
  .two-column,
  .contact-layout,
  .results-layout,
  .results-story,
  .page-hero__layout,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .authority-grid,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .package-grid,
  .insight-grid,
  .partner-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-card {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(26, 26, 26, 0.06);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav__links,
  .header-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero {
    padding-top: 36px;
  }

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

  .hero-stat-grid,
  .hero-signature,
  .authority-grid,
  .article-grid,
  .services-grid,
  .package-grid,
  .insight-grid,
  .metric-grid,
  .partner-grid,
  .value-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .partner-showcase {
    grid-template-columns: 1fr;
  }

  .results-layout .metric-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section,
  .section--tight {
    padding: 72px 0;
  }

  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .hero__heading {
    font-size: clamp(2.8rem, 17vw, 4.2rem);
  }

  .hero-card--image {
    min-height: 260px;
  }

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