@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@400;500&family=Sora:wght@300;400;500;600&display=swap");

:root {
  --bg: #0b0b0c;
  --panel: #131315;
  --text: #e8e8e6;
  --muted: #ababab;
  --line: rgba(255, 255, 255, 0.14);
  --focus: #d7d7d2;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

.container {
  width: min(1240px, 92%);
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 11, 12, 0.84);
  backdrop-filter: blur(7px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 4.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--focus);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.primary-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
}

.primary-nav a[aria-current="page"],
.primary-nav a:hover {
  color: var(--text);
}

.hero-panel,
.image-panel {
  min-height: 88vh;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.panel-image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.62));
}

.panel-copy {
  position: relative;
  z-index: 2;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.panel-copy-bottom {
  align-items: flex-end;
  padding-bottom: 9vh;
}

.panel-copy p {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.page-main {
  min-height: 70vh;
}

.page-intro {
  padding: 9rem 0 3.5rem;
}

h1,
h2 {
  margin: 0;
  font-family: "Sora", "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.06;
  font-weight: 400;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.7rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.page-intro p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section {
  padding: 2.2rem 0 5rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.work-card {
  background: var(--panel);
  border: 1px solid var(--line);
}

.work-link {
  display: block;
  text-decoration: none;
}

.work-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.work-meta {
  padding: 1rem 1rem 1.2rem;
}

.work-meta h2 {
  font-size: 1.45rem;
}

.work-meta p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.prose p {
  margin: 0 0 1.25rem;
  color: #cfcfcb;
  max-width: 68ch;
}

.commission-steps {
  margin: 0;
  padding-left: 1.35rem;
}

.commission-steps li {
  margin: 0 0 1.75rem;
}

.commission-steps p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.inline-cta a {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 0.68rem 1.15rem;
}

.inline-cta a:hover {
  border-color: #c7c7c0;
}

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

.detail-grid img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.spec-list {
  margin: 0.8rem 0 1.2rem;
  padding-left: 1.2rem;
  color: #d4d4cf;
}

.spec-list li {
  margin-bottom: 0.25rem;
}

.inquiry-form {
  display: grid;
  gap: 0.78rem;
}

.inquiry-form label {
  color: #d0d0ca;
  font-size: 0.93rem;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.7rem 0.75rem;
  font: inherit;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: #bfbfb8;
  outline: none;
}

.inquiry-form button {
  margin-top: 0.4rem;
  width: fit-content;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font: inherit;
  cursor: pointer;
}

.inquiry-form button:hover {
  border-color: #c7c7bf;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0 2.1rem;
}

.footer-wrap p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .work-grid,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  .nav-wrap {
    min-height: auto;
    padding: 0.95rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .primary-nav {
    flex-wrap: wrap;
    gap: 0.9rem;
  }

  .hero-panel,
  .image-panel,
  .panel-copy {
    min-height: 72vh;
  }

  .page-intro {
    padding: 6.9rem 0 2.8rem;
  }

  .work-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

.hero-home {
  position: relative;
  min-height: 100vh;
  background: #050505;
  overflow: hidden;
}

.hero-top-nav {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 5;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.nav-wrap-right {
  justify-content: flex-end;
}

.hero-top-nav .primary-nav a {
  color: rgba(245, 235, 214, 0.86);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-top-nav .primary-nav a[aria-current="page"],
.hero-top-nav .primary-nav a:hover {
  color: #fff3dc;
}

.hero-home .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-home .hero-brand {
  position: absolute;
  top: 42px;
  left: 56px;
  z-index: 2;
}

.hero-home .hero-logo {
  width: clamp(117px, 11.7vw, 221px);
  height: auto;
  display: block;
}

.hero-home .hero-message {
  position: absolute;
  left: 56px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: min(620px, 56vw);
}

.hero-home .hero-message p {
  margin: 0;
  font-family: "Sora", "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(1.5rem, 3.6vw, 3.3rem);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: 0.015em;
  color: #f0e2c5;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.hero-home .hero-cta {
  position: absolute;
  left: 56px;
  bottom: 52px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 6px;
}

.hero-home .hero-cta:hover {
  color: #fff;
  border-color: #fff;
}

.what-build {
  position: relative;
  background:
    linear-gradient(180deg, rgba(26, 18, 12, 0.78) 0%, rgba(17, 14, 12, 0.92) 28%, #0b0b0c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 3.2rem;
}

.what-build .container {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.what-build-intro {
  margin-bottom: 2rem;
  text-align: left;
}

.what-build-intro h2 {
  font-family: "Sora", "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  font-weight: 400;
  letter-spacing: 0.015em;
  color: #ece9e2;
}

.build-stack {
  display: grid;
  gap: 3rem;
}

.build-block h3 {
  margin: 0 0 0.85rem;
  font-family: "Sora", "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.006em;
  color: #eeece8;
}

.build-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.build-image-frame {
  background: #101012;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.48rem;
  border-radius: 2px;
}

.build-image-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.build-block p {
  margin: 0 0 1rem;
  color: #c9c7c2;
  font-size: 0.95rem;
  letter-spacing: 0.002em;
  line-height: 1.65;
  max-width: 82ch;
}

@media (max-width: 760px) {
  .hero-home .hero-image {
    object-position: 68% center;
  }

  .hero-top-nav .primary-nav {
    gap: 0.75rem;
  }

  .hero-top-nav .primary-nav a {
    font-size: 0.7rem;
  }

  .hero-home .hero-brand {
    top: 28px;
    left: 24px;
  }

  .hero-home .hero-message {
    left: 24px;
    width: min(85vw, 420px);
  }

  .hero-home .hero-message p {
    font-size: clamp(1.25rem, 5.4vw, 2.2rem);
  }

  .hero-home .hero-cta {
    left: 24px;
    bottom: 34px;
  }

  .build-row {
    grid-template-columns: 1fr;
  }
}

/* Redesign system: dark, restrained, gallery-like */
:root {
  --bg: #09090a;
  --bg-soft: #101013;
  --surface: #141418;
  --surface-border: rgba(255, 255, 255, 0.14);
  --text: #ece9e2;
  --text-muted: #b9b4aa;
  --accent: #d0b892;
}

body {
  background: radial-gradient(circle at 20% 0%, #111116 0%, #09090a 45%, #080809 100%);
  color: var(--text);
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

.container {
  width: min(1240px, 92%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(9, 9, 10, 0.82);
  border-bottom: 1px solid var(--surface-border);
  backdrop-filter: blur(10px);
}

.home-page .site-header {
  position: absolute;
  inset: 0 0 auto 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.home-page .home-nav-wrap {
  justify-content: flex-end;
}

.nav-wrap {
  min-height: 4.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.69rem;
  text-decoration: none;
  color: #d9d2c5;
}

.primary-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.primary-nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  color: var(--text-muted);
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--text);
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(214, 206, 190, 0.42);
  background: rgba(15, 15, 18, 0.55);
  color: #ece7dc;
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.61rem;
  padding: 0.42rem 0.58rem;
  border-radius: 999px;
  cursor: pointer;
  align-items: center;
  gap: 0.46rem;
}

.menu-toggle-icon {
  display: inline-flex;
  width: 0.85rem;
  height: 0.75rem;
  position: relative;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after,
.menu-toggle-icon span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
}

.menu-toggle-icon::before {
  top: 0;
}

.menu-toggle-icon span {
  top: calc(50% - 0.5px);
}

.menu-toggle-icon::after {
  bottom: 0;
}

.home-page .brand {
  color: rgba(248, 240, 228, 0.92);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.home-page .primary-nav a {
  color: rgba(238, 229, 213, 0.86);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.home-page .primary-nav a:hover,
.home-page .primary-nav a[aria-current="page"] {
  color: #fff9ed;
}

.page-main {
  min-height: 72vh;
}

.page-intro {
  padding: 8rem 0 2.2rem;
}

h1,
h2 {
  margin: 0;
  font-family: "Sora", "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.9rem);
}

h2 {
  font-size: clamp(1.3rem, 2.3vw, 2.2rem);
}

.page-intro p {
  margin: 0.9rem 0 0;
  color: var(--text-muted);
}

.narrow {
  width: min(760px, 100%);
}

.section {
  padding: 1.2rem 0 5rem;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.home-hero-logo {
  position: absolute;
  left: clamp(1rem, 7vw, 7rem);
  top: clamp(3.1rem, 8vh, 5.8rem);
  z-index: 3;
  width: clamp(150px, 13.1vw, 248px);
}

.home-hero-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.home-video-spot {
  position: absolute;
  left: calc(clamp(1rem, 7vw, 7rem) + 135px);
  top: clamp(6.8rem, 24vh, 14.2rem);
  z-index: 3;
  width: clamp(260px, 21vw, 360px);
  margin: 0;
}

.home-video-link {
  display: block;
  width: 100%;
  position: relative;
  text-decoration: none;
}

.home-video-link img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(236, 230, 216, 0.42);
  border-radius: 10px;
  background: rgba(10, 10, 12, 0.52);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.home-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(6, 6, 8, 0.55);
  color: #f1ece0;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.56rem;
}

.home-video-link:hover img {
  border-color: #48a8ff;
  box-shadow:
    inset 0 0 0 2px rgba(93, 178, 255, 0.95),
    0 0 10px rgba(72, 168, 255, 0.55),
    0 0 26px rgba(72, 168, 255, 0.32);
  transform: translateY(-1px);
}

.home-video-link:hover .home-video-play {
  color: #e8f3ff;
  border-color: #48a8ff;
  box-shadow:
    inset 0 0 0 1px rgba(119, 194, 255, 0.9),
    0 0 10px rgba(72, 168, 255, 0.4);
}

.home-video-spot figcaption {
  margin: 0.42rem 0 0;
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(220, 234, 221, 0.94);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.home-video-spot figcaption a {
  margin-left: 0.45rem;
  color: rgba(220, 234, 221, 0.94);
}

.home-video-spot figcaption a:hover {
  color: #ffffff;
}

.home-why {
  position: absolute;
  left: calc(clamp(1rem, 7vw, 7rem) - 2px);
  top: auto;
  bottom: calc(clamp(1.1rem, 4.2vh, 2.8rem) + 60px + 172px);
  z-index: 3;
  margin: 0;
  font-family: "Sora", "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(1.16rem, 1.7vw, 1.52rem);
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: #d7e9d9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.46);
  max-width: none;
  white-space: nowrap;
}

.home-why::before {
  content: "";
  display: block;
  width: 68px;
  height: 1px;
  margin: 0 0 0.5rem;
  background: rgba(215, 233, 217, 0.72);
}

.home-door-links {
  position: absolute;
  left: calc(clamp(1rem, 7vw, 7rem) - 10px);
  bottom: calc(clamp(1.1rem, 4.2vh, 2.8rem) + 60px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 152px);
  gap: 0.6rem;
}

.home-door-links a {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  width: 152px;
  height: 194px;
  border: 1px solid rgba(248, 241, 229, 0.7);
  border-radius: 12px;
  background: center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: border-color 140ms ease, box-shadow 140ms ease, color 140ms ease, transform 140ms ease;
}

.home-door-links .door1 {
  background-image: url("../images/door1.jpg");
}

.home-door-links .door2 {
  background-image: url("../images/door2.jpg");
}

.home-door-links .door3 {
  background-image: url("../images/door3.jpg");
}

.home-door-links .door4 {
  background-image: url("../images/door4.jpg");
}

.door-plaque {
  margin-bottom: 0.48rem;
  display: inline-block;
  padding: 0.3rem 0.45rem;
  font-size: 0.54rem;
  line-height: 1;
  color: rgba(248, 241, 229, 0.96);
  background: rgba(9, 9, 11, 0.62);
  border: 1px solid rgba(248, 241, 229, 0.55);
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(2px);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
}

.home-door-links a:hover {
  border-color: #48a8ff;
  box-shadow:
    inset 0 0 0 2px rgba(93, 178, 255, 0.95),
    0 0 10px rgba(72, 168, 255, 0.55),
    0 0 26px rgba(72, 168, 255, 0.32);
  transform: translateY(-1px);
}

.home-door-links a:hover .door-plaque {
  color: #e8f3ff;
  border-color: #48a8ff;
  box-shadow:
    inset 0 0 0 1px rgba(119, 194, 255, 0.9),
    0 0 10px rgba(72, 168, 255, 0.4);
}

.home-section {
  padding: clamp(2.6rem, 6vw, 5.4rem) 0;
}

.myg-page {
  background:
    linear-gradient(180deg, rgba(8, 8, 10, 0.25) 0%, rgba(8, 8, 10, 0.25) 100%),
    url("../images/myguitarhero1.jpg") center / cover no-repeat fixed;
}

.myg-page > section {
  position: relative;
  z-index: 1;
}

.myg-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.myg-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.06);
  filter: brightness(0.75) saturate(0.9);
}

.myg-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 10, 0.25);
}

.myg-hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: clamp(7.2rem, 26vh, 14.2rem);
  padding-bottom: clamp(1.2rem, 2.4vh, 2.2rem);
}

.myg-kicker {
  margin: 0 0 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
  color: rgba(231, 224, 212, 0.88);
}

.myg-hero h1 {
  max-width: 17ch;
  color: #eae5d9;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.myg-hero-intro {
  margin-top: 1.45rem;
  max-width: min(650px, 88vw);
}

.myg-hero-intro h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.95rem);
  color: #e6e1d6;
}

.myg-hero-intro p {
  margin: 0.58rem 0 0;
  color: #c8c3b8;
  font-size: clamp(0.98rem, 1.35vw, 1.14rem);
}

.myg-section-title {
  font-size: clamp(1.2rem, 2.2vw, 2rem);
}

.myg-section-copy {
  margin: 0.8rem 0 0;
  color: #c8c3b8;
}

.myg-colors {
  padding-top: 1rem;
}

.myg-color-player {
  width: min(84%, 1090px);
  margin: 0 auto;
}

.myg-colors-top {
  padding-top: clamp(4rem, 8vh, 5.5rem);
  padding-bottom: 1.25rem;
}

.myg-title {
  margin: 0.4rem 0 1.05rem;
  max-width: 16ch;
  color: #e8e3d8;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.myg-title-solo {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  color: #e8e3d8;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.myg-product-head {
  margin: 0 0 0.9rem;
}

.myg-product-head .myg-kicker {
  font-size: 0.76rem;
  letter-spacing: 0.13em;
}

.myg-price {
  margin: 0.38rem 0 0;
  color: #cbc5b8;
  letter-spacing: 0.04em;
  font-size: 0.84rem;
}

.myg-color-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.myg-color-rail {
  background: rgba(8, 8, 10, 0.48);
  border: 1px solid rgba(214, 206, 189, 0.16);
  border-radius: 10px;
  padding: 0.68rem 0.6rem;
}

.myg-color-label {
  margin: 0 0 0.54rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.62rem;
  color: #dbd5c9;
}

.myg-color-screen {
  margin: 0;
  border: 1px solid rgba(214, 206, 189, 0.26);
  border-radius: 12px;
  padding: 0.34rem;
  background: rgba(9, 9, 12, 0.72);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
  aspect-ratio: var(--myg-display-ratio, 4 / 3);
  overflow: hidden;
}

.myg-color-screen img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
  display: block;
}

.myg-color-instruction {
  margin: 0.8rem 0 0;
  color: #d8d3c8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
}

.myg-color-options {
  margin-top: 0.2rem;
  display: grid;
  gap: 0.34rem;
}

.myg-color-option {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  appearance: none;
  border: 1px solid rgba(213, 205, 188, 0.34);
  background: rgba(11, 11, 13, 0.62);
  color: #dcd6ca;
  padding: 0.35rem 0.52rem;
  border-radius: 8px;
  font: inherit;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: border-color 130ms ease, box-shadow 130ms ease, color 130ms ease;
}

.myg-swatch {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: var(--swatch, #65717d);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.28);
  flex-shrink: 0;
}

.myg-color-option:hover {
  color: #e8f3ff;
  border-color: #48a8ff;
  box-shadow:
    inset 0 0 0 1px rgba(119, 194, 255, 0.9),
    0 0 10px rgba(72, 168, 255, 0.35);
}

.myg-color-option.is-active {
  color: #e8f3ff;
  border-color: #48a8ff;
  box-shadow:
    inset 0 0 0 2px rgba(93, 178, 255, 0.95),
    0 0 10px rgba(72, 168, 255, 0.55),
    0 0 26px rgba(72, 168, 255, 0.32);
}

.myg-color-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.myg-color-card {
  margin: 0;
  border: 1px solid var(--surface-border);
  border-radius: 10px;
  overflow: hidden;
  background: #111216;
}

.myg-color-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.myg-color-card p {
  margin: 0;
  padding: 0.58rem 0.62rem 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ddd7cb;
}

.myg-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.myg-detail-grid figure {
  margin: 0;
  border: 1px solid var(--surface-border);
  border-radius: 10px;
  overflow: hidden;
}

.myg-detail-grid img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.myg-final {
  padding-top: 0.2rem;
}

.myg-final p {
  margin: 0;
  color: #d9d3c6;
}

.myg-real .myg-section-title {
  color: #e6e1d6;
}

.brand-logo {
  display: block;
  width: clamp(114px, 10.6vw, 182px);
  height: auto;
}

.home-section-dark {
  background: linear-gradient(180deg, rgba(18, 18, 23, 0.84) 0%, rgba(9, 9, 11, 0.98) 100%);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.home-section-tight {
  padding-top: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 4rem);
}

.intro-block p {
  margin: 0;
  color: #d4cec2;
  font-size: clamp(1.03rem, 1.5vw, 1.24rem);
  max-width: 64ch;
}

.home-section-categories {
  padding-top: clamp(1.6rem, 4vw, 2.8rem);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.category-card {
  margin: 0;
  border: 1px solid var(--surface-border);
  background: var(--surface);
}

.category-link {
  display: block;
  text-decoration: none;
}

.category-link img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.category-meta {
  padding: 0.9rem 0.85rem 1rem;
}

.category-meta h2 {
  font-size: 1.2rem;
}

.category-meta p {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.home-intent {
  padding-top: clamp(1.8rem, 4vw, 3.4rem);
  padding-bottom: clamp(2rem, 4vw, 3.8rem);
}

.intro-block-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: end;
  gap: clamp(1.1rem, 2.2vw, 2rem);
}

.intro-copy p {
  margin: 0;
  max-width: 50ch;
}

.intro-image {
  margin: 0;
  max-width: 360px;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(12, 12, 14, 0.9);
  padding: 0.28rem;
}

.intro-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

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

.home-section-gallery-quiet {
  padding-top: clamp(1.1rem, 3vw, 2rem);
}

.gallery-grid-quiet {
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 300px));
  justify-content: start;
}

.gallery-item {
  margin: 0;
  border: 1px solid var(--surface-border);
  background: var(--surface);
  padding: 0.38rem;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.statement-block {
  display: grid;
  gap: 0.9rem;
}

.statement-block h2 {
  max-width: 20ch;
}

.statement-block p {
  margin: 0;
  color: var(--text-muted);
  max-width: 62ch;
}

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

.detail-item {
  margin: 0;
  border: 1px solid var(--surface-border);
  background: #111114;
  padding: 0.35rem;
}

.detail-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

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

.final-line {
  margin: 0;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  letter-spacing: 0.02em;
}

.cta-link {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  border: 1px solid rgba(208, 184, 146, 0.45);
  color: #e2d8c8;
  padding: 0.72rem 1.15rem;
  transition: border-color 120ms ease, color 120ms ease;
}

.cta-link:hover {
  border-color: var(--accent);
  color: #f5efde;
}

.prose p {
  margin: 0 0 1rem;
  color: #d6d2ca;
  max-width: 62ch;
}

.inline-cta {
  margin-top: 1.8rem;
}

.inline-cta a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  border: 1px solid rgba(208, 184, 146, 0.45);
  color: #e2d8c8;
  padding: 0.7rem 1.15rem;
  display: inline-block;
}

.inline-cta a:hover {
  border-color: var(--accent);
  color: #f5efde;
}

.contact-note {
  margin: 0 0 1.4rem;
  color: #cbc5b8;
  max-width: 60ch;
}

.inquiry-form {
  display: grid;
  gap: 0.74rem;
}

.inquiry-form label {
  color: #d3cdc0;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  background: rgba(17, 17, 20, 0.9);
  border: 1px solid var(--surface-border);
  color: var(--text);
  padding: 0.74rem 0.78rem;
  font: inherit;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: rgba(208, 184, 146, 0.65);
}

.inquiry-form button {
  margin-top: 0.45rem;
  width: fit-content;
  padding: 0.72rem 1.2rem;
  border: 1px solid rgba(208, 184, 146, 0.45);
  background: transparent;
  color: #e2d8c8;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  cursor: pointer;
}

.inquiry-form button:hover {
  border-color: var(--accent);
  color: #f5efde;
}

.site-footer {
  border-top: 1px solid var(--surface-border);
  padding: 1.1rem 0 2rem;
}

.footer-wrap p {
  margin: 0;
  color: #a9a395;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .myg-color-player {
    width: 100%;
  }

  .myg-color-layout {
    grid-template-columns: 1fr;
  }

  .myg-color-rail {
    padding: 0.55rem;
  }

  .myg-color-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem;
  }

  .myg-color-grid,
  .myg-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .intro-block-editorial {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .intro-image {
    justify-self: start;
    max-width: 300px;
  }

  .gallery-grid-quiet {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-block {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 740px) {
  .myg-page {
    background-attachment: scroll;
    background-position: center 24%;
  }

  .myg-colors-top {
    padding-top: 4.85rem;
    padding-bottom: 1.1rem;
  }

  .myg-product-head {
    margin-bottom: 0.65rem;
  }

  .myg-title-solo {
    font-size: clamp(1.55rem, 9vw, 2.25rem);
    margin-bottom: 0.7rem;
  }

  .myg-hero,
  .myg-hero-content {
    min-height: 82vh;
  }

  .myg-hero-content {
    padding-top: clamp(6.3rem, 18vh, 8.2rem);
  }

  .myg-hero-intro {
    margin-top: 1.05rem;
  }

  .myg-hero-intro h2 {
    font-size: clamp(1rem, 5vw, 1.3rem);
  }

  .myg-hero-intro p {
    font-size: 0.92rem;
  }

  .brand-logo {
    width: 118px;
  }

  .myg-color-grid,
  .myg-detail-grid {
    grid-template-columns: 1fr;
  }

  .myg-color-screen {
    padding: 0.26rem;
  }

  .myg-color-options {
    grid-template-columns: 1fr;
    gap: 0.32rem;
  }

  .myg-color-option {
    font-size: 0.58rem;
  }

  .nav-wrap {
    min-height: 3.8rem;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .home-page .menu-toggle {
    border-color: rgba(247, 240, 227, 0.55);
    background: rgba(8, 8, 10, 0.34);
    color: #f2ebdc;
  }

  .primary-nav.mobile-collapsible {
    display: none;
  }

  .primary-nav.mobile-collapsible.is-open {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 0;
    z-index: 50;
    min-width: min(300px, 88vw);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.46rem;
    padding: 0.6rem;
    border: 1px solid rgba(217, 210, 196, 0.35);
    border-radius: 10px;
    background: rgba(8, 8, 10, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  }

  .primary-nav.mobile-collapsible.is-open a {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 7px;
    padding: 0.45rem 0.5rem;
    background: rgba(255, 255, 255, 0.02);
  }

  .home-hero {
    min-height: 100vh;
  }

  .home-video-spot {
    display: block;
    left: calc(0.9rem + 8rem);
    top: 43vh;
    transform: translateY(-50%);
    width: min(58vw, 240px);
  }

  .home-video-spot figcaption {
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }

  .home-why {
    left: 0.9rem;
    top: auto;
    bottom: calc(0.9rem + min(60vw, 248px) + 0.8rem);
    font-size: clamp(0.96rem, 4.2vw, 1.2rem);
    max-width: none;
    white-space: nowrap;
  }

  .home-hero-logo {
    left: 0.9rem;
    top: 3.8rem;
    width: 148px;
  }

  .home-door-links {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .home-door-links a {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 152 / 194;
    font-size: 0.58rem;
  }

  .gallery-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid-quiet {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

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

/* Brazos page redesign */
.brazos-page {
  background: #09090a;
}

.brazos-page h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.1vw, 1.95rem);
}

.brazos-page .section {
  padding: clamp(2rem, 5.2vw, 4rem) 0;
}

.brazos-hero {
  position: relative;
  min-height: min(82vh, 840px);
  overflow: hidden;
}

.brazos-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
}

.brazos-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 9, 0.32) 0%, rgba(7, 7, 9, 0.7) 100%);
}

.brazos-hero-copy {
  position: relative;
  z-index: 2;
  min-height: min(82vh, 840px);
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(560px, 1.25fr);
  align-items: center;
  gap: clamp(0.8rem, 1.8vw, 1.5rem);
  padding-bottom: clamp(2.2rem, 6vh, 4.1rem);
}

.brazos-hero-copy h1 {
  margin: 0;
  color: #eee9dd;
  font-size: clamp(2.1rem, 5vw, 4.5rem);
}

.brazos-hero-copy p {
  margin: 0.4rem 0 0;
  color: #d7d2c7;
  font-size: clamp(0.95rem, 1.35vw, 1.12rem);
}

.brazos-hero-feature {
  margin: 0;
  border: 1px solid rgba(215, 208, 194, 0.24);
  border-radius: 12px;
  padding: 0.28rem;
  background: rgba(8, 8, 11, 0.52);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.36);
  width: min(100%, 960px);
  justify-self: end;
}

.brazos-hero-feature img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.brazos-overview.section {
  padding-top: 0.55rem;
  padding-bottom: 0.65rem;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.8) 0%, rgba(8, 8, 10, 0.95) 100%);
  border-top: 1px solid rgba(214, 206, 189, 0.12);
  border-bottom: 1px solid rgba(214, 206, 189, 0.08);
}

.brazos-overview-inner {
  display: grid;
  grid-template-columns: minmax(280px, 430px) auto;
  gap: 0.95rem;
  align-items: center;
  justify-content: start;
}

.brazos-overview-strip {
  margin: 0;
  border: 1px solid rgba(214, 206, 189, 0.18);
  border-radius: 9px;
  overflow: hidden;
  background: rgba(8, 8, 10, 0.42);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.24);
}

.brazos-overview-strip img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  background: #050506;
  display: block;
}

.brazos-overview-text {
  margin: 0;
  color: #d9d3c7;
  padding: 0.4rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 206, 189, 0.22);
  background: rgba(8, 8, 10, 0.52);
  white-space: nowrap;
}

.brazos-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.6vw, 2.2rem);
}

.brazos-spec-grid article {
  border: 1px solid rgba(214, 206, 189, 0.18);
  border-radius: 12px;
  padding: clamp(0.9rem, 1.8vw, 1.3rem);
  background: rgba(10, 10, 13, 0.45);
}

.brazos-spec-grid h3 {
  margin: 0.95rem 0 0.42rem;
  font-family: "Sora", "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d9d3c7;
}

.brazos-list {
  margin: 0.72rem 0 0;
  padding-left: 1.05rem;
  color: #ccc6b9;
}

.brazos-list li {
  margin: 0 0 0.25rem;
}

.brazos-note {
  margin: 0.92rem 0 0;
  color: #bcb6a8;
  font-size: 0.9rem;
}

.brazos-jigsaw.section {
  padding-top: 0.7rem;
  padding-bottom: 0.9rem;
}

.brazos-jigsaw-grid {
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  gap: 0.7rem;
  align-items: stretch;
  width: 100%;
}

.brazos-jigsaw-portrait-stack {
  grid-column: 1 / 5;
  grid-row: 1 / 4;
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  min-height: 0;
}

.brazos-jigsaw-portrait {
  margin: 0;
  border: 1px solid rgba(214, 206, 189, 0.18);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(8, 8, 10, 0.42);
  min-height: 0;
}

.brazos-jigsaw-portrait img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  display: block;
}

.brazos-jigsaw-overview {
  grid-column: 5 / 15;
  grid-row: 1 / 2;
  border: 1px solid rgba(214, 206, 189, 0.14);
  border-radius: 10px;
  background: rgba(8, 8, 10, 0.5);
  padding: 0.6rem 0.78rem;
}

.brazos-jigsaw-overview p {
  margin: 0.45rem 0 0;
  color: #c8c2b5;
  font-size: 0.92rem;
}

.brazos-jigsaw-overview .brazos-overview-text {
  margin: 0;
  white-space: normal;
  display: inline-block;
}

.brazos-jigsaw-card {
  border: 1px solid rgba(214, 206, 189, 0.18);
  border-radius: 12px;
  padding: clamp(0.72rem, 1.4vw, 1rem);
  background: linear-gradient(180deg, rgba(12, 12, 16, 0.62) 0%, rgba(9, 9, 12, 0.78) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.brazos-jigsaw-card h2 {
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.58rem);
  color: #e7e2d7;
}

.brazos-data-list {
  margin: 0.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.18rem;
}

.brazos-data-list li {
  position: relative;
  padding: 0.28rem 0.2rem 0.3rem 0.76rem;
  color: #cec8bb;
  border-bottom: 1px solid rgba(214, 206, 189, 0.09);
  line-height: 1.28;
  font-size: 0.92rem;
}

.brazos-data-list li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.9rem;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: rgba(208, 184, 146, 0.75);
}

.brazos-subhead {
  margin: 1rem 0 0;
  font-family: "Sora", "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #ded8cc;
}

.brazos-jigsaw-specs-card {
  grid-column: 5 / 10;
  grid-row: 2 / 3;
}

.brazos-jigsaw-options-card {
  grid-column: 10 / 15;
  grid-row: 2 / 3;
}

.brazos-jigsaw-choices-card {
  grid-column: 10 / 15;
  grid-row: 3 / 4;
}

.brazos-jigsaw-accent-stack {
  grid-column: 5 / 10;
  grid-row: 3 / 4;
  display: grid;
  gap: 0.7rem;
  align-self: start;
}

.brazos-jigsaw-accent {
  align-self: start;
  margin: 0;
  border: 1px solid rgba(214, 206, 189, 0.32);
  border-radius: 11px;
  padding: 0.34rem;
  overflow: hidden;
  background: rgba(10, 10, 13, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 8px 18px rgba(0, 0, 0, 0.28);
}

.brazos-jigsaw-accent img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 7px;
  display: block;
}

.brazos-jigsaw-accent-secondary {
  margin: 0;
  border: 1px solid rgba(214, 206, 189, 0.32);
  border-radius: 11px;
  padding: 0.34rem;
  overflow: hidden;
  background: rgba(10, 10, 13, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 8px 18px rgba(0, 0, 0, 0.28);
}

.brazos-jigsaw-accent-secondary img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 7px;
  display: block;
}

.brazos-finishes .myg-color-player {
  width: min(100%, 1180px);
}

.brazos-finishes .myg-color-layout {
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
}

.brazos-finishes .myg-color-rail {
  background: rgba(8, 8, 10, 0.54);
}

.brazos-finishes .myg-color-screen {
  border: 1px solid rgba(214, 206, 189, 0.2);
  padding: 0.28rem;
}

.brazos-finishes .myg-color-screen img {
  border-radius: 7px;
}

.brazos-build-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.brazos-build-grid figure {
  margin: 0;
  border: 1px solid rgba(214, 206, 189, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.brazos-build-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.brazos-video-player {
  margin: 1rem auto 0;
  width: min(100%, 920px);
}

.brazos-video .home-video-link img {
  aspect-ratio: 16 / 9;
}

.brazos-pricing p {
  margin: 0.65rem 0 0;
  color: #d4cec2;
}

.brazos-pricing {
  padding-top: 3.2rem;
}

.brazos-pricing .container.narrow {
  text-align: center;
}

.brazos-pricing-plaque {
  margin: 0 auto;
  width: min(100%, 700px);
  padding: 2.35rem 2rem;
  border: 1px solid rgba(214, 206, 189, 0.34);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(20, 18, 16, 0.72), rgba(10, 10, 10, 0.72));
  box-shadow:
    inset 0 0 0 1px rgba(93, 178, 255, 0.42),
    0 0 12px rgba(72, 168, 255, 0.2),
    0 0 30px rgba(72, 168, 255, 0.14),
    0 24px 44px rgba(0, 0, 0, 0.34);
}

.brazos-pricing-plaque h2 {
  margin: 0;
  letter-spacing: 0.02em;
}

.brazos-configured {
  margin-top: 0.55rem;
  color: #d8d0c2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.brazos-price {
  margin-top: 0.85rem;
  font-size: clamp(1.22rem, 2.2vw, 1.65rem);
  color: #f0e6d3;
  letter-spacing: 0.03em;
}

.brazos-pricing-note {
  margin-top: 0.85rem;
  color: #c6bfb2;
  font-size: 0.95rem;
  line-height: 1.62;
}

.brazos-pricing .inline-cta {
  margin-top: 1.2rem;
}

.your-design-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.your-design-image-card {
  width: 100%;
}

.your-design-copy {
  padding-top: 0.2rem;
}

.your-design-copy p {
  margin: 0 0 1rem;
  color: #d4cec2;
  line-height: 1.72;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.about-photo-frame {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 10, 12, 0.45);
  padding: 0.45rem;
  border-radius: 4px;
}

.about-photo-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.about-prose {
  padding-top: 0.1rem;
}

.your-design-support-grid {
  margin-top: 1.95rem;
  width: min(100%, 760px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.your-design-support-frame {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 10, 12, 0.45);
  padding: 0.42rem;
  border-radius: 4px;
}

.your-design-support-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .brazos-overview-inner {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .brazos-overview-text {
    justify-self: start;
    white-space: normal;
  }

  .brazos-spec-grid,
  .brazos-build-grid {
    grid-template-columns: 1fr;
  }

  .brazos-jigsaw-grid {
    grid-template-columns: 1fr;
  }

  .brazos-jigsaw-portrait-stack,
  .brazos-jigsaw-portrait,
  .brazos-jigsaw-overview,
  .brazos-jigsaw-specs-card,
  .brazos-jigsaw-options-card,
  .brazos-jigsaw-choices-card,
  .brazos-jigsaw-accent-stack,
  .brazos-jigsaw-accent,
  .brazos-jigsaw-accent-secondary {
    grid-column: auto;
    grid-row: auto;
  }

  .brazos-jigsaw-portrait img {
    aspect-ratio: 3 / 4;
  }

  .brazos-finishes .myg-color-layout {
    grid-template-columns: 1fr;
  }

  .brazos-finishes .myg-color-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brazos-pricing-plaque {
    padding: 1.8rem 1.2rem;
  }

  .your-design-layout {
    grid-template-columns: 1fr;
  }

  .your-design-image-card {
    max-width: 420px;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-photo-frame {
    max-width: 420px;
  }

  .your-design-support-grid {
    width: 100%;
    gap: 0.8rem;
  }
}

@media (max-width: 740px) {
  .brazos-page .section {
    padding: 1.5rem 0 2.6rem;
  }

  .brazos-hero,
  .brazos-hero-copy {
    min-height: 68vh;
  }

  .brazos-hero-copy {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .brazos-hero-feature {
    display: none;
  }

  .brazos-finishes .myg-color-options {
    grid-template-columns: 1fr;
  }
}

