:root {
  --orange: #f26522;
  --orange-dark: #c94a14;
  --blue: #4abfed;
  --slate: #546374;
  --ink: #172231;
  --cream: #fff8ef;
  --paper: #ffffff;
  --yellow: #ffd84d;
  --mint: #8ee3c8;
  --line: rgba(23, 34, 49, 0.12);
  --shadow: 0 24px 70px rgba(23, 34, 49, 0.16);
  --heading: "Barlow", system-ui, sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
  --max: 1180px;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(242, 101, 34, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(84, 99, 116, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
  padding: 0.8rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 248, 239, 0.92);
  border-bottom: 3px solid var(--ink);
  backdrop-filter: blur(16px);
}

.brand img {
  width: min(250px, 44vw);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-weight: 800;
  color: var(--slate);
}

.site-nav a {
  transition: color 0.18s ease, transform 0.18s ease;
}

.site-nav a:hover {
  color: var(--orange);
  transform: translateY(-1px);
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.nav-button {
  padding: 0.4rem 1rem;
  color: var(--ink) !important;
  background: var(--yellow);
}

.button {
  padding: 0.75rem 1.25rem;
  cursor: pointer;
}

.button:hover,
.nav-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.button.primary {
  background: var(--orange);
  color: white;
}

.button.secondary {
  background: white;
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.96fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  max-width: 1320px;
  min-height: clamp(430px, 52vh, 560px);
  margin: 0 auto;
  padding: clamp(1.8rem, 4vw, 3.4rem) clamp(1.2rem, 4vw, 4rem);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "?";
  position: absolute;
  z-index: -1;
  font-family: var(--heading);
  font-weight: 900;
  line-height: 1;
  color: rgba(74, 191, 237, 0.16);
}

.hero::before {
  top: 5%;
  right: 5%;
  font-size: clamp(8rem, 18vw, 18rem);
  transform: rotate(9deg);
}

.hero::after {
  left: 4%;
  bottom: 0;
  font-size: clamp(6rem, 14vw, 14rem);
  color: rgba(242, 101, 34, 0.16);
  transform: rotate(-12deg);
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  font-family: var(--heading);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5.8vw, 5.9rem);
  text-transform: uppercase;
}

.hero-text {
  max-width: 660px;
  margin: 0.85rem 0 0;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--slate);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.75rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--blue);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.35rem;
}

.hero-stage {
  position: relative;
  min-height: 300px;
}

.hero-photo-card {
  position: absolute;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 14px;
  box-shadow: 12px 12px 0 var(--ink);
  background:
    linear-gradient(135deg, rgba(242, 101, 34, 0.18), rgba(74, 191, 237, 0.2)),
    #f4f1eb;
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
  color: var(--slate);
  font-weight: 900;
  text-align: center;
}

.primary-photo {
  top: 2%;
  right: 3%;
  width: min(320px, 70%);
  aspect-ratio: 1.1;
  transform: rotate(3deg);
}

.secondary-photo {
  left: 2%;
  bottom: 6%;
  width: min(215px, 48%);
  aspect-ratio: 0.92;
  transform: rotate(-5deg);
}

.accent-photo {
  right: 0;
  bottom: 0;
  width: min(170px, 38%);
  aspect-ratio: 1.12;
  border-color: var(--orange);
  box-shadow: 9px 9px 0 var(--ink);
  transform: rotate(7deg);
}

.hero.hero-spotlight {
  background: radial-gradient(circle at 70% 34%, rgba(255, 216, 77, 0.75), transparent 27%), var(--ink);
  color: white;
}

.hero.hero-spotlight .hero-text,
.hero.hero-spotlight .site-note {
  color: rgba(255, 255, 255, 0.78);
}

.hero.hero-spotlight::before {
  color: rgba(242, 101, 34, 0.3);
}

.hero.hero-split {
  background: linear-gradient(110deg, white 0 56%, var(--blue) 56% 100%);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: -1.5rem auto 0;
  border: 4px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  background: white;
}

.intro-strip div {
  padding: 1.2rem;
  border-right: 2px solid var(--line);
}

.intro-strip div:last-child {
  border-right: 0;
}

.intro-strip strong {
  display: block;
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.intro-strip span {
  color: var(--slate);
  font-weight: 800;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 1.25rem;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section h2,
.contact-section h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  text-transform: uppercase;
}

.admin-page h1 {
  margin: 0 0 1rem;
  font-family: var(--heading);
  font-size: clamp(2.7rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.section-heading p:not(.eyebrow),
.about-section p,
.contact-section p,
.calendar-note {
  color: var(--slate);
  font-size: 1.05rem;
}

.steps-grid,
.portfolio-grid,
.pricing-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.steps-grid article,
.portfolio-grid article,
.pricing-grid article,
.reviews-grid article,
.request-form,
.calendar-panel,
.contact-form,
.faq-list details {
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: white;
  box-shadow: 7px 7px 0 var(--ink);
}

.steps-grid article,
.portfolio-grid article,
.pricing-grid article,
.reviews-grid article {
  padding: 1.25rem;
}

.steps-grid span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-weight: 900;
}

h3 {
  margin: 0.8rem 0 0.45rem;
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.clients-section {
  max-width: none;
  padding-inline: 0;
  overflow: hidden;
}

.clients-section .section-heading,
.client-cloud {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.client-marquee {
  width: 100%;
  overflow: hidden;
  border-block: 4px solid var(--ink);
  background: var(--orange);
}

.client-track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  padding: 0.9rem;
  animation: marquee 38s linear infinite;
}

.client-track span,
.client-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.35rem 0.75rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: white;
  font-weight: 900;
  white-space: nowrap;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.client-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.split-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 2rem;
  align-items: start;
}

.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stars {
  color: var(--orange);
  font-size: 1.2rem;
  letter-spacing: 0;
}

.reviews-grid strong,
.reviews-grid span {
  display: block;
}

.reviews-grid span {
  color: var(--slate);
}

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

.portfolio-art {
  display: grid;
  place-items: center;
  min-height: 150px;
  border: 3px solid var(--ink);
  border-radius: 12px;
  color: white;
  font-family: var(--heading);
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.portfolio-art.orange {
  background: var(--orange);
}

.portfolio-art.blue {
  background: var(--blue);
  color: var(--ink);
}

.portfolio-art.slate {
  background: var(--slate);
}

.portfolio-art.yellow {
  background: var(--yellow);
  color: var(--ink);
}

.pricing-section {
  max-width: none;
  background: var(--ink);
  color: white;
}

.pricing-section > * {
  max-width: var(--max);
  margin-inline: auto;
}

.pricing-section .section-heading p:not(.eyebrow),
.pricing-section article p,
.pricing-section li {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid article {
  background: #223044;
}

.pricing-grid .featured-price {
  background: var(--orange);
  transform: translateY(-0.8rem);
}

.package {
  display: inline-flex;
  padding: 0.28rem 0.65rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}

.pricing-grid ul {
  padding-left: 1.2rem;
}

.about-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.mascot-frame {
  max-height: 450px;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 18px;
  box-shadow: 10px 10px 0 var(--ink);
  background: var(--blue);
}

.mascot-frame img {
  width: 100%;
  transform: scale(1.2) translateY(4%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-grid article {
  position: relative;
  display: grid;
  place-items: end start;
  min-height: 220px;
  padding: 1rem;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background:
    radial-gradient(circle at 22% 28%, white 0 9%, transparent 10%),
    radial-gradient(circle at 72% 58%, rgba(255,255,255,0.9) 0 7%, transparent 8%),
    linear-gradient(135deg, var(--orange), var(--blue));
  box-shadow: 7px 7px 0 var(--ink);
  color: white;
  font-family: var(--heading);
  font-size: 1.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-section {
  max-width: none;
  background: white;
}

.booking-section > * {
  max-width: var(--max);
  margin-inline: auto;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
}

.calendar-panel,
.request-form,
.contact-form {
  padding: 1.25rem;
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.calendar-toolbar button {
  width: 44px;
  height: 44px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 900;
}

.calendar-toolbar h3 {
  margin: 0;
  text-align: center;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
}

.calendar-weekdays {
  margin-top: 1rem;
  color: var(--slate);
  font-weight: 900;
  text-align: center;
}

.calendar-grid {
  margin-top: 0.55rem;
}

.day-button {
  position: relative;
  aspect-ratio: 1;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: #f4f1eb;
  color: rgba(23, 34, 49, 0.42);
  cursor: default;
  font-weight: 900;
}

.day-button.available {
  border-color: var(--ink);
  background: var(--orange);
  color: white;
  cursor: pointer;
}

.day-button.available:hover,
.day-button.selected {
  background: var(--blue);
  color: var(--ink);
}

.day-button.taken {
  border-color: rgba(23, 34, 49, 0.28);
  background: #ddd8cf;
  color: var(--ink);
  cursor: help;
}

.day-button.taken::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 5;
  width: max-content;
  max-width: 220px;
  padding: 0.55rem 0.65rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: white;
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.25;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translate(-50%, 4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.day-button.taken:hover::after,
.day-button.taken:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.day-button.pending {
  background:
    repeating-linear-gradient(135deg, rgba(242, 101, 34, 0.18) 0 8px, transparent 8px 16px),
    #ddd8cf;
}

.day-button.reserved {
  background: #c9c4bc;
}

.day-button.pending::before,
.day-button.reserved::before {
  position: absolute;
  right: 6px;
  bottom: 4px;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.day-button.pending::before {
  content: "P";
  color: var(--orange-dark);
}

.day-button.reserved::before {
  content: "R";
  color: var(--slate);
}

.day-button.blank {
  visibility: hidden;
}

.calendar-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.45;
}

.calendar-note > span:first-child {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--orange);
}

.calendar-note > span:not(:first-child) {
  min-width: 0;
}

label {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
  color: var(--slate);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 0.72rem 0.8rem;
  background: #fffdf9;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.4rem;
  color: var(--orange-dark);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 880px;
  margin: 0 auto;
}

.faq-list details {
  padding: 1rem 1.2rem;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--heading);
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  overflow: hidden;
}

.gallery-grid article img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid article.has-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(transparent, rgba(23, 34, 49, 0.72));
}

.gallery-grid article span {
  position: relative;
  z-index: 1;
}

.gallery-photo-preview {
  min-height: 180px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: #f4f1eb;
}

.gallery-photo-preview img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-photo-placeholder {
  display: grid;
  min-height: 180px;
  place-items: center;
  color: var(--slate);
  font-weight: 900;
}

.contact-section {
  align-items: start;
}

.contact-form {
  background: var(--orange);
}

.contact-form label {
  color: white;
}

.admin-gate {
  max-width: 680px;
  margin: 0 auto;
}

.admin-tools {
  align-self: start;
}

.admin-tools .button {
  width: 100%;
  margin-top: 0.75rem;
}

.content-editor-panel {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: white;
  box-shadow: 7px 7px 0 var(--ink);
}

.content-editor-panel h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.content-editor-panel code {
  font-weight: 900;
}

.editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section-toggle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1rem;
}

.copy-editor-grid {
  display: grid;
  gap: 1rem;
}

.copy-editor-group {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: white;
}

.copy-editor-group h4 {
  margin: 0;
  font-family: var(--heading);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.editor-section {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: #fffdf9;
}

.editor-section > p,
.editor-section-header p,
.content-editor-panel > div > p {
  margin: 0;
  color: var(--slate);
}

.editor-section-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.repeatable-list {
  display: grid;
  gap: 1rem;
}

.editor-card {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: white;
}

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

.editor-card h4 {
  margin: 0;
  font-family: var(--heading);
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-button {
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 0.35rem 0.65rem;
  background: var(--yellow);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.mini-button.danger {
  justify-self: start;
  background: var(--orange);
  color: white;
}

.checkbox-label {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-label input {
  width: auto;
  accent-color: var(--orange);
}

.bookings-list {
  display: grid;
  gap: 0.75rem;
}

.admin-reservation-form {
  display: grid;
  grid-template-columns: minmax(180px, 1.2fr) minmax(160px, 0.8fr) minmax(160px, 1fr) minmax(180px, 1.2fr) auto;
  gap: 0.75rem;
  align-items: end;
  margin-bottom: 0.75rem;
  padding: 1rem;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: #fff8ef;
}

.admin-reservation-form label {
  margin: 0;
}

.admin-reservation-form .button {
  min-width: 170px;
}

.booking-record {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: white;
}

.booking-record.pending {
  border-color: rgba(242, 101, 34, 0.55);
}

.booking-record.reserved {
  border-color: rgba(84, 99, 116, 0.42);
}

.booking-record label {
  max-width: 240px;
  margin: 0;
}

.booking-record strong,
.booking-record span {
  display: block;
}

.booking-record strong {
  font-family: var(--heading);
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-record span {
  color: var(--slate);
  font-weight: 900;
}

.booking-record dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 0;
}

.booking-record dt {
  color: var(--slate);
  font-weight: 900;
}

.booking-record dd {
  margin: 0;
}

.maintenance-page {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
}

.maintenance-page img {
  width: min(360px, 82vw);
  margin-bottom: 2rem;
}

.maintenance-page h1 {
  max-width: 820px;
  margin: 1rem 0;
  font-family: var(--heading);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.maintenance-page p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: var(--slate);
  font-size: 1.2rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  border-top: 4px solid var(--ink);
  background: white;
}

.site-footer img {
  width: 220px;
}

.site-footer div {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--slate);
  font-weight: 900;
}

@media (max-width: 960px) {
  .site-nav {
    display: none;
  }

  .hero,
  .split-section,
  .about-section,
  .contact-section,
  .booking-layout,
  .admin-reservation-form {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero-stage {
    min-height: 300px;
  }

  .intro-strip,
  .steps-grid,
  .portfolio-grid,
  .pricing-grid,
  .reviews-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid .featured-price {
    transform: none;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 220px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 15vw, 4rem);
  }

  .hero-stage {
    min-height: 280px;
  }

  .primary-photo {
    right: 0;
    width: 78%;
  }

  .secondary-photo {
    left: 0;
    width: 54%;
  }

  .accent-photo {
    width: 45%;
  }

  .intro-strip,
  .steps-grid,
  .portfolio-grid,
  .pricing-grid,
  .reviews-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .intro-strip div {
    border-right: 0;
    border-bottom: 2px solid var(--line);
  }

  .intro-strip div:last-child {
    border-bottom: 0;
  }

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