
:root {
  --ink: #090807;
  --blackberry: #150d13;
  --plum: #2b0f1d;
  --wine: #73152a;
  --rose: #b33c55;
  --gold: #c98b43;
  --cream: #f5ead2;
  --paper: #fff6df;
  --teal: #2e7f7b;
  --muted: #c7b499;
  --line: rgba(245, 234, 210, 0.18);
  --shadow: 0 30px 90px rgba(0,0,0,.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 8% 0%, rgba(115,21,42,.45), transparent 30%),
    radial-gradient(circle at 92% 10%, rgba(46,127,123,.24), transparent 28%),
    linear-gradient(180deg, #080706 0%, #150d13 42%, #090807 100%);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  z-index: -1;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
p { color: rgba(245,234,210,.82); }
h1, h2, h3, .display {
  font-family: Georgia, "Times New Roman", serif;
  line-height: .95;
  letter-spacing: -.045em;
}
h1 { font-size: clamp(58px, 11vw, 150px); margin: 0; }
h2 { font-size: clamp(42px, 7vw, 92px); margin: 0; }
h3 { font-size: 28px; margin: 0 0 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 6%;
  background: rgba(9,8,7,.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  min-width: max-content;
}
.brand img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(245,234,210,.45);
  box-shadow: 0 0 0 5px rgba(255,255,255,.04);
}
.brand strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 21px;
  letter-spacing: .02em;
}
.brand small {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .22em;
  margin-top: 2px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a, .nav-toggle {
  color: var(--cream);
  text-decoration: none;
  font-weight: 900;
  padding: 12px 15px;
  border-radius: 999px;
  font-size: 14px;
  border: 1px solid transparent;
}
.nav a:hover {
  border-color: rgba(245,234,210,.28);
  background: rgba(255,255,255,.06);
}
.nav-cta, .btn.primary {
  background: linear-gradient(135deg, #d49d45, #a4203a 68%, #2e7f7b);
  color: #080706 !important;
  box-shadow: 0 16px 32px rgba(164,32,58,.32);
}
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 110%;
  width: 250px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(15,10,10,.96);
  box-shadow: var(--shadow);
}
.dropdown:hover .dropdown-menu { display: grid; }
.dropdown-menu a {
  border-radius: 12px;
  padding: 10px 12px;
}
.nav-toggle {
  display: none;
  background: rgba(255,255,255,.08);
  color: var(--cream);
  border-color: var(--line);
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(30px, 5vw, 80px);
  padding: 80px 6%;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(201,139,67,.38);
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  margin-bottom: 18px;
}
.hero p {
  font-size: clamp(18px, 2vw, 23px);
  max-width: 720px;
  margin: 28px 0;
}
.hero-art {
  position: relative;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: -30px;
  border: 1px solid rgba(245,234,210,.18);
  border-radius: 42% 58% 48% 52% / 55% 41% 59% 45%;
  transform: rotate(-4deg);
}
.hero-art img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(245,234,210,.2);
}
.hero-actions, .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 950;
  border: 1px solid rgba(245,234,210,.28);
  background: rgba(255,255,255,.06);
  color: var(--cream);
}
.btn:hover { transform: translateY(-2px); }
.primary { border: 0; }
.secondary { background: rgba(245,234,210,.1); }

.section {
  padding: 84px 6%;
}
.section.alt {
  background: linear-gradient(180deg, rgba(245,234,210,.06), rgba(0,0,0,0));
}
.section-header {
  max-width: 920px;
  margin-bottom: 34px;
}
.section-header p {
  font-size: 19px;
  max-width: 780px;
}
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
}
.panel {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(245,234,210,.06);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 38px);
}
.panel.cream {
  background: linear-gradient(135deg, rgba(245,234,210,.95), rgba(245,234,210,.78));
  color: var(--ink);
}
.panel.cream p { color: rgba(9,8,7,.76); }
.panel.cream h3, .panel.cream h2 { color: var(--ink); }

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.preview-card, .portfolio-card, .service-card, .process-card {
  border: 1px solid var(--line);
  background: rgba(245,234,210,.06);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0,0,0,.25);
}
.preview-card img, .portfolio-card img, .service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.preview-card div, .portfolio-card div, .service-card div {
  padding: 18px;
}
.tag {
  display: inline-flex;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 950;
  margin-bottom: 8px;
}
.category-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}
.category-jump a, .filter-btn {
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(255,255,255,.05);
  border-radius: 999px;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}
.filter-btn.active {
  background: var(--cream);
  color: var(--ink);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.portfolio-card {
  cursor: pointer;
}
.portfolio-card:hover img {
  transform: scale(1.03);
}
.portfolio-card img {
  transition: transform .25s ease;
}
.portfolio-card.featured {
  grid-column: span 2;
}
.portfolio-card.featured img {
  height: 420px;
}
.category-block {
  scroll-margin-top: 110px;
  margin-top: 62px;
}
.category-block h2 {
  font-size: clamp(36px, 5vw, 72px);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card img { height: 170px; }
.service-card h3 {
  font-size: 24px;
}
.price {
  display: inline-flex;
  background: rgba(201,139,67,.16);
  color: #ffd18b;
  border: 1px solid rgba(201,139,67,.38);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 950;
  margin: 8px 0 12px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.process-card {
  padding: 20px;
}
.process-card span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1;
}
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
}
.contact-list {
  display: grid;
  gap: 12px;
}
.contact-list a, .contact-list div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
  background: rgba(255,255,255,.05);
}
.contact-form {
  display: grid;
  gap: 14px;
}
label {
  display: grid;
  gap: 7px;
  font-weight: 950;
  color: var(--cream);
}
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(245,234,210,.22);
  background: rgba(0,0,0,.28);
  color: var(--cream);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
}
textarea { min-height: 170px; resize: vertical; }
.form-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.site-footer {
  margin-top: 70px;
  border-top: 1px solid var(--line);
  padding: 38px 6%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: rgba(0,0,0,.24);
}
.site-footer img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 10px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.footer-links a {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  background: rgba(0,0,0,.86);
  padding: 30px;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  width: min(1100px, 94vw);
  max-height: 92vh;
  overflow: auto;
  border-radius: 28px;
  background: #100c0c;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.lightbox img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #050505;
}
.lightbox-content { padding: 20px; }
.close-lightbox {
  position: fixed;
  top: 22px;
  right: 22px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 950;
  cursor: pointer;
}
.note-strip {
  border: 1px solid rgba(201,139,67,.35);
  background: rgba(201,139,67,.1);
  border-radius: 22px;
  padding: 18px 20px;
  margin-top: 22px;
}
@media (max-width: 1060px) {
  .hero, .split, .contact-grid { grid-template-columns: 1fr; }
  .preview-grid, .portfolio-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .site-header { align-items: flex-start; }
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    width: 100%;
    justify-content: flex-start;
  }
  body.nav-open .nav { display: flex; }
  .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
  }
  .dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { display: grid; }
  .hero { padding-top: 42px; min-height: auto; }
  .preview-grid, .portfolio-grid, .services-grid, .process-grid { grid-template-columns: 1fr; }
  .portfolio-card.featured { grid-column: auto; }
  .portfolio-card.featured img { height: 300px; }
  .site-footer { display: grid; }
}


/* Final first-zip polish */
.important-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 18px;
}
.info-card {
  border: 1px solid var(--line);
  background: rgba(245,234,210,.07);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
}
.info-card strong {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 12px;
}
.info-card h3 {
  margin-top: 9px;
}
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  text-decoration: none;
  color: #090807;
  background: linear-gradient(135deg, #f5ead2, #d49d45);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(0,0,0,.32);
  border: 1px solid rgba(9,8,7,.18);
}
.portfolio-card[data-category="web-design"] img {
  object-position: top center;
}
@media (max-width: 1060px) {
  .important-grid { grid-template-columns: 1fr; }
}


/* Slideshow portfolio/pricing redesign */
.portfolio-page,
.services-page {
  background:
    radial-gradient(circle at 15% 0%, rgba(115,21,42,.22), transparent 34%),
    radial-gradient(circle at 90% 5%, rgba(46,127,123,.20), transparent 30%);
}
.portfolio-intro {
  padding-bottom: 36px;
}
.portfolio-intro h1 {
  max-width: 1040px;
}
.portfolio-intro p {
  max-width: 860px;
  font-size: 20px;
}
.portfolio-lanes,
.service-lanes {
  display: grid;
  gap: 34px;
  padding: 0 6% 90px;
}
.portfolio-lane,
.service-lane {
  display: grid;
  grid-template-columns: minmax(270px, .75fr) minmax(0, 1.25fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(245,234,210,.08), rgba(245,234,210,.02)),
    rgba(0,0,0,.20);
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
  scroll-margin-top: 110px;
}
.lane-copy,
.service-copy {
  padding: clamp(24px, 4vw, 44px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
}
.lane-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .19em;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 16px;
}
.lane-copy h2,
.service-copy h2 {
  font-size: clamp(42px, 6vw, 88px);
}
.lane-copy p,
.service-copy p {
  font-size: 18px;
}
.service-price {
  display: inline-flex;
  width: fit-content;
  background: rgba(201,139,67,.18);
  border: 1px solid rgba(201,139,67,.35);
  color: #ffd18b;
  padding: 10px 14px;
  border-radius: 999px;
  margin: 18px 0 12px;
}
.art-slider {
  min-width: 0;
  background: rgba(0,0,0,.20);
  display: grid;
  grid-template-rows: auto 1fr;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.slider-controls button {
  cursor: pointer;
  border: 1px solid var(--line);
  background: rgba(245,234,210,.09);
  color: var(--cream);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 950;
}
.slider-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0 !important;
  border-radius: 999px;
  background: rgba(245,234,210,.28) !important;
}
.slider-dot.active {
  background: var(--gold) !important;
}
.art-slides {
  position: relative;
  min-height: 500px;
}
.art-slide {
  display: none;
  height: 100%;
  min-height: 500px;
  grid-template-columns: minmax(0, 1.05fr) minmax(250px, .55fr);
}
.art-slide.active {
  display: grid;
}
.art-frame {
  min-width: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at center, rgba(245,234,210,.08), transparent 55%),
    rgba(0,0,0,.28);
}
.art-frame img {
  width: 100%;
  height: min(70vh, 620px);
  object-fit: contain;
  border-radius: 18px;
  background: rgba(0,0,0,.38);
  box-shadow: 0 20px 55px rgba(0,0,0,.32);
}
.art-caption {
  border-left: 1px solid var(--line);
  padding: clamp(22px, 3vw, 34px);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.art-caption span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 950;
  margin-bottom: 12px;
}
.art-caption h3 {
  font-size: clamp(28px, 3vw, 44px);
}
.compact-slider .art-slides {
  min-height: 400px;
}
.compact-slider .art-slide {
  min-height: 400px;
}
.compact-slider .art-frame img {
  height: min(50vh, 420px);
}
.art-collage-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  grid-auto-rows: 230px;
  gap: 16px;
}
.art-collage-grid .preview-card:nth-child(1) {
  grid-row: span 2;
}
.art-collage-grid .preview-card:nth-child(3) {
  grid-column: span 1;
  grid-row: span 2;
}
.art-collage-grid .preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.art-collage-grid .preview-card {
  position: relative;
}
.art-collage-grid .preview-card div {
  position: absolute;
  inset: auto 14px 14px 14px;
  border-radius: 18px;
  background: rgba(9,8,7,.72);
  backdrop-filter: blur(10px);
}
@media (max-width: 1060px) {
  .portfolio-lane,
  .service-lane,
  .art-slide {
    grid-template-columns: 1fr;
  }
  .lane-copy,
  .service-copy,
  .art-caption {
    border-right: 0;
    border-left: 0;
    min-height: auto;
  }
  .art-collage-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 240px;
  }
}
@media (max-width: 760px) {
  .portfolio-lanes,
  .service-lanes {
    padding-left: 5%;
    padding-right: 5%;
  }
  .art-frame img {
    height: 360px;
  }
  .art-slide,
  .art-slides {
    min-height: auto;
  }
  .art-collage-grid {
    grid-template-columns: 1fr;
  }
  .art-collage-grid .preview-card:nth-child(1),
  .art-collage-grid .preview-card:nth-child(3) {
    grid-row: span 1;
  }
}


/* Revision: crop, navigation, and readability fixes */
body {
  font-family: "Avenir Next", "Trebuchet MS", Arial, sans-serif;
  letter-spacing: .005em;
}
h1, h2, h3, .display, .brand strong {
  font-family: "Avenir Next", "Trebuchet MS", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .96;
}
h1 { font-size: clamp(46px, 8vw, 122px); }
h2 { font-size: clamp(34px, 5vw, 74px); }
h3 { font-size: clamp(22px, 2.4vw, 34px); letter-spacing: -.035em; }
p { letter-spacing: .01em; }

.dropdown-menu {
  left: 0;
  right: auto;
  width: 280px;
}
.dropdown-menu a {
  font-size: 13px;
  line-height: 1.15;
}

.portfolio-intro h1 {
  max-width: 980px;
}
.portfolio-rooms,
.service-rooms {
  display: grid;
  gap: 34px;
  padding: 0 6% 90px;
}
.portfolio-room,
.service-room {
  scroll-margin-top: 110px;
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(115,21,42,.18), transparent 36%),
    linear-gradient(135deg, rgba(245,234,210,.07), rgba(245,234,210,.025)),
    rgba(0,0,0,.24);
  box-shadow: 0 24px 66px rgba(0,0,0,.32);
}
.room-head,
.service-copy {
  padding: clamp(24px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
}
.room-head h2,
.service-copy h2 {
  max-width: 900px;
}
.room-head p,
.service-copy p {
  max-width: 850px;
  font-size: 18px;
}
.room-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 950;
  font-size: 12px;
  display: inline-flex;
  margin-bottom: 12px;
}
.clean-slider.art-slider,
.compact-slider.art-slider {
  display: block;
  min-width: 0;
  background: rgba(0,0,0,.18);
}
.art-slides {
  min-height: 0;
}
.clean-slider .art-slide,
.compact-slider .art-slide {
  display: none;
  min-height: 0;
  grid-template-columns: minmax(0, 1fr);
}
.clean-slider .art-slide.active,
.compact-slider .art-slide.active {
  display: grid;
}
.clean-slider .art-frame,
.compact-slider .art-frame {
  min-height: 0;
  padding: clamp(16px, 3vw, 34px);
  background:
    radial-gradient(circle at center, rgba(245,234,210,.08), transparent 58%),
    rgba(0,0,0,.25);
}
.clean-slider .art-frame img,
.compact-slider .art-frame img {
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  object-position: center center;
  border-radius: 18px;
  background: rgba(0,0,0,.40);
  box-shadow: 0 18px 48px rgba(0,0,0,.30);
}
.compact-slider .art-frame img {
  max-height: 56vh;
}
.clean-slider .art-caption,
.compact-slider .art-caption {
  border-left: 0;
  border-top: 1px solid var(--line);
  padding: 20px clamp(22px, 3vw, 36px);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 24px;
}
.clean-slider .art-caption h3,
.compact-slider .art-caption h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
}
.clean-slider .art-caption p,
.compact-slider .art-caption p {
  margin: 0;
  max-width: 520px;
}
.slider-controls {
  background: rgba(9,8,7,.42);
  position: sticky;
  top: 86px;
  z-index: 3;
}
.slider-controls button {
  min-width: 44px;
  min-height: 44px;
}
.service-room {
  display: grid;
  grid-template-columns: .42fr .58fr;
}
.service-room .service-copy {
  border-bottom: 0;
  border-right: 1px solid var(--line);
}
.home-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.home-facts span {
  border: 1px solid var(--line);
  background: rgba(245,234,210,.08);
  color: var(--cream);
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 900;
  font-size: 13px;
}
.photo-weave-section {
  padding-top: 42px;
}
.photo-weave {
  display: grid;
  grid-template-columns: 1.1fr .8fr 1fr .9fr 1fr;
  grid-auto-rows: 260px;
  gap: 14px;
}
.photo-weave img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
}
.photo-weave img:nth-child(2),
.photo-weave img:nth-child(4) {
  transform: translateY(32px);
}
.refined-grid .preview-card img {
  object-fit: cover;
}
.refined-grid .preview-card:nth-child(3) img {
  object-position: top center;
}
.refined-grid .preview-card:nth-child(4) img {
  object-position: center center;
}
.preview-card img, .portfolio-card img, .service-card img {
  object-position: center center;
}
@media (max-width: 1060px) {
  .service-room {
    grid-template-columns: 1fr;
  }
  .service-room .service-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .photo-weave {
    grid-template-columns: 1fr 1fr;
  }
  .photo-weave img:nth-child(2),
  .photo-weave img:nth-child(4) {
    transform: none;
  }
}
@media (max-width: 760px) {
  .portfolio-rooms,
  .service-rooms {
    padding-left: 5%;
    padding-right: 5%;
  }
  .clean-slider .art-frame img,
  .compact-slider .art-frame img {
    max-height: 62vh;
  }
  .slider-controls {
    position: static;
  }
  .photo-weave {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }
}


/* Portfolio/pricing photo reset */
.blank-slider .slider-controls {
  display: none;
}
.photo-placeholder {
  width: min(100%, 760px);
  min-height: clamp(260px, 48vw, 460px);
  border: 1px dashed rgba(245,234,210,.38);
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 20%, rgba(201,139,67,.16), transparent 32%),
    radial-gradient(circle at 78% 70%, rgba(179,60,85,.15), transparent 35%),
    rgba(245,234,210,.045);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
  padding: 28px;
  color: var(--cream);
}
.photo-placeholder span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 950;
  font-size: 12px;
}
.photo-placeholder strong {
  font-size: clamp(28px, 4vw, 54px);
  line-height: .98;
  letter-spacing: -.04em;
}
.photo-placeholder p {
  margin: 0;
  max-width: 520px;
}
.portfolio-intro p,
.services-page .portfolio-intro p {
  max-width: 920px;
}


/* Full art direction draft */
:root {
  --deep-navy: #06112b;
  --ink-navy: #030819;
  --dark-burgundy: #3a0f1f;
  --soft-burgundy: #4f1a2d;
  --flower-pink: #8e1748;
  --cream: #fff4df;
  --gold: #d19a55;
  --line: rgba(255,244,223,.20);
  --brand-font: "Brush Script MT", "Snell Roundhand", "Apple Chancery", cursive;
  --script-font: "Segoe Script", "Snell Roundhand", "Apple Chancery", "Brush Script MT", cursive;
  --body-font: "Times New Roman", Times, serif;
}

body {
  font-family: var(--body-font);
  background: #09070b;
  color: var(--cream);
}
p, input, textarea, select, .form-note {
  font-family: var(--body-font);
  letter-spacing: .01em;
}
h1, h2, h3, .eyebrow, .btn, .category-jump a, .section-chip-row span, .room-label, .service-price, .contact-list a, .contact-list div, label, button {
  font-family: var(--script-font);
  letter-spacing: .01em;
  font-weight: 500;
}
h1, h2, h3 { line-height: 1.03; }
.brand-wordmark, .footer-wordmark, .home-hero-overlay h1 { font-family: var(--brand-font); font-weight: 500; letter-spacing: .005em; }

.art-header {
  position: sticky; top: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 6%; min-height: 88px;
  background: linear-gradient(90deg, rgba(4,8,20,.92), rgba(15,8,16,.86)), rgba(6,17,43,.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,244,223,.15);
}
.brand-wordmark { text-decoration: none; display: grid; gap: 2px; }
.brand-wordmark span {
  font-size: clamp(32px, 4vw, 54px); line-height: .82; color: var(--cream);
  text-shadow: 0 4px 18px rgba(0,0,0,.45);
}
.brand-wordmark small {
  font-family: var(--body-font); text-transform: uppercase; color: var(--gold);
  letter-spacing: .22em; font-size: 10px;
}
.menu-flower-wrap { position: relative; display: flex; align-items: center; gap: 12px; }
.menu-arrow-img {
  width: clamp(48px, 7vw, 88px); transform: rotate(72deg); opacity: .82;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.35));
}
.flower-menu-button {
  width: clamp(62px, 9vw, 96px); height: clamp(62px, 9vw, 96px);
  border: 0; padding: 0; background: transparent; cursor: pointer;
  filter: drop-shadow(0 15px 28px rgba(0,0,0,.45));
}
.flower-menu-button img { width: 100%; height: 100%; object-fit: contain; transition: transform .22s ease; }
.flower-menu-button:hover img { transform: rotate(-7deg) scale(1.04); }
.flower-dropdown {
  position: absolute; right: 0; top: calc(100% + 10px);
  width: min(310px, 82vw); display: none; padding: 14px;
  border: 1px solid rgba(255,244,223,.25); border-radius: 24px;
  background: rgba(8,7,10,.94); box-shadow: 0 24px 70px rgba(0,0,0,.48);
  backdrop-filter: blur(16px);
}
body.flower-open .flower-dropdown { display: grid; }
.flower-dropdown a {
  color: var(--cream); text-decoration: none; padding: 13px 14px; border-radius: 16px;
  font-family: var(--script-font); font-size: 20px;
}
.flower-dropdown a:hover { background: rgba(255,244,223,.09); }

.home-collage-hero {
  position: relative; min-height: calc(100vh - 88px); background: var(--ink-navy);
  overflow: hidden; display: grid; place-items: stretch;
}
.hero-collage-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%;
  opacity: .92; filter: saturate(1.05) contrast(1.04);
}
.home-collage-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,17,43,.38), rgba(4,3,5,.22) 35%, rgba(4,3,5,.78) 100%),
              radial-gradient(circle at 50% 35%, transparent 0, rgba(0,0,0,.26) 70%);
  pointer-events: none;
}
.home-hero-overlay {
  position: relative; z-index: 2; display: grid; align-content: start; justify-items: start;
  padding: clamp(26px, 5vw, 58px) 5%; min-height: calc(100vh - 88px);
}
.hero-script-line {
  font-family: var(--script-font); font-size: clamp(28px, 5vw, 58px);
  margin: 0 0 clamp(40px, 8vh, 90px); color: var(--cream);
}
.home-hero-overlay h1 {
  font-size: clamp(68px, 15vw, 190px); line-height: .72; margin: 0; color: white;
  text-shadow: 0 6px 26px rgba(0,0,0,.55);
}
.hero-live {
  font-family: var(--script-font); font-size: clamp(44px, 9vw, 120px);
  margin: 4px 0 0 1vw; line-height: .8; color: white;
}
.hero-description {
  font-family: var(--script-font); font-size: clamp(24px, 4vw, 54px);
  line-height: 1.05; max-width: 760px; margin: clamp(16px, 3vw, 28px) 0 0 28vw; color: white;
}
.hero-only-link {
  margin-top: auto; align-self: end; justify-self: center; color: var(--cream);
  font-family: var(--script-font); font-size: clamp(24px, 4vw, 48px);
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.58);
  text-shadow: 0 5px 20px rgba(0,0,0,.55);
}
.need-design-section { background: linear-gradient(180deg, rgba(5,5,8,.96), rgba(9,7,11,1)), #09070b; }
.need-panel h2 { font-family: var(--script-font); font-size: clamp(42px, 6vw, 84px); }
.quick-panel { background: rgba(255,244,223,.05); }

.about-page {
  background: linear-gradient(180deg, rgba(6,17,43,.82), rgba(7,5,8,.94)), url("images/about-faded-bg.jpg") center/cover fixed;
}
.about-page::before, .contact-page::before { content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.about-page::before { background: linear-gradient(90deg, rgba(6,17,43,.90), rgba(6,17,43,.54)), rgba(0,0,0,.25); }
.about-hero-section { min-height: calc(100vh - 88px); display: grid; align-items: center; }
.about-copy {
  padding: clamp(18px, 3vw, 34px); border-radius: 32px;
  background: rgba(6,17,43,.34); backdrop-filter: blur(7px);
}
.about-copy h1 { font-family: var(--brand-font); font-size: clamp(76px, 10vw, 150px); }
.portrait-floral-frame {
  position: relative; padding: clamp(18px, 3vw, 32px); border-radius: 44px;
  background: radial-gradient(circle at 8% 10%, rgba(142,23,72,.4), transparent 36%),
              radial-gradient(circle at 92% 80%, rgba(209,154,85,.28), transparent 34%),
              rgba(255,244,223,.08);
  border: 1px solid rgba(255,244,223,.23); box-shadow: 0 28px 80px rgba(0,0,0,.45);
}
.portrait-floral-frame::before, .portrait-floral-frame::after {
  content: ""; position: absolute; background: url("images/flower-menu.png") center/contain no-repeat;
  width: clamp(110px, 18vw, 210px); aspect-ratio: 1; opacity: .75; pointer-events: none;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,.4));
}
.portrait-floral-frame::before { left: -44px; top: -42px; transform: rotate(-18deg); }
.portrait-floral-frame::after { right: -48px; bottom: -44px; transform: rotate(22deg); }
.portrait-floral-frame img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 30px;
  border: 1px solid rgba(255,244,223,.35); position: relative; z-index: 1;
}

.simple-title-page {
  min-height: calc(100vh - 88px); display: grid; align-content: center; position: relative; overflow: hidden;
}
.portfolio-navy {
  background: radial-gradient(circle at 16% 12%, rgba(142,23,72,.25), transparent 35%),
              linear-gradient(135deg, #06112b, #020717 75%);
}
.services-burgundy {
  background: radial-gradient(circle at 18% 10%, rgba(209,154,85,.16), transparent 36%),
              linear-gradient(135deg, #3a0f1f, #1b0710 82%);
}
.simple-title-page h1 {
  font-family: var(--brand-font); font-size: clamp(76px, 13vw, 190px); max-width: 1100px; color: var(--cream);
}
.section-chip-row { display: flex; flex-wrap: wrap; gap: 12px; max-width: 1080px; margin-top: 30px; position: relative; z-index: 2; }
.section-chip-row span {
  color: var(--cream); border: 1px solid rgba(255,244,223,.28); border-radius: 999px;
  padding: 12px 18px; background: rgba(255,244,223,.06); font-size: 20px;
}
.floating-flower { position: absolute; pointer-events: none; opacity: .18; }
.floating-flower img { width: 100%; height: auto; }
.flower-a { right: 3%; top: 14%; width: min(36vw, 390px); }
.flower-b { left: 8%; bottom: 5%; width: min(26vw, 250px); transform: rotate(-28deg); }

.services-page-red { background: #2b0a18; }
.burgundy-service-rooms { background: #2b0a18; padding-top: 50px; }
.burgundy-service-rooms .service-room {
  background: linear-gradient(135deg, rgba(255,244,223,.08), rgba(255,244,223,.025)), rgba(0,0,0,.19);
}
.burgundy-slot {
  background: radial-gradient(circle at 30% 20%, rgba(209,154,85,.12), transparent 32%),
              radial-gradient(circle at 78% 70%, rgba(142,23,72,.24), transparent 35%),
              rgba(255,244,223,.05);
}

.contact-page {
  background: linear-gradient(180deg, rgba(4,8,20,.86), rgba(4,5,12,.94)), url("images/contact-fish-bg.jpg") center/cover fixed;
}
.contact-page::before { background: linear-gradient(90deg, rgba(4,8,20,.92), rgba(6,17,43,.62)), rgba(0,0,0,.20); }
.contact-shell { min-height: calc(100vh - 88px); display: grid; align-items: center; }
.contact-info-card, .contact-form-panel {
  border: 1px solid rgba(255,244,223,.22); background: rgba(3,8,25,.64);
  backdrop-filter: blur(12px); border-radius: 32px; padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 24px 70px rgba(0,0,0,.40);
}
.contact-info-card h1 { font-family: var(--brand-font); font-size: clamp(70px, 10vw, 150px); }
.contact-list a, .contact-list div { font-size: 20px; }
.contact-form-panel h2 { font-family: var(--script-font); }
input, textarea, select { font-family: var(--body-font); background: rgba(0,0,0,.32); }

.art-footer {
  margin-top: 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 22px;
  padding: 34px 6%; background: linear-gradient(90deg, rgba(6,17,43,.96), rgba(21,7,15,.96)), #050714;
}
.footer-contact { display: grid; gap: 7px; }
.footer-contact a { color: var(--cream); text-decoration: none; font-family: var(--body-font); }
.footer-wordmark { font-size: clamp(40px, 6vw, 86px); color: var(--cream); text-decoration: none; line-height: .85; }
.footer-cta-wrap { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.footer-cta-wrap img { width: 54px; height: 54px; object-fit: contain; opacity: .9; }
.back-to-top { font-family: var(--script-font); }

@media (max-width: 900px) {
  .art-header { padding: 10px 5%; }
  .brand-wordmark span { font-size: clamp(30px, 9vw, 48px); }
  .menu-arrow-img { display: none; }
  .home-hero-overlay { justify-items: center; text-align: center; padding: 24px 5%; }
  .hero-script-line { margin-bottom: 52px; }
  .home-hero-overlay h1 { font-size: clamp(64px, 18vw, 116px); }
  .hero-description { margin-left: 0; font-size: clamp(24px, 7vw, 40px); }
  .art-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-cta-wrap { justify-content: center; }
  .footer-contact { justify-items: center; }
  .simple-title-page h1 { font-size: clamp(70px, 18vw, 120px); }
}


/* Final polish from marked screenshots */
.hero-script-line,
.hero-live,
.quick-panel {
  display: none !important;
}

/* Any utility/button/contact text the user marked gets Times New Roman */
.btn,
.hero-only-link,
.hero-description,
.category-jump a,
.contact-list a,
.contact-list div,
.footer-contact a,
.footer-cta-wrap .btn,
.section-chip-row span,
.service-price,
.room-label,
label,
input,
textarea,
select,
.form-note {
  font-family: var(--body-font) !important;
  letter-spacing: .01em;
}

/* Keep the title wordmark special */
.brand-wordmark span,
.footer-wordmark,
.home-hero-overlay h1,
.about-copy h1,
.contact-info-card h1,
.simple-title-page h1 {
  font-family: var(--brand-font) !important;
}

/* Flip the arrow so it points toward the flower */
.menu-arrow-img {
  transform: scaleX(-1) rotate(72deg) !important;
}

/* Let the home collage show as a full image instead of a cropped background */
.home-collage-hero {
  min-height: 0 !important;
  display: block !important;
  background: #050714 !important;
}
.hero-collage-img {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center top !important;
  display: block !important;
}
.home-collage-hero::after {
  background:
    linear-gradient(180deg, rgba(6,17,43,.25), rgba(4,3,5,.18) 45%, rgba(4,3,5,.48) 100%),
    radial-gradient(circle at 50% 35%, transparent 0, rgba(0,0,0,.22) 70%) !important;
}
.home-hero-overlay {
  position: absolute !important;
  inset: 0 !important;
  min-height: 0 !important;
  pointer-events: none;
}
.home-hero-overlay a {
  pointer-events: auto;
}
.home-hero-overlay h1 {
  margin-top: clamp(30px, 7vw, 92px) !important;
}
.hero-description {
  font-size: clamp(18px, 2.2vw, 34px) !important;
  line-height: 1.22 !important;
  max-width: 780px !important;
  margin: clamp(16px, 4vw, 46px) auto 0 !important;
  text-align: center !important;
}
.hero-only-link {
  font-size: clamp(20px, 2.6vw, 36px) !important;
}

/* Make the tan box wider and put it clearly after the full photo */
.need-design-section {
  padding-top: clamp(48px, 7vw, 96px) !important;
}
.need-design-section .split {
  display: block !important;
}
.need-panel {
  width: min(94vw, 1120px) !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
}
.need-panel h2 {
  font-family: var(--script-font) !important;
}

/* Mobile keeps the same ideas without crushing the art */
@media (max-width: 900px) {
  .home-hero-overlay {
    justify-items: center !important;
    align-content: start !important;
    text-align: center !important;
  }
  .home-hero-overlay h1 {
    margin-top: 22px !important;
    font-size: clamp(58px, 18vw, 108px) !important;
  }
  .hero-description {
    font-size: clamp(17px, 5vw, 28px) !important;
    width: min(92vw, 680px) !important;
  }
}

/* Professional polish pass from 5:29 notes */
/* About page: remove the artwork/photo background and keep it clean/dark */
.about-page {
  background: linear-gradient(135deg, #050714 0%, #06112b 48%, #08050b 100%) !important;
}
.about-page::before {
  background: radial-gradient(circle at 12% 14%, rgba(142,23,72,.18), transparent 34%),
              radial-gradient(circle at 88% 72%, rgba(209,154,85,.10), transparent 38%) !important;
}
.about-hero-section {
  background: transparent !important;
}

/* Home hero: keep the full collage, but make the headline/CTA feel intentional again */
.home-collage-hero {
  background: #050714 !important;
}
.home-collage-hero::after {
  background:
    linear-gradient(180deg, rgba(5,7,20,.38) 0%, rgba(4,4,10,.20) 35%, rgba(4,4,10,.62) 100%),
    radial-gradient(circle at 50% 34%, rgba(0,0,0,.08) 0%, rgba(0,0,0,.32) 76%) !important;
}
.home-hero-overlay {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  padding: clamp(36px, 6vw, 86px) 6% !important;
}
.home-hero-overlay h1 {
  margin: 0 auto !important;
  font-size: clamp(76px, 12.5vw, 156px) !important;
  line-height: .82 !important;
  max-width: 1180px !important;
  text-shadow: 0 10px 40px rgba(0,0,0,.62) !important;
}
.hero-description {
  margin: clamp(18px, 2.8vw, 34px) auto 0 !important;
  width: min(850px, 86vw) !important;
  font-family: var(--body-font) !important;
  font-size: clamp(20px, 2.05vw, 31px) !important;
  line-height: 1.18 !important;
  color: rgba(255,244,223,.96) !important;
  text-shadow: 0 7px 24px rgba(0,0,0,.72) !important;
}
.hero-only-link {
  margin-top: clamp(18px, 2.5vw, 34px) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 260px !important;
  padding: 17px 34px !important;
  border: 1px solid rgba(255,244,223,.25) !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #d49d45, #a4203a 68%, #2e7f7b) !important;
  color: #120a0d !important;
  text-decoration: none !important;
  font-family: var(--body-font) !important;
  font-size: clamp(18px, 1.45vw, 23px) !important;
  line-height: 1 !important;
  box-shadow: 0 18px 46px rgba(0,0,0,.35) !important;
  text-shadow: none !important;
}
.hero-only-link:hover {
  transform: translateY(-2px);
}

/* Need design panel: remove the little oval, make the card wider, and move the CTA right/bigger */
.need-panel .eyebrow {
  display: none !important;
}
.need-panel {
  width: min(94vw, 1220px) !important;
  max-width: 1220px !important;
  min-height: 315px !important;
  padding: clamp(36px, 5vw, 68px) clamp(34px, 6vw, 78px) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  grid-template-areas:
    "title cta"
    "copy cta" !important;
  align-items: center !important;
  column-gap: clamp(28px, 5vw, 92px) !important;
}
.need-panel h2 {
  grid-area: title !important;
  margin: 0 0 18px !important;
  max-width: 680px !important;
}
.need-panel p {
  grid-area: copy !important;
  max-width: 720px !important;
  margin: 0 !important;
  font-family: var(--body-font) !important;
}
.need-panel .btn {
  grid-area: cta !important;
  justify-self: end !important;
  align-self: center !important;
  min-width: 280px !important;
  padding: 21px 38px !important;
  font-size: clamp(18px, 1.4vw, 24px) !important;
  font-family: var(--body-font) !important;
  text-align: center !important;
  box-shadow: 0 20px 50px rgba(0,0,0,.18) !important;
}

@media (max-width: 900px) {
  .home-hero-overlay h1 {
    font-size: clamp(60px, 16vw, 104px) !important;
  }
  .hero-description {
    font-size: clamp(17px, 4.8vw, 26px) !important;
    width: min(90vw, 650px) !important;
  }
  .hero-only-link {
    min-width: 220px !important;
    padding: 15px 26px !important;
  }
  .need-panel {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "title"
      "copy"
      "cta" !important;
    text-align: left !important;
    min-height: 0 !important;
  }
  .need-panel .btn {
    justify-self: start !important;
    margin-top: 28px !important;
    min-width: 240px !important;
  }
}
