:root {
  --cream: #fdfbf7;
  --surface: #ffffff;
  --sand: #f5efeb;
  --coffee: #3d3a38;
  --muted: #766f68;
  --sage: #a3b19b;
  --sage-dark: #7d8d75;
  --line: rgba(61, 58, 56, 0.12);
  --shadow: 0 18px 50px rgba(61, 58, 56, 0.07);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --header-space: clamp(142px, 12vw, 184px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--coffee);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
select {
  font: inherit;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(253, 251, 247, 0.78);
  border-bottom: 1px solid rgba(61, 58, 56, 0.08);
  display: grid;
  gap: clamp(18px, 3vw, 42px);
  grid-template-columns: minmax(360px, 1fr) auto;
  left: 0;
  padding: 18px clamp(20px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.3s ease;
  z-index: 20;
}

.site-header.scrolled {
  box-shadow: 0 10px 35px rgba(61, 58, 56, 0.05);
  padding-bottom: 14px;
  padding-top: 14px;
}

.brand {
  align-items: center;
  color: var(--coffee);
  display: grid;
  gap: clamp(16px, 2.5vw, 28px);
  grid-template-columns: clamp(70px, 7vw, 98px) minmax(0, 1fr);
  min-width: 0;
  padding: 0;
  transition: all 0.3s ease;
  width: 100%;
}

.brand:hover {
  color: var(--sage-dark);
}

.brand img {
  background: transparent;
  border-radius: 0;
  height: clamp(70px, 7vw, 98px);
  object-fit: cover;
  width: clamp(70px, 7vw, 98px);
}

.brand span {
  border-left: 1px solid rgba(61, 58, 56, 0.14);
  display: grid;
  gap: 7px;
  line-height: 1;
  padding-left: clamp(16px, 2vw, 28px);
}

.brand strong {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 76px);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.brand small {
  color: var(--sage-dark);
  font-size: clamp(12px, 1.2vw, 17px);
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo,
.footer-brand {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 600;
  letter-spacing: 0;
}

.nav-links {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: clamp(18px, 3vw, 34px);
}

.nav-links a {
  color: rgba(61, 58, 56, 0.78);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--coffee);
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 36px;
  padding: 0;
  width: 36px;
}

.menu-toggle span {
  background: var(--coffee);
  display: block;
  height: 1px;
  margin: 8px 4px;
  transition: all 0.3s ease;
}

.section-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(70px, 10vw, 130px) clamp(20px, 4vw, 56px);
  scroll-margin-top: var(--header-space);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(40px, 8vw, 92px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  min-height: 86vh;
  padding-bottom: clamp(44px, 6vw, 76px);
  padding-top: var(--header-space);
}

.quiet-note {
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

h1 {
  font-size: clamp(46px, 5.4vw, 74px);
  max-width: 760px;
}

h2 {
  font-size: clamp(38px, 5.3vw, 68px);
  max-width: 760px;
}

h3 {
  font-size: 28px;
  line-height: 1.08;
}

p {
  color: var(--muted);
}

.hero-text {
  font-size: clamp(17px, 1.6vw, 20px);
  margin: 28px 0 34px;
  max-width: 620px;
}

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

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-facts span {
  background: rgba(163, 177, 155, 0.16);
  border: 1px solid rgba(163, 177, 155, 0.32);
  border-radius: 999px;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 12px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  transition: all 0.3s ease;
}

.button.primary {
  background: var(--coffee);
  color: var(--cream);
}

.button.primary:hover {
  background: #272422;
  transform: translateY(-2px);
}

.button.secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--coffee);
}

.button.secondary:hover {
  border-color: rgba(163, 177, 155, 0.65);
  color: var(--sage-dark);
  transform: translateY(-2px);
}

.button.full {
  width: 100%;
}

.hero-media {
  aspect-ratio: 0.76;
  border-radius: 12px;
  min-height: 480px;
  overflow: hidden;
  position: relative;
}

.hero-media img,
.about-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.appointment-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  bottom: 22px;
  box-shadow: var(--shadow);
  left: 22px;
  padding: 16px 18px;
  position: absolute;
}

.appointment-card span,
.booking-summary span,
.voucher small,
.certificate-item small {
  color: var(--muted);
  display: block;
  font-size: 12px;
}

.appointment-card strong,
.booking-summary strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 3px;
}

.appointment-card .phone-number {
  font-family: var(--sans);
  font-size: 22px;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.wide {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.text-link {
  border-bottom: 1px solid rgba(163, 177, 155, 0.72);
  color: var(--sage-dark);
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

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

.values-grid,
.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.values-grid article {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.values-grid svg {
  color: var(--sage-dark);
  height: 42px;
  margin-bottom: 30px;
  width: 42px;
}

svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  background: var(--surface);
  border: 1px solid rgba(61, 58, 56, 0.08);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 292px;
  padding: 30px;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card.featured {
  background: var(--sand);
}

.service-card p {
  font-size: 14px;
}

.service-card footer {
  align-items: end;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}

.service-card footer > span {
  color: var(--muted);
  font-size: 13px;
}

.service-card footer > strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.service-card footer.price-list {
  align-items: stretch;
  display: grid;
  gap: 10px;
}

.service-card footer.price-list span {
  align-items: baseline;
  color: var(--muted);
  display: grid;
  font-size: 13px;
  gap: 4px;
  grid-template-columns: 1fr;
}

.service-card footer.price-list strong {
  color: var(--coffee);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
}

.extras-line {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  margin-top: 18px;
  padding: 18px 20px;
}

.extras-line span {
  color: var(--coffee);
  font-weight: 500;
}

.services {
  padding-bottom: clamp(34px, 4.5vw, 58px);
}

.about {
  align-items: start;
  display: grid;
  gap: clamp(40px, 7vw, 86px);
  grid-template-columns: minmax(280px, 0.82fr) 1fr;
  padding-top: clamp(34px, 4.5vw, 58px);
}

.about-image {
  aspect-ratio: 0.86;
  align-items: center;
  align-self: start;
  background: #fae8ef;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: clamp(10px, 1.4vw, 18px);
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(61, 58, 56, 0.1);
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.about-copy p {
  max-width: 660px;
}

.trust-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.trust-grid div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
}

.trust-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}

.trust-grid span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-top: 7px;
}

.certificate-open {
  margin-top: 20px;
}

.certificate-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.certificate-item {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--coffee);
  cursor: pointer;
  padding: 17px 18px;
  position: relative;
  text-align: left;
  transition: all 0.3s ease;
}

.certificate-item::after {
  color: var(--sage-dark);
  content: "+";
  position: absolute;
  right: 18px;
  top: 18px;
}

.certificate-item[aria-expanded="true"] {
  background: var(--surface);
  border-color: rgba(163, 177, 155, 0.7);
}

.certificate-item[aria-expanded="true"]::after {
  content: "-";
}

.certificate-item span {
  display: block;
  font-weight: 500;
  padding-right: 24px;
}

.certificate-item small {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.certificate-item[aria-expanded="true"] small {
  margin-top: 8px;
  max-height: 80px;
  opacity: 1;
}

.gift {
  align-items: center;
  background: var(--sand);
  display: grid;
  gap: clamp(34px, 7vw, 80px);
  grid-template-columns: 0.82fr 1fr;
  max-width: none;
  padding-left: max(clamp(20px, 4vw, 56px), calc((100vw - 1180px) / 2 + 56px));
  padding-right: max(clamp(20px, 4vw, 56px), calc((100vw - 1180px) / 2 + 56px));
}

.gift-copy p {
  max-width: 560px;
}

.gift-photo {
  background: var(--surface);
  border: 1px solid rgba(61, 58, 56, 0.08);
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
  padding: 12px;
}

.gift-photo img {
  aspect-ratio: 1.1;
  border-radius: 8px;
  height: auto;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.gift-photo figcaption {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  padding: 12px 4px 2px;
}

.booking-panel {
  background: var(--surface);
  border: 1px solid rgba(61, 58, 56, 0.08);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 0.82fr;
  padding: clamp(22px, 4vw, 42px);
}

.rules-card {
  background: var(--sand);
  border-radius: 12px;
  padding: clamp(24px, 4vw, 38px);
}

.rules-card h3 {
  margin-bottom: 12px;
}

.address-note {
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.rules-card ul {
  color: var(--muted);
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.calendar-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.calendar-head strong {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
}

.calendar-head button {
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--coffee);
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  transition: all 0.3s ease;
  width: 42px;
}

.calendar-head button:hover {
  border-color: rgba(163, 177, 155, 0.7);
}

.calendar-head svg {
  height: 20px;
  width: 20px;
}

.date-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(7, 1fr);
}

.date-button {
  aspect-ratio: 0.82;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--coffee);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}

.date-button span {
  color: var(--muted);
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.date-button strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.date-button.active {
  background: var(--sage);
  color: var(--surface);
}

.date-button.active span {
  color: rgba(255, 255, 255, 0.78);
}

.booking-controls {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

label {
  color: var(--muted);
  display: grid;
  font-size: 13px;
  gap: 8px;
}

.field-label {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
}

select {
  appearance: none;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--coffee);
  min-height: 52px;
  padding: 0 16px;
}

.service-picker {
  display: grid;
  gap: 8px;
}

.service-option {
  align-items: center;
  background: rgba(253, 251, 247, 0.82);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--coffee);
  cursor: pointer;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  min-height: 54px;
  padding: 12px 14px;
  text-align: left;
  transition: all 0.3s ease;
  width: 100%;
}

.service-option:hover {
  border-color: rgba(163, 177, 155, 0.62);
  transform: translateY(-1px);
}

.service-option.active {
  background: #eef2e9;
  border-color: rgba(163, 177, 155, 0.9);
  box-shadow: inset 0 0 0 1px rgba(163, 177, 155, 0.16);
}

.service-option span {
  font-weight: 500;
}

.service-option small {
  color: var(--muted);
  flex: 0 0 auto;
  font-size: 12px;
  white-space: nowrap;
}

.time-groups {
  display: grid;
  gap: 10px;
}

.time-chip {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--coffee);
  cursor: pointer;
  min-height: 50px;
  padding: 0 16px;
  text-align: left;
  transition: all 0.3s ease;
}

.time-chip.active,
.time-chip:hover {
  background: #eef2e9;
  border-color: rgba(163, 177, 155, 0.75);
}

.booking-summary {
  background: var(--sand);
  border-radius: 12px;
  padding: 18px;
}

.booking-summary strong {
  font-size: 22px;
}

.contact-buttons {
  display: grid;
  gap: 10px;
}

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

.review-card {
  background: var(--surface);
  border: 1px solid rgba(61, 58, 56, 0.08);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 10px;
}

.review-card img {
  border-radius: 8px;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.footer {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 0.8fr 0.7fr;
  margin: 0 auto;
  max-width: 1180px;
  padding: 56px clamp(20px, 4vw, 56px) 34px;
}

.footer p {
  max-width: 360px;
}

address {
  color: var(--muted);
  display: grid;
  font-style: normal;
  gap: 8px;
}

address a {
  color: var(--coffee);
  font-weight: 500;
}

.documents-modal {
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: all 0.3s ease;
  z-index: 60;
}

.documents-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.documents-backdrop {
  background: rgba(61, 58, 56, 0.34);
  inset: 0;
  position: absolute;
}

.documents-dialog {
  background: var(--cream);
  border-radius: 12px;
  box-shadow: 0 28px 80px rgba(61, 58, 56, 0.22);
  left: 50%;
  max-height: min(88vh, 920px);
  max-width: min(1060px, calc(100vw - 32px));
  overflow: auto;
  padding: clamp(24px, 5vw, 48px);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -48%);
  transition: all 0.3s ease;
  width: 100%;
}

.documents-modal.open .documents-dialog {
  transform: translate(-50%, -50%);
}

.documents-close {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  height: 42px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 42px;
}

.documents-close span {
  background: var(--coffee);
  height: 1px;
  position: absolute;
  width: 18px;
}

.documents-close span:first-child {
  transform: rotate(45deg);
}

.documents-close span:last-child {
  transform: rotate(-45deg);
}

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

.documents-grid figure {
  background: var(--surface);
  border: 1px solid rgba(61, 58, 56, 0.08);
  border-radius: 12px;
  margin: 0;
  overflow: hidden;
  padding: 12px;
}

.documents-grid img {
  border-radius: 8px;
  display: block;
  height: auto;
  width: 100%;
}

.documents-grid figcaption {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  padding: 12px 4px 2px;
}

.social-links {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.social-links a {
  color: var(--muted);
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--coffee);
}

.footer small {
  color: rgba(61, 58, 56, 0.48);
  grid-column: 1 / -1;
}

@media (max-width: 980px) {
  .hero,
  .about,
  .gift,
  .booking-panel,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    aspect-ratio: 1.05;
    min-height: 0;
  }

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

  .gift {
    padding-left: clamp(20px, 4vw, 56px);
    padding-right: clamp(20px, 4vw, 56px);
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 22;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(35deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-35deg);
  }

  .nav-links {
    align-items: start;
    background: rgba(253, 251, 247, 0.96);
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 22px;
    left: 0;
    opacity: 0;
    padding: 96px 24px 34px;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateY(-12px);
    transition: all 0.3s ease;
  }

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

  .nav-links a {
    font-size: 18px;
  }

  .brand {
    gap: 10px;
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 0;
  }

  .brand img {
    height: 48px;
    width: 48px;
  }

  .brand strong {
    font-size: clamp(22px, 6vw, 31px);
  }

  .brand small {
    font-size: clamp(7px, 2vw, 9px);
  }

  .brand span {
    gap: 5px;
    padding-left: 10px;
  }

  .section-shell {
    padding-bottom: 78px;
    padding-top: 78px;
  }

  .hero {
    gap: 48px;
    padding-top: var(--header-space);
  }

  .values-grid,
  .service-grid,
  .review-grid,
  .date-grid {
    grid-template-columns: 1fr;
  }

  .section-heading.wide {
    align-items: start;
    flex-direction: column;
  }

  .date-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-card {
    min-height: 240px;
  }

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

  .review-frame {
    padding-bottom: 76px;
  }

  .review-dots {
    bottom: 28px;
    left: 28px;
    right: auto;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 25px;
  }

  .appointment-card {
    bottom: 14px;
    left: 14px;
    right: 14px;
  }

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

  .footer {
    padding-bottom: 28px;
  }

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

  .documents-dialog {
    max-height: 88vh;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Final brand lock: the logo and name must occupy the full header line. */
.site-header {
  grid-template-columns: minmax(0, 1fr) auto !important;
}

.brand {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: grid !important;
  grid-template-columns: clamp(78px, 8vw, 118px) minmax(0, 1fr) !important;
  max-width: none !important;
  min-width: 0 !important;
  width: 100% !important;
}

.brand img {
  border-radius: 0 !important;
  height: clamp(78px, 8vw, 118px) !important;
  width: clamp(78px, 8vw, 118px) !important;
}

.brand strong {
  font-size: clamp(42px, 5.8vw, 86px) !important;
}

.brand small {
  font-size: clamp(12px, 1.3vw, 18px) !important;
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr !important;
  }

  .menu-toggle {
    display: none !important;
  }

  .nav-links {
    display: none !important;
  }

  .brand {
    grid-template-columns: 64px minmax(0, 1fr) !important;
  }

  .brand img {
    height: 64px !important;
    width: 64px !important;
  }

  .brand strong {
    font-size: clamp(29px, 8vw, 44px) !important;
  }

  .brand small {
    font-size: clamp(8px, 2.2vw, 11px) !important;
  }
}
