:root {
  --chalk: #e6e5df;
  --porcelain: #fffdf8;
  --linen: #f5f1e9;
  --limestone: #d3cec3;
  --clay: #beb4a4;
  --taupe: #665f55;
  --espresso: #28241f;
  --ink: #181511;
  --brass: #9e8566;
  --olive-grey: #74766f;
  --line: rgba(40, 36, 31, 0.13);
  --shadow: 0 30px 90px rgba(40, 36, 31, 0.16);
  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Theme options:
   - default: current warm interior design palette
   - slate-blue: sky blue / First Star inspired
   - monochrome: white and dark gray
   - custom: edit these variables for a trending seasonal palette
*/
:root[data-theme="slate-blue"] {
  --chalk: #eaf3f8;
  --porcelain: #fbfdfe;
  --linen: #f3f8fb;
  --limestone: #d7e5ec;
  --clay: #c4d4dd;
  --taupe: #63717a;
  --espresso: #22313c;
  --ink: #121b23;
  --brass: #6d8ea3;
  --olive-grey: #697a82;
  --line: rgba(34, 49, 60, 0.13);
  --shadow: 0 30px 90px rgba(34, 49, 60, 0.15);
}

:root[data-theme="monochrome"] {
  --chalk: #eeeeec;
  --porcelain: #ffffff;
  --linen: #f7f7f5;
  --limestone: #d9d9d6;
  --clay: #c4c4c0;
  --taupe: #666663;
  --espresso: #262626;
  --ink: #111111;
  --brass: #77736c;
  --olive-grey: #70706c;
  --line: rgba(38, 38, 38, 0.13);
  --shadow: 0 30px 90px rgba(17, 17, 17, 0.14);
}

:root[data-theme="custom"] {
  --chalk: #e7e8e0;
  --porcelain: #fffdf8;
  --linen: #f6f2ea;
  --limestone: #d5d2c4;
  --clay: #c5baa8;
  --taupe: #635f55;
  --espresso: #252520;
  --ink: #151611;
  --brass: #9a8b70;
  --olive-grey: #6f7467;
  --line: rgba(37, 37, 32, 0.13);
  --shadow: 0 30px 90px rgba(37, 37, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% -8%, rgba(158, 133, 102, 0.18), transparent 28%),
    linear-gradient(180deg, var(--porcelain), var(--chalk));
  color: var(--espresso);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

::selection {
  background: rgba(158, 133, 102, 0.25);
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(20px, 4vw, 58px);
  color: var(--porcelain);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 253, 248, 0.9);
  color: var(--espresso);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(40, 36, 31, 0.08);
  backdrop-filter: blur(22px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-logo {
  width: 104px;
  height: 60px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 0.95;
}

.brand small {
  display: block;
  margin-top: 1px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  padding: 12px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.site-nav .nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--porcelain);
  background: var(--espresso);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(1.05) brightness(0.78);
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 21, 17, 0.88) 0%, rgba(24, 21, 17, 0.62) 38%, rgba(24, 21, 17, 0.12) 74%),
    linear-gradient(0deg, rgba(24, 21, 17, 0.66) 0%, transparent 36%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  max-width: 880px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 150px clamp(22px, 7vw, 96px) 58px;
}

.eyebrow,
.section-label {
  margin: 0 0 20px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.intro h2,
.section-heading h2,
.split-copy h2,
.consultation h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-wrap: balance;
}

.intro h2,
.section-heading h2 {
  color: var(--espresso);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1.03;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 26px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-dark {
  background: var(--porcelain);
  color: var(--espresso);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.button-light {
  border: 1px solid rgba(251, 250, 247, 0.62);
  color: var(--porcelain);
  background: rgba(255, 253, 248, 0.06);
  backdrop-filter: blur(10px);
}

.proof-strip {
  display: grid;
  max-width: 820px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  background: rgba(255, 253, 248, 0.13);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.proof-strip span {
  padding: 18px 20px;
  background: rgba(24, 21, 17, 0.24);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.proof-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--limestone);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.section,
.portfolio-section,
.projects-section {
  padding: clamp(80px, 10vw, 132px) clamp(22px, 6vw, 86px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.5fr);
  gap: clamp(30px, 8vw, 110px);
  padding-top: clamp(68px, 8vw, 108px);
  padding-bottom: clamp(50px, 6vw, 76px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(158, 133, 102, 0.08), transparent 34%),
    var(--porcelain);
}

.intro h2,
.section-heading h2,
.split-copy h2,
.consultation h2 {
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.03;
}

.intro p,
.section-heading,
.split-copy p,
.consultation p {
  color: var(--taupe);
  font-size: 17px;
  line-height: 1.75;
}

.intro p {
  max-width: 760px;
  margin: 24px 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: clamp(26px, 8vw, 96px);
  margin-bottom: clamp(44px, 6vw, 74px);
}

.section-heading.narrow {
  display: block;
  max-width: 760px;
}

.services {
  padding-top: clamp(54px, 6vw, 82px);
  background:
    linear-gradient(180deg, var(--porcelain), rgba(230, 229, 223, 0.95)),
    var(--chalk);
}

.service-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-grid article,
.portfolio-grid article {
  min-height: 320px;
  padding: clamp(26px, 3vw, 38px);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(245, 241, 233, 0.78));
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.service-grid article:hover,
.portfolio-grid article:hover {
  z-index: 1;
  background: var(--porcelain);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-grid span,
.process-list span {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}

.service-grid h3,
.process-list h3,
.portfolio-grid h3 {
  margin: 28px 0 12px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.02;
}

.service-grid p,
.process-list p,
.portfolio-grid p {
  margin: 0;
  color: var(--taupe);
}

.split-section {
  display: grid;
  min-height: 720px;
  grid-template-columns: 1.05fr 0.95fr;
  background:
    radial-gradient(circle at 82% 18%, rgba(158, 133, 102, 0.18), transparent 30%),
    var(--espresso);
  color: var(--porcelain);
}

.split-section.reverse {
  grid-template-columns: 0.95fr 1.05fr;
  background:
    radial-gradient(circle at 16% 12%, rgba(158, 133, 102, 0.14), transparent 32%),
    #2b271f;
}

.image-panel {
  min-height: 520px;
  background-position: center;
  background-size: cover;
}

.residential-panel {
  background-image:
    linear-gradient(rgba(40, 36, 31, 0.02), rgba(40, 36, 31, 0.14)),
    var(--panel-image, url("../images/wix/portfolio-space-planning.png"));
  filter: saturate(0.78) contrast(1.02);
}

.commercial-panel {
  background-image:
    linear-gradient(rgba(40, 36, 31, 0.08), rgba(40, 36, 31, 0.2)),
    var(--panel-image, url("../images/wix/portfolio-remodeling.jpg"));
  background-position: 62% center;
  filter: saturate(0.7) contrast(1.04) brightness(0.92);
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 96px);
}

.split-copy p {
  max-width: 620px;
  color: rgba(255, 253, 248, 0.72);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(251, 250, 247, 0.86);
}

.check-list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 16px;
  height: 1px;
  background: var(--brass);
  content: "";
}

.process {
  background:
    linear-gradient(180deg, var(--porcelain), var(--linen));
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.process-list div {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.projects-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(230, 229, 223, 0.96)),
    var(--chalk);
}

.project-slider {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
}

.project-stage {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--espresso);
  box-shadow: var(--shadow);
}

.project-stage::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 253, 250, 0.22);
  content: "";
  pointer-events: none;
}

.project-stage img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: opacity 220ms ease, transform 520ms ease;
}

.project-stage.is-changing img {
  opacity: 0;
  transform: scale(1.015);
}

.before-after-tags {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.before-after-tags span {
  border: 1px solid rgba(255, 253, 250, 0.58);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(45, 42, 38, 0.46);
  color: var(--porcelain);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.project-panel {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(145deg, rgba(40, 36, 31, 0.96), rgba(77, 67, 56, 0.9)),
    var(--espresso);
  color: var(--porcelain);
  box-shadow: 0 18px 48px rgba(45, 42, 38, 0.14);
}

.project-count {
  margin: 0 0 auto;
  color: var(--limestone);
  font-family: var(--serif);
  font-size: 34px;
}

.project-panel h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(34px, 3.7vw, 50px);
  font-weight: 500;
  line-height: 1;
}

.project-panel p:not(.project-count) {
  margin: 0;
  color: rgba(255, 253, 250, 0.76);
  font-size: 16px;
  line-height: 1.75;
}

.project-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.project-arrow,
.project-thumbs button {
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-arrow {
  min-height: 44px;
  padding: 0 18px;
  color: var(--porcelain);
}

.project-arrow:hover {
  background: var(--porcelain);
  color: var(--espresso);
}

.project-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.project-thumbs button {
  min-height: 40px;
  padding: 0 15px;
  color: var(--taupe);
}

.project-thumbs button.is-active,
.project-thumbs button:hover {
  background: var(--espresso);
  color: var(--porcelain);
}

.home-solutions {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, var(--porcelain), var(--linen));
}

.home-solutions .section-heading h2 {
  max-width: 820px;
}

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

.secondary-grid article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(24px, 3vw, 34px);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(245, 241, 233, 0.78));
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.secondary-grid article:hover {
  box-shadow: 0 18px 50px rgba(40, 36, 31, 0.12);
  transform: translateY(-4px);
}

.secondary-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  border: 1px solid rgba(166, 149, 126, 0.44);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--taupe);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.secondary-grid h3 {
  margin: 0 0 14px;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

.secondary-grid p {
  margin: 0;
  color: var(--taupe);
  line-height: 1.7;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 90px);
  background:
    linear-gradient(180deg, var(--linen), var(--porcelain));
  border-top: 1px solid var(--line);
}

.about-copy {
  align-self: end;
}

.about-kicker,
.booking-subtitle {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-copy p:not(.about-kicker),
.portfolio-intro {
  max-width: 760px;
  margin: 0 0 30px;
  color: var(--taupe);
  font-size: 17px;
  line-height: 1.78;
}

.button-solid {
  background: var(--espresso);
  color: var(--porcelain);
}

.template-portfolio {
  background: var(--porcelain);
}

.portfolio-intro {
  margin-top: -34px;
  margin-bottom: 42px;
}

.template-grid,
.blog-grid,
.booking-grid {
  display: grid;
  gap: 22px;
}

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

.template-grid article,
.blog-grid article,
.booking-grid article {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(245, 241, 233, 0.82));
  overflow: hidden;
}

.template-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--linen);
}

.template-grid h3 {
  margin: 0;
  padding: 20px 22px 24px;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

.blog-section {
  background:
    linear-gradient(180deg, rgba(230, 229, 223, 0.8), rgba(255, 253, 248, 0.96)),
    var(--chalk);
}

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

.blog-grid article {
  display: grid;
  grid-template-rows: auto 1fr;
}

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

.blog-grid article > div {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px;
}

.blog-grid h3,
.booking-grid h3 {
  margin: 0;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.1;
}

.blog-grid p,
.booking-grid p {
  margin: 0;
  color: var(--taupe);
  line-height: 1.65;
}

.blog-grid small {
  color: var(--olive-grey);
  font-size: 12px;
  font-weight: 700;
}

.booking-section {
  background: linear-gradient(180deg, var(--porcelain), var(--linen));
}

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

.booking-grid article {
  display: grid;
  min-height: 260px;
  align-content: start;
  gap: 14px;
  padding: clamp(24px, 3vw, 34px);
}

.booking-grid span {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}

.booking-grid strong {
  color: var(--espresso);
  font-size: 24px;
}

.booking-grid a {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--espresso);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--espresso);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  background: var(--espresso);
  color: var(--porcelain);
}

.visit-section img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.visit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 96px);
}

.visit-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.03;
}

.visit-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 17px;
  line-height: 1.75;
}

.consultation {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: clamp(34px, 7vw, 92px);
  padding: clamp(80px, 10vw, 132px) clamp(22px, 6vw, 86px);
  background:
    radial-gradient(circle at 18% 16%, rgba(158, 133, 102, 0.24), transparent 28%),
    linear-gradient(145deg, #211e19, #332d25),
    var(--espresso);
  color: var(--porcelain);
}

.consultation p {
  max-width: 650px;
  color: rgba(255, 253, 248, 0.74);
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 32px;
  color: var(--limestone);
  font-weight: 600;
}

.consultation-form {
  display: grid;
  gap: 20px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 6px;
  padding: clamp(24px, 4vw, 44px);
  background: rgba(255, 253, 248, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.consultation-form label {
  display: grid;
  gap: 9px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.26);
  border-radius: 0;
  outline: 0;
  padding: 10px 0 12px;
  background: transparent;
  color: var(--porcelain);
  letter-spacing: 0;
  text-transform: none;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
  color: rgba(255, 253, 248, 0.42);
}

.consultation-form select option {
  color: var(--espresso);
}

.consultation-form button {
  min-height: 54px;
  margin-top: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--porcelain);
  color: var(--espresso);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.consultation-form button:hover {
  background: var(--limestone);
  transform: translateY(-2px);
}

.site-footer {
  position: relative;
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 48px 22px 54px;
  background: #181511;
  color: rgba(255, 253, 248, 0.7);
  text-align: center;
}

.site-footer strong {
  color: var(--porcelain);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
}

.theme-control {
  position: absolute;
  right: 18px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 253, 248, 0.26);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  opacity: 0.42;
  text-transform: uppercase;
  transition: opacity 160ms ease;
}

.theme-control:hover,
.theme-control:focus-within {
  opacity: 1;
}

.theme-control select {
  max-width: 112px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 999px;
  padding: 6px 24px 6px 10px;
  background: rgba(255, 253, 248, 0.05);
  color: rgba(255, 253, 248, 0.5);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  outline: 0;
}

.theme-control select:focus,
.theme-control select:hover {
  border-color: rgba(255, 253, 248, 0.4);
  color: var(--porcelain);
}

.theme-control option {
  color: var(--espresso);
}

.site-footer small {
  color: rgba(255, 253, 248, 0.48);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: inherit;
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 12px;
    background: var(--porcelain);
    color: var(--espresso);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .site-nav .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .proof-strip,
  .intro,
  .about-section,
  .section-heading,
  .split-section,
  .split-section.reverse,
  .process-list,
  .consultation,
  .visit-section,
  .project-slider,
  .template-grid,
  .blog-grid,
  .booking-grid,
  .secondary-grid {
    grid-template-columns: 1fr;
  }

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

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

  .project-panel,
  .project-stage,
  .project-stage img {
    min-height: 430px;
  }

  .project-panel {
    justify-content: flex-start;
  }

  .split-section.reverse .image-panel {
    order: -1;
  }

  .visit-section img {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand small {
    display: none;
  }

  .hero-content {
    padding: 128px 20px 34px;
  }

  .hero h1 {
    font-size: 35px;
    line-height: 1.08;
  }

  .hero-copy {
    font-size: 15px;
    line-height: 1.66;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .proof-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .portfolio-section,
  .projects-section,
  .about-section,
  .template-portfolio,
  .blog-section,
  .booking-section,
  .consultation {
    padding-right: 20px;
    padding-left: 20px;
  }

  .service-grid article,
  .portfolio-grid article,
  .template-grid article,
  .blog-grid article,
  .booking-grid article {
    min-height: auto;
  }

  .portfolio-intro {
    margin-top: -18px;
  }

  .image-panel {
    min-height: 390px;
  }

  .project-panel,
  .project-stage,
  .project-stage img {
    min-height: 360px;
  }

  .project-actions,
  .project-thumbs {
    align-items: stretch;
    flex-direction: column;
  }

  .intro h2,
  .section-heading h2,
  .split-copy h2,
  .visit-copy h2,
  .consultation h2 {
    font-size: 34px;
  }

  .theme-control {
    right: 50%;
    transform: translateX(50%);
  }
}
