:root {
  --ink: #1d1713;
  --ink-soft: #514841;
  --brown: #32160f;
  --dark: #17110d;
  --dark-soft: #211711;
  --gold: #c78c36;
  --gold-bright: #dda64f;
  --gold-pale: #f2d6a2;
  --ivory: #fbf8f1;
  --sand: #f1eadf;
  --sand-deep: #e6dac8;
  --white: #ffffff;
  --muted: #746a62;
  --line: rgba(41, 27, 19, 0.14);
  --line-light: rgba(255, 255, 255, 0.14);
  --green: #167b47;
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --container: 1280px;
  --header-height: 98px;
  --radius: 24px;
  --shadow: 0 28px 80px rgba(36, 21, 13, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3.25rem, 5.5vw, 5.7rem);
  line-height: 0.98;
}

h2 em {
  display: block;
  color: var(--gold);
  font-weight: 400;
}

h3 {
  line-height: 1.08;
}

::selection {
  color: var(--white);
  background: var(--gold);
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

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

.section {
  padding-block: clamp(110px, 11vw, 165px);
}

.section-dark {
  color: var(--white);
  background: var(--dark);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 11px 17px;
  border-radius: 8px;
  color: var(--white);
  background: var(--brown);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.kicker > span {
  flex: 0 0 30px;
  height: 1px;
  background: currentColor;
}

.kicker-light {
  color: var(--gold-pale);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button > span {
  font-size: 1rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.button:hover > span {
  transform: translate(2px, -2px);
}

.button > svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 220ms ease;
}

.button:hover > svg {
  transform: translateY(3px);
}

.button-dark {
  color: var(--white);
  background: var(--dark);
  border-color: var(--dark);
}

.button-dark:hover {
  background: var(--brown);
  border-color: var(--brown);
  box-shadow: 0 12px 28px rgba(50, 22, 15, 0.18);
}

.button-gold {
  color: #21150d;
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  box-shadow: 0 14px 34px rgba(92, 57, 16, 0.25);
}

.button-gold:hover {
  background: #edb962;
  border-color: #edb962;
  box-shadow: 0 17px 40px rgba(92, 57, 16, 0.33);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.52);
}

.button-whatsapp {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.button-whatsapp:hover {
  background: #106a3c;
  border-color: #106a3c;
  box-shadow: 0 16px 34px rgba(16, 94, 54, 0.22);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.text-link span {
  font-size: 1rem;
  transition: transform 180ms ease;
}

.text-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.text-link:hover span {
  transform: translate(2px, 2px);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 200;
  padding-top: 14px;
  transition: padding 240ms ease;
}

.header-shell {
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 30px;
  padding: 8px 10px 8px 22px;
  border: 1px solid rgba(72, 45, 25, 0.12);
  border-radius: 18px;
  background: rgba(251, 248, 241, 0.94);
  box-shadow: 0 10px 38px rgba(27, 16, 10, 0.09);
  backdrop-filter: blur(18px);
  transition:
    min-height 240ms ease,
    box-shadow 240ms ease,
    background-color 240ms ease;
}

.site-header.is-scrolled {
  padding-top: 8px;
}

.site-header.is-scrolled .header-shell {
  min-height: 64px;
  background: rgba(251, 248, 241, 0.98);
  box-shadow: 0 12px 38px rgba(27, 16, 10, 0.15);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  height: auto;
}

.brand-header {
  gap: clamp(8px, 0.8vw, 11px);
}

.brand-header .brand-icon {
  width: clamp(42px, 3.5vw, 50px);
}

.brand-header .brand-wordmark {
  width: clamp(176px, 14.5vw, 202px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 31px);
  margin-left: auto;
}

.site-nav > a {
  position: relative;
  padding: 11px 0;
  color: #554a43;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  white-space: nowrap;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-nav > a:hover,
.site-nav > a.active {
  color: var(--brown);
}

.site-nav > a:hover::after,
.site-nav > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 50px;
  padding-inline: 22px;
}

.menu-toggle,
.nav-mobile-actions {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: max(790px, 100svh);
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(19, 11, 7, 0.91) 0%, rgba(22, 13, 8, 0.77) 38%, rgba(22, 13, 8, 0.25) 74%, rgba(22, 13, 8, 0.13) 100%),
    linear-gradient(0deg, rgba(17, 10, 7, 0.77) 0%, transparent 44%),
    linear-gradient(180deg, rgba(17, 10, 7, 0.2), transparent 36%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: max(790px, 100svh);
  grid-template-columns: minmax(0, 1fr) minmax(270px, 335px);
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
  padding-top: 142px;
  padding-bottom: 190px;
}

.hero-copy {
  max-width: 820px;
}

.hero-copy .kicker {
  margin-bottom: 28px;
  color: rgba(255, 233, 194, 0.84);
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.55rem, 7.4vw, 7.45rem);
  line-height: 0.88;
  text-wrap: balance;
}

.hero h1 em {
  display: block;
  margin-top: 12px;
  color: var(--gold-bright);
  font-size: 0.7em;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.hero-lead {
  max-width: 610px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.95rem, 1.2vw, 1.06rem);
  line-height: 1.75;
}

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

.hero-brief {
  align-self: end;
  margin-bottom: 8px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 20px;
  background: rgba(19, 12, 8, 0.62);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero-brief-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: var(--gold-pale);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 5px rgba(221, 166, 79, 0.12);
}

.hero-types {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-types a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-family: var(--display);
  font-size: 1.14rem;
  line-height: 1.2;
  transition:
    color 180ms ease,
    padding 180ms ease;
}

.hero-types a i {
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-style: normal;
}

.hero-types a:hover {
  padding-left: 7px;
  color: var(--gold-pale);
}

.hero-brief > p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.67rem;
}

.hero-rail {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  z-index: 3;
  display: grid;
  min-height: 112px;
  grid-template-columns: repeat(3, 1fr) 1.15fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  color: var(--ink);
  background: rgba(251, 248, 241, 0.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-rail > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-content: center;
  padding: 22px clamp(18px, 2.2vw, 32px);
  border-right: 1px solid var(--line);
}

.hero-rail > div > span {
  grid-row: 1 / 3;
  color: var(--gold);
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.hero-rail strong {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
}

.hero-rail small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.64rem;
}

.hero-rail > p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0;
  padding: 20px;
  color: var(--white);
  background: var(--brown);
  font-family: var(--display);
  font-size: 1.22rem;
  line-height: 1.3;
  text-align: center;
}

.hero-rail > p em {
  color: var(--gold-pale);
}

/* Promise */
.promise {
  background:
    radial-gradient(circle at 90% 8%, rgba(199, 140, 54, 0.09), transparent 25%),
    var(--ivory);
}

.promise-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  align-items: end;
  gap: clamp(70px, 12vw, 180px);
}

.promise-heading h2 {
  max-width: 760px;
}

.promise-content {
  padding-bottom: 8px;
}

.promise-content > p {
  color: var(--muted);
  line-height: 1.82;
}

.promise-content .promise-lead {
  margin-bottom: 21px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.35;
}

.promise-content .text-link {
  margin-top: 18px;
}

.promise-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(75px, 9vw, 118px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promise-points article {
  display: grid;
  min-height: 190px;
  grid-template-columns: 38px 1fr;
  gap: 17px;
  padding: 37px clamp(22px, 3vw, 40px);
  border-right: 1px solid var(--line);
}

.promise-points article:first-child {
  padding-left: 0;
}

.promise-points article:last-child {
  padding-right: 0;
  border-right: 0;
}

.point-number {
  padding-top: 5px;
  color: var(--gold);
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.promise-points h3 {
  margin-bottom: 10px;
  font-size: 1.48rem;
}

.promise-points p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

/* Shared section introduction */
.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  align-items: end;
  gap: 70px;
  margin-bottom: clamp(55px, 7vw, 86px);
}

.section-intro > p {
  max-width: 470px;
  margin: 0 0 8px auto;
  color: var(--muted);
  line-height: 1.8;
}

.section-intro-light > p {
  color: rgba(255, 255, 255, 0.58);
}

/* Experiences */
.experiences {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 25%, rgba(199, 140, 54, 0.1), transparent 23%),
    var(--dark);
}

.experiences::before {
  position: absolute;
  top: 0;
  right: 7%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.045);
  content: "";
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 20px;
}

.experience-card {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #2a211b;
  isolation: isolate;
}

.experience-card > img,
.experience-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.experience-card > img {
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.experience-corporate > img {
  object-position: center;
}

.experience-wedding > img {
  object-position: 52% center;
}

.experience-card:hover > img {
  transform: scale(1.035);
}

.experience-shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11, 8, 6, 0.42) 0%, transparent 35%),
    linear-gradient(0deg, rgba(15, 9, 6, 0.95) 0%, rgba(15, 9, 6, 0.14) 67%);
}

.experience-topline {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 25px 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.experience-topline span:first-child {
  color: var(--gold-pale);
}

.experience-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  max-width: 680px;
  padding: clamp(30px, 4vw, 52px);
}

.experience-copy h3 {
  margin-bottom: 17px;
  font-size: clamp(2.25rem, 3.7vw, 3.45rem);
  line-height: 1.02;
}

.experience-copy p {
  max-width: 570px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.84rem;
  line-height: 1.7;
}

.experience-copy a,
.occasion-card a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: var(--gold-pale);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.experience-copy a span,
.occasion-card a span {
  transition: transform 180ms ease;
}

.experience-copy a:hover span,
.occasion-card a:hover span {
  transform: translate(3px, -3px);
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.occasion-card {
  position: relative;
  min-height: 315px;
  padding: 29px 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    transform 240ms ease;
}

.occasion-card:hover {
  border-color: rgba(221, 166, 79, 0.4);
  background: rgba(199, 140, 54, 0.09);
  transform: translateY(-4px);
}

.occasion-index {
  position: absolute;
  top: 29px;
  right: 30px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.occasion-icon {
  display: grid;
  width: 51px;
  height: 51px;
  margin-bottom: 47px;
  border: 1px solid rgba(221, 166, 79, 0.37);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 1.2rem;
  place-items: center;
}

.occasion-card h3 {
  margin-bottom: 10px;
  font-size: 1.65rem;
}

.occasion-card p {
  max-width: 340px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  line-height: 1.65;
}

.event-range-note {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(420px, 1fr);
  align-items: end;
  gap: clamp(45px, 9vw, 130px);
  margin-top: clamp(75px, 9vw, 120px);
  margin-bottom: 34px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.event-range-note .kicker {
  margin: 0;
}

.event-range-note h3 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.05;
}

.event-range-note > div > p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  line-height: 1.75;
}

/* Capabilities */
.capabilities {
  background:
    linear-gradient(90deg, rgba(199, 140, 54, 0.035) 1px, transparent 1px),
    var(--ivory);
  background-size: 25% 100%;
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(430px, 1fr);
  align-items: start;
  gap: clamp(70px, 12vw, 170px);
}

.capability-sticky {
  position: sticky;
  top: calc(var(--header-height) + 45px);
}

.capability-sticky h2 {
  max-width: 610px;
}

.capability-sticky > p:not(.kicker) {
  max-width: 500px;
  margin: 30px 0 34px;
  color: var(--muted);
  line-height: 1.8;
}

.capability-list {
  border-top: 1px solid var(--line);
}

.capability-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 31px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding 220ms ease;
}

.capability-list article:hover {
  padding-left: 12px;
}

.capability-list article > span {
  padding-top: 7px;
  color: var(--gold);
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.capability-list h3 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
}

.capability-list p {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

/* Approach */
.approach {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 15%, rgba(221, 166, 79, 0.12), transparent 27%),
    var(--brown);
}

.approach-orbit {
  position: absolute;
  border: 1px solid rgba(242, 214, 162, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.approach-orbit-one {
  top: -300px;
  right: -190px;
  width: 740px;
  height: 740px;
}

.approach-orbit-two {
  top: -170px;
  right: -60px;
  width: 480px;
  height: 480px;
}

.approach-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.42fr);
  align-items: end;
  gap: 70px;
}

.approach-head > p:last-child {
  max-width: 420px;
  margin: 0 0 7px auto;
  color: rgba(255, 255, 255, 0.59);
  line-height: 1.8;
}

.approach-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(75px, 9vw, 120px);
  padding: 0;
  list-style: none;
}

.approach-steps li {
  min-height: 315px;
  padding: 29px clamp(21px, 2.8vw, 36px);
  border-top: 1px solid rgba(255, 255, 255, 0.21);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.approach-steps li:first-child {
  padding-left: 0;
}

.approach-steps li:last-child {
  padding-right: 0;
  border-right: 0;
}

.approach-steps li > span {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 78px;
  border: 1px solid rgba(221, 166, 79, 0.46);
  border-radius: 50%;
  color: var(--gold-pale);
  font-size: 0.62rem;
  font-weight: 750;
  place-items: center;
}

.approach-steps h3 {
  margin-bottom: 12px;
  font-size: 1.65rem;
}

.approach-steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.79rem;
  line-height: 1.72;
}

/* About */
.about {
  overflow: hidden;
  background: var(--sand);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(70px, 12vw, 170px);
}

.about-art {
  position: relative;
  display: flex;
  min-height: 610px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 43%, rgba(221, 166, 79, 0.18), transparent 28%),
    var(--brown);
}

.about-art::before {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(242, 214, 162, 0.2);
  border-radius: 22px;
  content: "";
}

.about-art img {
  position: relative;
  z-index: 2;
  width: clamp(190px, 24vw, 270px);
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.3));
}

.about-ring {
  position: absolute;
  border: 1px solid rgba(242, 214, 162, 0.13);
  border-radius: 50%;
}

.about-ring-one {
  width: 390px;
  height: 390px;
}

.about-ring-two {
  width: 530px;
  height: 530px;
}

.about-art > p {
  position: absolute;
  right: 45px;
  bottom: 39px;
  left: 45px;
  z-index: 2;
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.3;
  text-align: center;
}

.about-art > p em {
  color: var(--gold-pale);
}

.about-copy h2 {
  max-width: 700px;
  margin-bottom: 34px;
}

.about-copy > p:not(.kicker) {
  max-width: 610px;
  margin-bottom: 19px;
  color: var(--muted);
  line-height: 1.82;
}

.about-copy .about-lead {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  line-height: 1.45;
}

.about-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 35px;
}

.about-signature span {
  padding: 8px 13px;
  border: 1px solid rgba(50, 22, 15, 0.17);
  border-radius: 100px;
  color: var(--brown);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(199, 140, 54, 0.09), transparent 40%),
    var(--dark);
}

.contact::before {
  position: absolute;
  right: -15%;
  bottom: -65%;
  width: 850px;
  height: 850px;
  border: 1px solid rgba(199, 140, 54, 0.09);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1fr);
  align-items: start;
  gap: clamp(70px, 11vw, 150px);
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 45px);
}

.contact-copy h2 {
  margin-bottom: 30px;
}

.contact-copy > p:not(.kicker) {
  max-width: 490px;
  margin-bottom: 44px;
  color: rgba(255, 255, 255, 0.61);
  line-height: 1.8;
}

.direct-contact {
  border-top: 1px solid var(--line-light);
}

.direct-contact > a {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 21px 2px;
  border-bottom: 1px solid var(--line-light);
  transition: padding 180ms ease;
}

.direct-contact > a:hover {
  padding-left: 8px;
}

.direct-contact small {
  grid-column: 1;
  margin-bottom: 4px;
  color: var(--gold-pale);
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.direct-contact strong {
  grid-column: 1;
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 400;
  line-height: 1.45;
}

.direct-contact > a > span {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--gold-bright);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
}

.social-row a {
  transition: color 180ms ease;
}

.social-row a:hover,
.social-row strong {
  color: var(--gold-pale);
}

.event-form {
  scroll-margin-top: calc(var(--header-height) + 28px);
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  color: var(--ink);
  background: var(--ivory);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
}

.form-head span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-head h3 {
  margin: 0;
  font-size: 1.75rem;
}

.form-head small {
  padding-top: 7px;
  color: var(--muted);
  font-size: 0.67rem;
  white-space: nowrap;
}

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

.field {
  display: flex;
  flex-direction: column;
}

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

.field label {
  margin-bottom: 8px;
  color: #564b44;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field label span {
  color: var(--gold);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(41, 27, 19, 0.18);
  border-radius: 10px;
  outline: 0;
  color: var(--ink);
  background: var(--white);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.field input,
.field select {
  height: 54px;
  padding: 0 15px;
}

.field textarea {
  min-height: 122px;
  padding: 14px 15px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #aaa099;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: #fffdf9;
  box-shadow: 0 0 0 4px rgba(199, 140, 54, 0.11);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #b24536;
  box-shadow: 0 0 0 3px rgba(178, 69, 54, 0.08);
}

.field-error {
  min-height: 15px;
  padding-top: 4px;
  color: #a43227;
  font-size: 0.65rem;
  line-height: 1.25;
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  padding-right: 42px;
  appearance: none;
}

.select-wrap svg {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--brown);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  pointer-events: none;
  transform: translateY(-50%);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-submit > span {
  margin-left: auto;
}

.form-note {
  max-width: 430px;
  margin: 13px auto 0;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.45;
  text-align: center;
}

.event-form.is-highlighted {
  animation: form-highlight 900ms ease;
}

@keyframes form-highlight {
  0%,
  100% {
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
  }
  45% {
    box-shadow:
      0 40px 100px rgba(0, 0, 0, 0.3),
      0 0 0 6px rgba(221, 166, 79, 0.25);
  }
}

/* Footer */
.site-footer {
  padding: 78px 0 27px;
  color: rgba(255, 255, 255, 0.66);
  background: #0f0c0a;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.63fr 0.8fr 0.85fr;
  gap: clamp(38px, 7vw, 90px);
  padding-bottom: 65px;
}

.brand-footer {
  width: min(270px, 70vw);
  align-items: center;
  flex-direction: column;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ivory);
}

.brand-footer .brand-icon {
  width: 76px;
}

.brand-footer .brand-wordmark {
  width: min(238px, 62vw);
}

.footer-brand > p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1.45;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  font-size: 0.76rem;
}

.footer-column > span {
  margin-bottom: 13px;
  color: var(--gold-pale);
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a {
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--gold-pale);
}

.footer-get-in-touch a:first-of-type {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.15rem;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

.footer-bottom > span:nth-child(2) {
  text-align: center;
}

.footer-bottom a {
  justify-self: end;
  color: rgba(255, 255, 255, 0.6);
  transition: color 180ms ease;
}

.footer-bottom a:hover {
  color: var(--gold-pale);
}

/* Persistent contact */
.floating-whatsapp {
  position: fixed;
  right: 23px;
  bottom: 23px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 15px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: var(--white);
  background: #147a45;
  box-shadow: 0 16px 40px rgba(7, 47, 26, 0.3);
  font-size: 0.71rem;
  font-weight: 750;
  line-height: 1.25;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.floating-whatsapp:hover {
  background: #0f693b;
  transform: translateY(-3px);
}

.floating-whatsapp > span:last-child {
  display: flex;
  flex-direction: column;
}

.floating-whatsapp small {
  margin-bottom: 1px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.55rem;
  font-weight: 500;
}

.floating-whatsapp-icon {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  place-items: center;
}

.floating-whatsapp-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.mobile-action-bar {
  display: none;
}

/* Motion */
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.7, 0.25, 1);
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Tablet navigation */
@media (max-width: 1120px) {
  .header-cta {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(4.3rem, 8vw, 6.35rem);
  }

  .experience-card {
    min-height: 590px;
  }

  .occasion-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: minmax(0, 0.7fr) minmax(475px, 1fr);
    gap: 70px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 86px;
  }

  .site-header {
    padding-top: 10px;
  }

  .header-shell {
    min-height: 66px;
    padding-right: 13px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 11px;
    border: 0;
    border-radius: 50%;
    background: var(--sand);
    place-content: center;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    margin: 3px 0;
    background: var(--brown);
    transition:
      transform 200ms ease,
      opacity 200ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 86px;
    right: 20px;
    left: 20px;
    z-index: 2;
    display: flex;
    max-height: calc(100svh - 104px);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 20px;
    overflow-y: auto;
    visibility: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(251, 248, 241, 0.99);
    box-shadow: 0 24px 70px rgba(22, 13, 8, 0.22);
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top;
    transition:
      visibility 200ms,
      opacity 200ms ease,
      transform 200ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .site-nav > a {
    padding: 15px 5px;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: clamp(1.45rem, 4vw, 2rem);
    font-weight: 400;
    letter-spacing: -0.025em;
    text-transform: none;
  }

  .site-nav > a::after {
    display: none;
  }

  .nav-mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 17px;
  }

  .nav-mobile-actions a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 100px;
    color: var(--brown);
    background: var(--sand);
    font-size: 0.66rem;
    font-weight: 750;
    text-align: center;
    text-transform: uppercase;
  }

  .nav-mobile-actions a:last-child {
    color: var(--white);
    background: var(--green);
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(245px, 285px);
    gap: 35px;
  }

  .hero-rail {
    min-height: 104px;
  }

  .hero-rail > div {
    grid-template-columns: 24px 1fr;
    padding-inline: 16px;
  }

  .hero-rail small {
    display: none;
  }

  .promise-grid,
  .section-intro,
  .approach-head {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .promise-content,
  .section-intro > p,
  .approach-head > p:last-child {
    max-width: 650px;
    margin-left: 0;
  }

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

  .experience-card {
    min-height: 620px;
  }

  .occasion-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-range-note {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .capability-layout {
    grid-template-columns: 1fr;
    gap: 75px;
  }

  .capability-sticky,
  .contact-copy {
    position: static;
  }

  .capability-sticky > p:not(.kicker) {
    max-width: 640px;
  }

  .approach-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-steps li {
    min-height: 280px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .approach-steps li:nth-child(2) {
    padding-right: 0;
    border-right: 0;
  }

  .approach-steps li:nth-child(3) {
    padding-left: 0;
  }

  .approach-steps li > span {
    margin-bottom: 55px;
  }

  .about-grid {
    grid-template-columns: minmax(330px, 0.75fr) minmax(0, 1fr);
    gap: 60px;
  }

  .about-art {
    min-height: 530px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    row-gap: clamp(64px, 8vw, 84px);
  }

  .contact-copy {
    max-width: 680px;
  }

  .event-form {
    max-width: 720px;
    margin-top: 12px;
  }

  .footer-main {
    grid-template-columns: 1.25fr repeat(3, 0.75fr);
    gap: 32px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 82px;
  }

  body {
    padding-bottom: 68px;
  }

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

  .section {
    padding-block: 94px;
  }

  h2 {
    font-size: clamp(2.8rem, 12vw, 4.15rem);
  }

  .header-shell {
    width: calc(100% - 24px);
    min-height: 62px;
    padding: 7px 9px 7px 15px;
    border-radius: 15px;
  }

  .site-header.is-scrolled .header-shell {
    min-height: 62px;
  }

  .brand-header {
    gap: clamp(6px, 2.2vw, 9px);
  }

  .brand-header .brand-icon {
    width: clamp(35px, 10vw, 42px);
  }

  .brand-header .brand-wordmark {
    width: clamp(145px, 42vw, 184px);
  }

  .site-nav {
    top: 80px;
    right: 12px;
    left: 12px;
    max-height: calc(100svh - 94px);
    border-radius: 19px;
  }

  .hero {
    min-height: 0;
    padding-bottom: 18px;
  }

  .hero-image {
    object-position: 59% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(19, 11, 7, 0.91), rgba(19, 11, 7, 0.51)),
      linear-gradient(0deg, rgba(17, 10, 7, 0.9), transparent 55%),
      linear-gradient(180deg, rgba(17, 10, 7, 0.22), transparent 35%);
  }

  .hero-layout {
    display: block;
    min-height: 0;
    padding-top: 128px;
    padding-bottom: 42px;
  }

  .hero-copy .kicker {
    max-width: 310px;
    margin-bottom: 24px;
    font-size: 0.59rem;
    line-height: 1.55;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 16.2vw, 5.15rem);
    line-height: 0.9;
  }

  .hero h1 em {
    margin-top: 10px;
    font-size: 0.69em;
  }

  .hero-lead {
    max-width: 510px;
    margin-top: 27px;
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 30px;
  }

  .hero-actions .button {
    width: min(100%, 340px);
  }

  .hero-brief {
    max-width: 420px;
    margin: 45px 0 0;
    padding: 21px;
  }

  .hero-rail {
    position: relative;
    bottom: auto;
    grid-template-columns: repeat(3, 1fr);
    min-height: 0;
    margin-top: 0;
  }

  .hero-rail > div {
    display: flex;
    min-height: 86px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 16px 14px;
  }

  .hero-rail > div > span {
    margin-bottom: 4px;
    padding: 0;
  }

  .hero-rail strong {
    font-size: 1.1rem;
  }

  .hero-rail > p {
    grid-column: 1 / -1;
    min-height: 70px;
    flex-direction: row;
    gap: 5px;
    font-size: 1.06rem;
  }

  .promise-grid {
    gap: 42px;
  }

  .promise-points {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .promise-points article,
  .promise-points article:first-child,
  .promise-points article:last-child {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .promise-points article:last-child {
    border-bottom: 0;
  }

  .section-intro {
    margin-bottom: 48px;
  }

  .experience-card {
    min-height: 540px;
    border-radius: 20px;
  }

  .experience-topline {
    padding: 21px 20px;
  }

  .experience-topline span:last-child {
    display: none;
  }

  .experience-copy {
    padding: 28px 23px;
  }

  .experience-copy h3 {
    font-size: clamp(2.15rem, 9vw, 3rem);
  }

  .experience-copy p {
    font-size: 0.78rem;
  }

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

  .occasion-card,
  .occasion-card:last-child {
    grid-column: auto;
    min-height: 280px;
    padding: 25px;
  }

  .occasion-icon {
    margin-bottom: 38px;
  }

  .capability-layout {
    gap: 65px;
  }

  .capability-list article {
    grid-template-columns: 42px 1fr;
    padding-block: 27px;
  }

  .capability-list article:hover {
    padding-left: 0;
  }

  .approach-steps {
    grid-template-columns: 1fr;
    margin-top: 65px;
  }

  .approach-steps li,
  .approach-steps li:first-child,
  .approach-steps li:nth-child(2),
  .approach-steps li:nth-child(3),
  .approach-steps li:last-child {
    display: grid;
    grid-template-columns: 50px 1fr;
    min-height: 0;
    gap: 18px;
    padding: 27px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .approach-steps li > span {
    grid-row: 1;
    width: 42px;
    height: 42px;
    margin: 0;
  }

  .approach-steps li > div {
    grid-column: 2;
  }

  .approach-steps h3 {
    font-size: 1.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .about-art {
    min-height: min(118vw, 520px);
  }

  .about-art > p {
    right: 28px;
    bottom: 29px;
    left: 28px;
  }

  .about-copy h2 {
    margin-bottom: 29px;
  }

  .contact-layout {
    gap: 56px;
  }

  .event-form {
    padding: 28px 20px;
    border-radius: 21px;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .field-full {
    grid-column: auto;
  }

  .site-footer {
    padding-top: 65px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-get-in-touch {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-bottom > span:nth-child(2) {
    text-align: left;
  }

  .footer-bottom a {
    justify-self: start;
    margin-top: 7px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 250;
    display: grid;
    grid-template-columns: 0.42fr 1fr;
    min-height: 68px;
    padding: 8px max(9px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom))
      max(9px, env(safe-area-inset-left));
    background: rgba(15, 12, 10, 0.98);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
  }

  .mobile-action-bar a {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 100px;
    font-size: 0.69rem;
    font-weight: 750;
    letter-spacing: 0.055em;
    text-transform: uppercase;
  }

  .mobile-action-bar svg {
    width: 19px;
    height: 19px;
  }

  .mobile-call {
    color: var(--gold-pale);
  }

  .mobile-call svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
  }

  .mobile-whatsapp {
    color: var(--white);
    background: var(--green);
  }

  .mobile-whatsapp svg {
    fill: currentColor;
  }
}

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

  .kicker {
    font-size: 0.62rem;
  }

  .nav-mobile-actions {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 16vw, 4.45rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-rail {
    grid-template-columns: 1fr;
  }

  .hero-rail > div {
    display: grid;
    min-height: 65px;
    grid-template-columns: 28px 1fr;
    align-content: center;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-rail > div > span {
    grid-row: 1;
    margin: 0;
  }

  .hero-rail > p {
    grid-column: auto;
  }

  .experience-card {
    min-height: 515px;
  }

  .about-art {
    min-height: 430px;
  }

  .about-ring-one {
    width: 310px;
    height: 310px;
  }

  .about-ring-two {
    width: 410px;
    height: 410px;
  }

  .direct-contact strong {
    font-size: 1.12rem;
  }

  .form-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .form-head small {
    padding-top: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-get-in-touch {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header {
    position: static;
  }

  .reveal-ready .reveal,
  .reveal-ready .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }

  .floating-whatsapp,
  .mobile-action-bar,
  .skip-link {
    display: none !important;
  }
}
