:root {
  --bg: #f4eee8;
  --paper: rgba(255, 250, 246, 0.84);
  --paper-strong: rgba(255, 250, 246, 0.96);
  --ink: #221916;
  --muted: #6f615c;
  --accent: #b36f55;
  --accent-soft: #e8c4b1;
  --line: rgba(34, 25, 22, 0.12);
  --shadow: 0 28px 70px rgba(72, 38, 25, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(232, 196, 177, 0.65), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(179, 111, 85, 0.18), transparent 20%),
    linear-gradient(180deg, #fbf5f0 0%, #f4eee8 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  filter: blur(12px);
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -6rem;
  right: -10rem;
}

body::after {
  bottom: -10rem;
  left: -8rem;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.2rem, 4vw, 3.5rem);
  background: rgba(244, 238, 232, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.45rem;
  line-height: 1;
}

.brand-mark,
.brand-submark {
  font-family: "Cormorant Garamond", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand-mark {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.brand-submark {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav > a[data-nav-link],
.services-nav-item > a[data-nav-link] {
  position: relative;
}

.services-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.services-nav-item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1rem;
}

.auth-nav {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.auth-nav::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  height: 1rem;
}

.auth-nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
  transition:
    border-color 0.35s ease,
    background-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.auth-nav-trigger:hover,
.auth-nav-trigger:focus-visible,
.auth-nav.is-open .auth-nav-trigger {
  border-color: rgba(34, 25, 22, 0.18);
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(72, 38, 25, 0.1);
}

.auth-nav-trigger-text {
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}

.auth-nav-icon {
  position: relative;
  width: 1rem;
  height: 1rem;
  color: currentColor;
}

.auth-nav-icon::before,
.auth-nav-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.auth-nav-icon::before {
  top: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: currentColor;
}

.auth-nav-icon::after {
  bottom: 0;
  width: 0.88rem;
  height: 0.52rem;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 0.58rem 0.58rem 0.28rem 0.28rem;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.3rem;
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.lang-button {
  min-width: 2.5rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease,
    transform 0.35s ease;
}

.lang-button:hover,
.lang-button:focus-visible {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.56);
  transform: translateY(-1px);
}

.lang-button.is-active {
  color: var(--ink);
  border-color: rgba(34, 25, 22, 0.12);
  background: rgba(255, 255, 255, 0.78);
}

.site-nav > a[data-nav-link]::after,
.services-nav-item > a[data-nav-link]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.site-nav > a[data-nav-link]:hover::after,
.site-nav > a[data-nav-link]:focus-visible::after,
.services-nav-item > a[data-nav-link]:hover::after,
.services-nav-item > a[data-nav-link]:focus-visible::after,
.services-nav-item.is-open > a[data-nav-link]::after {
  transform: scaleX(1);
}

.services-nav-popover {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 50%;
  width: min(39rem, calc(100vw - 3rem));
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 1.45rem;
  background:
    linear-gradient(180deg, rgba(255, 252, 249, 0.98) 0%, rgba(250, 244, 239, 0.94) 100%);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, -0.55rem);
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.services-nav-item.is-open .services-nav-popover {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

@media (hover: hover) and (pointer: fine) {
  .services-nav-item:hover .services-nav-popover,
  .services-nav-item:focus-within .services-nav-popover {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
  }
}

.services-nav-shell {
  display: grid;
  gap: 1rem;
}

.services-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.services-nav-heading {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.services-nav-all {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(34, 25, 22, 0.22);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.services-nav-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.15rem;
}

.services-nav-group {
  display: grid;
  gap: 0.7rem;
}

.services-nav-group-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.services-nav-group-links {
  display: grid;
  gap: 0.55rem;
}

.services-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(34, 25, 22, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.42);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.services-nav-link:hover,
.services-nav-link:focus-visible {
  border-color: rgba(34, 25, 22, 0.16);
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(72, 38, 25, 0.08);
}

.services-nav-name {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}

.services-nav-price {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.services-nav-state {
  margin: 0;
  padding: 0.85rem 0.95rem;
  border: 1px dashed rgba(34, 25, 22, 0.14);
  border-radius: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.services-nav-state-error {
  color: #9d5442;
}

.auth-nav-popover {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  width: min(23.5rem, calc(100vw - 2.4rem));
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 1.45rem;
  background:
    linear-gradient(180deg, rgba(255, 252, 249, 0.98) 0%, rgba(250, 244, 239, 0.94) 100%);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-0.55rem);
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

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

@media (hover: hover) and (pointer: fine) {
  .auth-nav:hover .auth-nav-popover,
  .auth-nav:focus-within .auth-nav-popover {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.auth-nav-panel {
  display: grid;
  gap: 0.85rem;
}

.auth-nav-panel[hidden] {
  display: none !important;
}

.auth-nav-panel-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.auth-nav-panel-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.auth-nav-panel-text,
.auth-nav-panel-note,
.auth-nav-session-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.auth-nav-session-list {
  display: grid;
  gap: 0.45rem;
}

.auth-nav-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.auth-nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.25rem;
  padding: 0.9rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  transition:
    border-color 0.35s ease,
    background-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

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

.auth-nav-action-solid {
  background: var(--ink);
  color: #fffaf6;
  border-color: var(--ink);
}

.auth-nav-action-solid:hover,
.auth-nav-action-solid:focus-visible {
  background: #382723;
  border-color: #382723;
}

.auth-nav-action-ghost {
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.auth-nav-action-ghost:hover,
.auth-nav-action-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(34, 25, 22, 0.18);
}

.menu-toggle {
  display: none;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
}

.hero,
.services,
.portfolio,
.philosophy,
.process,
.contact,
.site-footer {
  padding-inline: clamp(1.2rem, 4vw, 3.5rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(19rem, 0.92fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  min-height: calc(100svh - 78px);
  padding-top: clamp(2rem, 3vw, 3rem);
  padding-bottom: 4.5rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
}

.hero h1,
.section-heading h2,
.philosophy h2,
.contact h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 8vw, 6.6rem);
  line-height: 0.93;
}

.hero-text,
.section-heading p,
.philosophy p,
.contact p,
.service-item p,
.service-details,
.process-step p,
.principle p,
.form-note {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 34rem;
  margin: 1.25rem 0 0;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11rem;
  padding: 1rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.35s ease,
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

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

.button-solid {
  color: #fff8f3;
  background: linear-gradient(135deg, #2a1d19 0%, #654032 100%);
  box-shadow: 0 16px 35px rgba(44, 26, 20, 0.18);
}

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

.hero-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.25rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.hero-notes li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
}

.hero-notes li::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
}

.hero-visual {
  --float-x: 0px;
  --float-y: 0px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 34rem;
  transform: translate3d(var(--float-x), var(--float-y), 0);
  transition: transform 0.6s ease-out;
}

.hero-portrait {
  position: relative;
  width: min(100%, 31rem);
  aspect-ratio: 0.82;
  border-radius: 18rem 18rem 2rem 2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 36% 24%, rgba(255, 245, 240, 0.95), transparent 28%),
    linear-gradient(180deg, #f3ded1 0%, #d7a085 35%, #7a4939 100%);
  box-shadow: var(--shadow);
  animation: drift 7s ease-in-out infinite;
}

.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 14% 12% 16% 18%;
  border-radius: 14rem 14rem 2rem 2rem;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 247, 242, 0.82), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(33, 25, 22, 0.16));
  mix-blend-mode: screen;
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: auto -8% 4% 14%;
  height: 46%;
  border-radius: 90% 0 0 0;
  background: linear-gradient(135deg, rgba(34, 25, 22, 0.02), rgba(34, 25, 22, 0.44));
}

.portrait-rim {
  position: absolute;
  inset: 5% 6%;
  border: 1px solid rgba(255, 248, 243, 0.5);
  border-radius: inherit;
}

.portrait-copy {
  position: absolute;
  inset: auto 1.5rem 1.5rem 1.5rem;
  padding: 1.25rem 1.4rem;
  color: #fff7f2;
  background: linear-gradient(180deg, rgba(30, 20, 17, 0), rgba(30, 20, 17, 0.48));
  border-radius: 1.4rem;
  backdrop-filter: blur(8px);
}

.portrait-copy p {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 247, 242, 0.74);
}

.portrait-copy strong {
  display: block;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  line-height: 1.1;
}

.floating-caption {
  position: absolute;
  max-width: 15rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1.2rem;
  background: rgba(255, 252, 250, 0.72);
  backdrop-filter: blur(14px);
  color: var(--ink);
  box-shadow: 0 18px 35px rgba(56, 35, 27, 0.1);
  font-size: 0.92rem;
  line-height: 1.5;
}

.floating-caption-top {
  top: 8%;
  left: 0;
}

.floating-caption-bottom {
  right: 0;
  bottom: 8%;
}

.intro-band {
  padding-top: 0.4rem;
  padding-bottom: 4.2rem;
}

.intro-band p {
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  line-height: 1.08;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 22rem);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading h2,
.philosophy h2,
.contact h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
}

.services {
  padding-top: 0.2rem;
  padding-bottom: 4.5rem;
}

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

.service-item {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.9fr) auto;
  gap: 1.5rem;
  align-items: start;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.service-title {
  margin: 0 0 0.65rem;
  font-size: 1.4rem;
}

.service-details {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.96rem;
}

.service-details li::before {
  content: "— ";
  color: var(--accent);
}

.service-cta {
  align-self: center;
  justify-self: end;
  white-space: nowrap;
  font-weight: 700;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
}

.portfolio {
  padding-top: 0.2rem;
  padding-bottom: 4.8rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.82fr 0.98fr;
  gap: 1rem;
  grid-auto-rows: 10rem;
}

.portfolio-shot {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  margin: 0;
  min-height: 100%;
  padding: 1.25rem;
  border-radius: 1.8rem;
  color: #fff6f1;
  box-shadow: var(--shadow);
}

.portfolio-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 17, 14, 0.04), rgba(27, 17, 14, 0.82));
}

.portfolio-shot figcaption {
  position: relative;
  z-index: 1;
}

.portfolio-shot h3 {
  margin: 0.4rem 0 0;
  max-width: 18rem;
  font-size: 1.15rem;
  line-height: 1.28;
}

.shot-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 246, 241, 0.75);
}

.shot-large {
  grid-row: span 3;
  background:
    radial-gradient(circle at 32% 20%, rgba(255, 244, 237, 0.54), transparent 24%),
    linear-gradient(155deg, #d9b7a4 0%, #8d5748 72%, #5d362d 100%);
}

.shot-tall {
  grid-row: span 2;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 242, 234, 0.5), transparent 22%),
    linear-gradient(180deg, #f0ddd3 0%, #c49581 38%, #845145 100%);
}

.shot-soft {
  background:
    linear-gradient(135deg, rgba(255, 250, 247, 0.25), transparent 36%),
    linear-gradient(135deg, #e7d6cf 0%, #aa8175 100%);
}

.shot-warm {
  grid-row: span 2;
  background:
    radial-gradient(circle at 42% 18%, rgba(255, 243, 237, 0.48), transparent 24%),
    linear-gradient(180deg, #f3cfbc 0%, #be795d 50%, #8a4b39 100%);
}

.shot-tint {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(140deg, #c8a7a6 0%, #8d6564 100%);
}

.philosophy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.9fr);
  gap: 2rem;
  align-items: start;
  padding-top: 0.3rem;
  padding-bottom: 4.8rem;
}

.philosophy-copy p:last-child {
  max-width: 34rem;
  margin-top: 1.35rem;
}

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

.principle {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.principle h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.process {
  padding-top: 0.3rem;
  padding-bottom: 4.8rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.step-index {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
}

.process-step h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
}

.process-step p {
  margin: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.9fr);
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: #fff6f0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #241714 0%, #59362c 42%, #9a644f 100%);
}

.contact .eyebrow,
.contact p {
  color: rgba(255, 246, 240, 0.78);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  margin-top: 2rem;
}

.contact-links a {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(255, 246, 240, 0.4);
}

.contact-links span {
  padding-bottom: 0.2rem;
  color: rgba(255, 246, 240, 0.72);
  border-bottom: 1px dashed rgba(255, 246, 240, 0.28);
}

.contact-card {
  display: grid;
  gap: 1rem;
  align-self: start;
  padding: 1.6rem;
  border: 1px solid rgba(255, 248, 243, 0.16);
  border-radius: 1.8rem;
  background: rgba(255, 248, 243, 0.08);
  backdrop-filter: blur(10px);
}

.contact-card-label {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 246, 240, 0.64);
}

.contact-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  font-weight: 600;
}

.contact-plan {
  display: grid;
  gap: 0.75rem;
  margin: 0.2rem 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 246, 240, 0.78);
}

.contact-plan li {
  position: relative;
  padding-left: 1.1rem;
}

.contact-plan li::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--accent-soft);
}

.contact-card .button-solid {
  width: fit-content;
  margin-top: 0.5rem;
  background: rgba(255, 248, 243, 0.14);
  border-color: rgba(255, 248, 243, 0.22);
  box-shadow: none;
}

.contact-card .button-solid:hover,
.contact-card .button-solid:focus-visible {
  background: rgba(255, 248, 243, 0.22);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.1rem;
  padding-bottom: 2.3rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-copyright {
  text-align: right;
}

.reveal,
.service-item,
.portfolio-shot,
.principle,
.process-step {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 4.8rem 1rem auto 1rem;
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1.4rem;
    background: var(--paper-strong);
    box-shadow: var(--shadow);
    transform: translateY(-1rem);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.35s ease,
      opacity 0.35s ease;
  }

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

  .services-nav-item {
    display: block;
  }

  .services-nav-item::after,
  .services-nav-popover {
    display: none;
  }

  .auth-nav {
    display: grid;
  }

  .auth-nav::after {
    display: none;
  }

  .auth-nav-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .auth-nav-popover {
    position: static;
    width: 100%;
    margin-top: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: none;
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      max-height 0.3s ease,
      margin-top 0.3s ease;
  }

  .auth-nav.is-open .auth-nav-popover {
    margin-top: 0.85rem;
    opacity: 1;
    max-height: 36rem;
    pointer-events: auto;
  }

  .auth-nav-panel {
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.78);
  }

  .language-switcher {
    margin-left: 0;
    padding-left: 0;
    padding-top: 0.85rem;
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .hero,
  .philosophy,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-visual {
    order: -1;
    min-height: 28rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-cta {
    justify-self: start;
  }

  .portfolio-grid,
  .process-steps,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .shot-large,
  .shot-tall,
  .shot-warm {
    grid-row: span 2;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 680px) {
  .hero-notes,
  .portfolio-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 22rem;
  }

  .floating-caption {
    max-width: 12rem;
    font-size: 0.84rem;
  }

  .floating-caption-top {
    top: 1rem;
    left: 0.25rem;
  }

  .floating-caption-bottom {
    right: 0.25rem;
    bottom: 1rem;
  }

  .contact-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .auth-nav-panel-actions,
  .auth-nav-action {
    width: 100%;
  }
}
