/* Houston360Photo one-page rebuild */
:root {
  --ink: #171716;
  --paper: #f6f3ee;
  --sage: #e7ece7;
  --stone: #ddd6cc;
  --sand: #eee6da;
  --muted: #69655f;
  --line: rgba(23, 23, 22, 0.16);
  --white: #ffffff;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img, video, iframe { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(24px, 4.2vw, 72px);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 620;
  letter-spacing: -0.02em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 50%;
  font-size: 13px;
  letter-spacing: .04em;
}
.brand-name { font-size: 15px; }

.site-nav {
  display: flex;
  gap: clamp(18px, 2.5vw, 38px);
  font-size: 14px;
}
.site-nav a {
  text-decoration: none;
  opacity: .9;
}
.site-nav a:hover,
.site-nav a:focus-visible { opacity: 1; }

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  color: var(--white);
  background: #111;
}
.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-video {
  overflow: hidden;
  background: #111;
}
.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(0,0,0,.63) 0%, rgba(0,0,0,.22) 48%, rgba(0,0,0,.08) 78%),
    linear-gradient(180deg, rgba(0,0,0,.34) 0%, transparent 42%, rgba(0,0,0,.12) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 88vw);
  padding: clamp(132px, 17vh, 190px) clamp(24px, 7vw, 110px) 60px;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 700;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -.038em;
  font-weight: 500;
}
.hero-copy {
  max-width: 590px;
  margin: 22px 0 0;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  color: rgba(255,255,255,.88);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 21px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 620;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--white);
  color: var(--ink);
}
.button-ghost {
  border: 1px solid rgba(255,255,255,.45);
  color: var(--white);
}
.button-ghost:hover { background: rgba(255,255,255,.1); }

.scroll-cue {
  position: absolute;
  right: clamp(24px, 4.2vw, 72px);
  bottom: 40px;
  z-index: 3;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 10px;
  writing-mode: vertical-rl;
}

.section {
  width: 100%;
  padding-top: clamp(76px, 9vw, 138px);
  padding-bottom: clamp(76px, 9vw, 138px);
  padding-left: max(clamp(24px, 4.2vw, 58px), calc((100vw - var(--max)) / 2 + 58px));
  padding-right: max(clamp(24px, 4.2vw, 58px), calc((100vw - var(--max)) / 2 + 58px));
}
.intro { background: var(--paper); }
.work { background: var(--sage); }
.experience { background: var(--stone); }
.select-projects { background: var(--sand); }
.about { background: var(--paper); }

.intro-grid,
.about-grid,
.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: clamp(44px, 8vw, 130px);
  align-items: start;
}

.intro h2,
.about h2,
.section-heading h2,
.experience h2,
.select-card h2,
.contact-copy h2 {

  margin: 0;
  font-size: clamp(38px, 5.2vw, 70px);
  line-height: 1.02;
  letter-spacing: -.042em;
  font-weight: 540;
}

.intro-copy,
.about-copy,
.experience-copy {
  padding-top: 7px;
  font-size: 19px;
  color: #34322f;
}
.intro-copy p:first-child,
.about-copy p:first-child,
.experience-copy p:first-child { margin-top: 0; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .55fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 54px;
}
.section-kicker {
  margin: 0;
  color: #5f655f;
  font-size: 15px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.work-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: var(--white);
  border-radius: 4px;
  isolation: isolate;
}
.work-card::before,
.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}
.work-card::after {
  z-index: -1;
  background: linear-gradient(0deg, rgba(0,0,0,.68), rgba(0,0,0,.03) 70%);
}
.work-card-a::before {
  background:
    radial-gradient(circle at 70% 25%, rgba(255,255,255,.28), transparent 24%),
    linear-gradient(135deg, #53524f, #1a1a1a);
}
.work-card-b::before {
  background:
    linear-gradient(35deg, rgba(255,255,255,.08) 25%, transparent 25% 50%, rgba(255,255,255,.05) 50% 75%, transparent 75%),
    linear-gradient(140deg, #786f63, #242321);
}
.work-card-c::before {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(255,255,255,.2), transparent 35%),
    linear-gradient(140deg, #343b3e, #101314);
}
.work-card-d::before {
  background:
    conic-gradient(from 220deg at 70% 40%, #202020, #7b6f60, #1f1f1f, #202020);
}
.work-number {
  font-size: 12px;
  letter-spacing: .12em;
  opacity: .75;
}
.work-card h3 {
  margin: 0 0 8px;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -.035em;
  font-weight: 540;
}
.work-card p {
  max-width: 440px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 15px;
}

.experience h2 { max-width: 760px; }
.experience-copy {
  max-width: 520px;
  color: #34312d;
}
.experience-copy p:last-child { margin-bottom: 0; }

.select-card {
  padding: clamp(46px, 7vw, 94px);
  background: var(--ink);
  color: var(--white);
  border-radius: 4px;
}
.select-card h2 { max-width: 950px; }
.select-card > p:not(.section-label) {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 18px;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  max-width: 820px;
  margin-top: 42px;
  border-top: 1px solid rgba(255,255,255,.22);
}
.service-list span {
  position: relative;
  display: block;
  padding: 15px 0 15px 18px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.84);
  font-size: 14px;
}
.service-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 23px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.58);
}

.about { border-bottom: 1px solid var(--line); }
.video-link {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.video-link a {
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}


.contact {
  background: #171717;
  color: var(--white);
}

.contact-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 70px;
  align-items: start;
}

.contact-copy h2 {
  max-width: 520px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
}

.contact-copy p:not(.section-label) {
  max-width: 420px;
  color: rgba(255,255,255,.68);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 520px;
}
}
.button-light {
  min-width: 180px;
  background: var(--white);
  color: var(--ink);
}

.phone-link {
  margin-top: 28px;
  color: rgba(255,255,255,.85);
}





.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 32px clamp(24px, 4.2vw, 72px);
  background: #0d0d0d;
  color: rgba(255,255,255,.56);
  font-size: 12px;
}
.site-footer > div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.site-footer strong { color: rgba(255,255,255,.9); }
.footer-links { justify-content: flex-end; }
.site-footer a { color: rgba(255,255,255,.8); }

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    gap: 20px;
  }
  .brand-name { display: none; }
  .site-nav {
    gap: 16px;
    font-size: 12px;
  }
  .hero { min-height: 86svh; }
  .hero-content {
    width: min(620px, 92vw);
    padding-top: 124px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero h1 { font-size: clamp(38px, 8vw, 58px); }
  .hero-copy { font-size: 17px; }
  .scroll-cue { display: none; }
  .intro-grid,
  .about-grid,
  .experience-grid,
  .section-heading,

  .contact-grid {
  grid-template-columns: 1fr;
}
  .section-heading { align-items: start; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card { min-height: 270px; }
  .service-list { grid-template-columns: 1fr; }
  

  .contact-grid { gap: 42px; 
  }

}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .site-header { padding-top: 20px; }
  .site-nav a:nth-child(2),
  .site-nav a:nth-child(3) { display: none; }
  .hero { min-height: 82svh; }
  .hero-content {
    padding-top: 118px;
    padding-bottom: 42px;
  }
  .hero h1 {
    max-width: 520px;
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.03;
  }
  .hero-copy { max-width: 470px; }
  .hero-actions { margin-top: 24px; }
  .button { min-height: 46px; }
  .section {
    padding-top: 72px;
    padding-bottom: 72px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .intro h2,
  .about h2,
  .section-heading h2,
  .experience h2,
  .select-card h2,
  .contact-copy h2 {
    font-size: clamp(34px, 10vw, 48px);
  }
  .intro-copy,
  .about-copy,
  .experience-copy { font-size: 17px; }
  .select-card { padding: 34px 24px; }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}

/* Contact form */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 520px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}

.contact-form label input,
.contact-form label textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  padding: 12px 14px;
  font: inherit;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

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

.form-status {
  margin-top: 12px;
  font-size: 0.95rem;
}

.contact-form button {
  align-self: flex-start;
  margin-top: 8px;
}
