:root {
  --bg: #c8d1dc;
--surface: rgba(243, 236, 221, 0.92);
--surface-strong: #fff7e8;
  --text: #241a14;
  --muted: #6c5c49;
  --line: rgba(109, 80, 34, 0.18);
  --accent: #c79a3b;
  --accent-deep: #7b5b24;
  --shadow: 0 28px 60px rgba(44, 31, 18, 0.16);
  --max-width: 1220px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
 background:
  radial-gradient(circle at top left, rgba(199, 154, 59, 0.08), transparent 22%),
  linear-gradient(rgba(61, 74, 92, 0.045) 1px, transparent 1px),
  linear-gradient(90deg, rgba(61, 74, 92, 0.045) 1px, transparent 1px),
  linear-gradient(
    180deg,
    #d7dde6 0%,
    #c5ced9 48%,
    #b6c2cf 100%
  );
}

body::before {
  content: "";
  position: fixed;
  inset: 18px;
  border: 1px solid rgba(123, 91, 36, 0.12);
  pointer-events: none;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1.1rem 0 2rem;
  position: relative;
  z-index: 1;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
  padding: 1rem 1.25rem;
  background: rgba(24, 28, 37, 0.95);
  border: 1px solid rgba(199, 154, 59, 0.38);
  box-shadow: var(--shadow);
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #efc86f;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;

  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #efc86f;
}

.brand-logo {
  width: 130px;
  height: 130px;

  object-fit: contain;

  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.site-nav a {
  padding: 0.8rem 0.95rem;
  color: #e8c46f;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff1c7;
  border-color: rgba(232, 196, 111, 0.6);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: rgba(232, 196, 111, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.heritage-main {
  display: grid;
  gap: 1.5rem;
}

.home-main {
  gap: 1.7rem;
}

.about-main {
  gap: 1.7rem;
}

.hero-court,
.page-chamber,
.salon-panel,
.gallery-card,
.archive-item {
  position: relative;
  border: 1px solid rgba(198, 156, 68, 0.28);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-court,
.page-chamber {
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.page-chamber {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-court::before,
.page-chamber::before,
.salon-panel::before,
.gallery-card::before,
.archive-item::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(226, 188, 103, 0.18);
  pointer-events: none;
}

.section-frame-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.section-frame-image {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: none;
}

.section-frame-image[src]:not([src=""]) {
  display: block;
}

.hero-court {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 1.25rem;
  align-items: stretch;
}

.home-hero {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}
.home-hero .hero-script {
  max-width: 38rem;
  margin-inline: auto;
}

.hero-script h1,
.page-chamber h1,
.salon-panel h2,
.section-heading h2,
.arch-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.hero-script h1,
.page-chamber h1 {
  max-width: 11ch;
  font-size: clamp(3.3rem, 8vw, 6rem);
}

.page-chamber h1 {
  max-width: 16ch;
}

.eyebrow,
.kicker,
.work-tag {
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.hero-text,
.salon-panel p,
.arch-card p,
.gallery-card p,
.archive-item p,
.contact-meta a,
.form-note {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  margin: 1rem 0 0;
  font-size: 1.04rem;
}

.page-chamber .hero-text {
  max-width: 68ch;
}

.hero-subtitle {
  margin: 0.75rem 0 0;
  max-width: 30ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.1;
  color: var(--text);
}

.intro-note {
  max-width: 48ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease;
}

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

.button-primary {
  color: #231b14;
  background: linear-gradient(135deg, #e0bb62 0%, #b9892e 100%);
}

.button-secondary {
  border-color: rgba(123, 91, 36, 0.24);
  background: rgba(250, 242, 226, 0.62);
}
.about-heading-stack {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 1.75rem;

  margin: 0 auto;
}

.about-heading-text {
  max-width: 52rem;
  width: 100%;
  text-align: center;
}

.about-heading-text h2 {
  max-width: 16ch;
  margin-inline: auto;
  text-align: center;
}


.about-portrait-panel {
  margin: 0;
  flex-shrink: 0;
}

.about-portrait-frame {
  position: relative;

  width: 220px;
  aspect-ratio: 0.82 / 1;
}

.about-portrait-placeholder {
  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;
  border-radius: 999px;
}

.about-portrait-placeholder .slot-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.about-portrait-frame-overlay {
  position: absolute;
  inset: -28px;

  z-index: 5;
  pointer-events: none;
}

.about-portrait-frame-image {
  width: 100%;
  height: 100%;

  object-fit: fill;
}
.portrait-panel {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.portrait-frame {
  position: relative;
  width: 360px;
  aspect-ratio: 0.82 / 1;
}

.portrait-placeholder {
  position: relative;
  width: 100%;
  height: 100%;

  overflow: hidden;
  border-radius: 999px 999px 1rem 1rem;
}

.portrait-placeholder .slot-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  z-index: 1;
}

.portrait-arch-frame-overlay {
  position: absolute;

  inset: -50px;

  z-index: 10;
  pointer-events: none;
}

.portrait-arch-frame-image {
  width: 100%;
  height: 100%;

  object-fit: fill;
}

.slot-label {
  display: none;
}

.image-slot {
  position: relative;
}

.slot-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slot-image[src]:not([src=""]) {
  display: block;
}

.slot-label {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  border: 1px dashed rgba(123, 91, 36, 0.28);
  background: rgba(251, 245, 232, 0.78);
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
}

.slot-image[src]:not([src=""]) + .slot-label {
  display: none;
}

.salon-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.editorial-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
  position: relative;
  padding: 1.6rem;
  border: 1px solid rgba(198, 156, 68, 0.28);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.editorial-grid-band {
  align-items: start;
}

.editorial-band::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(226, 188, 103, 0.18);
  pointer-events: none;
}

.editorial-label {
  padding-top: 0;
  justify-self: center;
  text-align: center;
}

.editorial-label .eyebrow {
  margin-bottom: 0;
}

.editorial-heading h2 {
  margin: 0;
  max-width: 18ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-align: center;
  justify-self: center;
}

.editorial-copy {
  max-width: 58rem;
  padding-top: 0.2rem;
  justify-self: center;
  text-align: center;
}

.editorial-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.editorial-copy p:last-child {
  margin-bottom: 0;
}

.editorial-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 0.2rem;
}

.editorial-card-grid-tight {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.editorial-card {
  position: relative;
  min-height: 210px;
  padding: 1.25rem;
  border: 1px solid rgba(198, 156, 68, 0.32);
  background: rgba(251, 245, 232, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.editorial-card::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border: 1px solid rgba(226, 188, 103, 0.24);
  pointer-events: none;
}

.about-card-frame-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.about-card-frame-image {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: none;
}

.about-card-frame-image[src]:not([src=""]) {
  display: block;
}

.editorial-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 0.55rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.95rem;
  font-weight: 600;
}

.editorial-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.salon-panel {
  padding: 1.5rem;
}

.statement-panel h2,
.salon-panel h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  margin-bottom: 0.75rem;
}

.accent-panel {
  background: linear-gradient(180deg, rgba(29, 37, 56, 0.95), rgba(20, 24, 31, 0.96));
  color: #f2d285;
}

.accent-panel .eyebrow,
.accent-panel .services-list {
  color: inherit;
}

.services-list {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 1.15rem;
}

.featured-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.featured-section {
  position: relative;
  padding: 1.6rem;
  border: 1px solid rgba(198, 156, 68, 0.28);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.featured-section::before,
.cta-court::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(226, 188, 103, 0.18);
  pointer-events: none;
}

.featured-arch-grid,
.projects-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.arch-project-link {
  display: block;
  color: inherit;
  height: 100%;
}

.arch-project-card {
  position: relative;
  min-height: 31.5rem;
  height: 100%;
  padding: 1rem;
  border: 1px solid rgba(198, 156, 68, 0.32);
  background:
  linear-gradient(
    180deg,
    rgba(255, 249, 239, 0.96),
    rgba(244, 232, 207, 0.96)
  );
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.arch-project-link:hover .arch-project-card,
.arch-project-link:focus-visible .arch-project-card {
  transform: translateY(-6px);
 box-shadow:
  0 42px 90px rgba(12, 14, 18, 0.42),
  0 18px 40px rgba(44, 31, 18, 0.28);
  border-color: rgba(226, 188, 103, 0.52);
}



.arch-project-link:hover .arch-project-card h3,
.arch-project-link:focus-visible .arch-project-card h3 {
  color: var(--accent-deep);
}

.arch-project-link:focus-visible {
  outline: none;
}


.project-frame-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.project-frame-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.project-frame-image[src]:not([src=""]) {
  display: block;
}


/*.arch-image-slot {
  position: absolute;
  inset: 2rem 1rem auto 1rem;
  height: 19.5rem; /* keep your current height if this is already right 
  border-radius: 999px 999px 1rem 1rem;
  overflow: visible;
  z-index: 1;
}
*/
.arch-image-slot {
  position: absolute;
  top: 2rem;
  left: 1rem;
  right: 1rem;

  aspect-ratio: 0.82 / 1;
  height: auto;

  border-radius: 999px 999px 1rem 1rem;
  overflow: visible;
  z-index: 1;
}

.arch-image-slot::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border: 1px solid rgba(235, 205, 131, 0.42);
  border-radius: 999px 999px 0.7rem 0.7rem;
  pointer-events: none;
  z-index: 2;
}

.arch-image-slot .slot-image {
  
  position: absolute;
  inset: 0.85rem;
  width: calc(100% - 1.7rem);
  height: calc(100% - 1.7rem);
  object-fit: cover;
  object-position: center center;
   transform: scale(0.84);
  border-radius: 999px 999px 0.75rem 0.75rem;
  display: block;
}


.arch-image-crop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.65rem;
  right: 0.65rem;
  border-radius: 999px 999px 1rem 1rem;
  overflow: hidden;
}

.arch-image-crop .slot-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  
}

.arch-image-slot .slot-label {
  inset: auto 0.75rem 0.75rem 0.75rem;
  z-index: 2;
}

.project-arch-frame-overlay {
  position: absolute;
  inset: -42px;

  z-index: 5;
  pointer-events: none;
    /*top: -2px;
    bottom: -2px;*/
}

.project-arch-frame-image {
  width: 100%;
  height: 100%;

  object-fit: fill;
}

.arch-project-inner {
  position: relative;
  z-index: 2;
  height: 100%;
   padding: clamp(30rem, 82vw, 24rem) 1rem 1rem;
  border: 1px solid rgba(198, 156, 68, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  align-items: center;
}

.arch-project-inner::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;

  border: 1px solid rgba(232, 196, 111, 0.45);

  transform: rotate(45deg);

  background: rgba(24, 28, 37, 0.96);

  box-shadow:
    0 0 10px rgba(24, 28, 37, 0.35);
}

.arch-project-inner::after {
  bottom: 0.7rem;
  left: 50%;
  margin-left: -7px;
}

.arch-project-card h3,
.cta-copy h2 {
  margin: 0 0 0.55rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 600;
}

.arch-project-inner p {
  max-width: 24ch;
}

.cta-court {
  position: relative;
  display: grid;
  gap: 1.2rem;
  justify-items: center;
  padding: 1.6rem;
  border: 1px solid rgba(198, 156, 68, 0.28);
  background:
    linear-gradient(180deg, rgba(248, 239, 223, 0.9), rgba(227, 210, 178, 0.94)),
    var(--surface);
  box-shadow: var(--shadow);
}

.cta-copy {
  text-align: center;
  max-width: 42rem;
}

.cta-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.contact-link {
  display: inline-block;
  margin: 0.85rem 0 1.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.contact-meta {
  display: grid;
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(34, 26, 21, 0.14);
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  margin-top: 1.6rem;
  padding: 1.4rem 1.5rem;

  color: #e8c46f;
  background: rgba(24, 28, 37, 0.95);

  border: 1px solid rgba(199, 154, 59, 0.38);
  box-shadow: var(--shadow);
}

.portfolio-footer {
  display: grid;
  grid-template-columns: 1.3fr auto auto;
  gap: 1.5rem;
  align-items: start;
}

.footer-brand,
.footer-brand-block p,
.footer-links a,
.footer-contact a,
.footer-bottom p {
  margin: 0;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 0.45rem;

  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #efc86f;
}

.footer-brand-block p,
.footer-bottom p {
  max-width: 34rem;
  color: rgba(232, 196, 111, 0.78);
  line-height: 1.6;
  font-size: 0.86rem;
  text-transform: none;
  letter-spacing: 0.03em;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.45rem;
}

.footer-links a,
.footer-contact a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8c46f;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff1c7;
}

.footer-bottom {
  grid-column: 1 / -1;

  display: flex;
  justify-content: space-between;
  gap: 1rem;

  padding-top: 1rem;
  border-top: 1px solid rgba(199, 154, 59, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: fade-up 650ms ease forwards;
}

.reveal:nth-of-type(2) {
  animation-delay: 90ms;
}

.reveal:nth-of-type(3) {
  animation-delay: 160ms;
}


.case-study-section {
  position: relative;

  padding: clamp(1.5rem, 4vw, 2.4rem);

  border: 1px solid rgba(198, 156, 68, 0.28);

  background: var(--surface);

  box-shadow: var(--shadow);
}


.case-study-content {
  display: grid;
  gap: 2rem;
  max-width: 100%;
  margin: 0 auto;
}

.case-study-block {
  display: grid;
  gap: 1.5rem;

  padding: 1rem 0;

  text-align: center;
}

.case-study-image-card {
  margin: 0 auto;

  width: min(100%, 520px);

  padding: 1rem;

  border: 1px solid rgba(198, 156, 68, 0.32);

  border-radius: 1.25rem;

  background: rgba(251, 245, 232, 0.72);

  box-shadow: var(--shadow);
}

.case-study-image-card img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;

  border-radius: 0.75rem;
}
.case-study-image-card video {
  display: block;

  width: 100%;
  height: auto;

  border-radius: 0.75rem;
}

.case-study-block h2 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(2rem, 4vw, 3.2rem);

  font-weight: 600;

  line-height: 0.96;
}

.case-study-block p {
  margin: 0 auto;

  max-width: 62ch;

  color: var(--muted);

  line-height: 1.8;
}

.floating-back-button {
  position: fixed;
  top: 11rem;
  left: max(1.5rem, calc((100vw - var(--max-width)) / 2 + 1.5rem));

  z-index: 50;

  padding: 0.75rem 1rem;

  border: 1px solid rgba(199, 154, 59, 0.42);
  background: rgba(24, 28, 37, 0.92);
  color: #efc86f;

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  cursor: pointer;
  box-shadow: var(--shadow);

  transition: transform 180ms ease, background-color 180ms ease;
}

.floating-back-button:hover {
  transform: translateX(-3px);

  background: rgba(24, 28, 37, 1);

  box-shadow:
    0 0 18px rgba(239, 200, 111, 0.28),
    0 18px 40px rgba(44, 31, 18, 0.32);

  border-color: rgba(239, 200, 111, 0.72);
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-court,
  .salon-grid,
  .featured-arch-grid,
  .projects-archive-grid,
  .cta-court,
  .editorial-card-grid,
  .editorial-card-grid-tight {
    grid-template-columns: 1fr;
  }

  .hero-script h1,
  .page-chamber h1,
  .editorial-heading h2,
  .editorial-copy {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  body::before {
    display: none;
  }
  .arch-image-slot {
  top: 2rem;
  left: 2rem;
  right: 2rem;
}

.floating-back-button {
  top: auto;
  left: 1rem;
  bottom: 1rem;
}

.case-study-gallery {
  grid-template-columns: 1fr;
}

.project-arch-frame-overlay {
  inset: -46px;
}

.arch-project-inner {
  padding-top: clamp(30rem, 95vw, 31rem);
}

  .site-shell {
    width: min(calc(100% - 1rem), var(--max-width));
    padding-top: 0.75rem;
  }

  .site-header {
    flex-wrap: wrap;
    padding: 0.85rem 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.25rem;
  }

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

  .site-nav a {
    text-align: center;
  }

  .hero-court,
  .page-chamber,
  .salon-panel,
  .editorial-band,
  .featured-section,
  .archive-item,
  .cta-court {
    padding: 1.15rem;
  }
@media (max-width: 720px) {
  .portfolio-footer {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
 /* .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }*/
}