/* Pair of Dice Services — premium local trades */
:root {
  --charcoal: #141414;
  --charcoal-soft: #1c1c1c;
  --ink: #0f0f0f;
  --cream: #f7f3eb;
  --cream-deep: #efe8dc;
  --warm-white: #fbf9f5;
  --gold: #b8956c;
  --gold-bright: #c9a87a;
  --copper: #a67c52;
  --copper-deep: #8a6340;
  --text: #1a1a1a;
  --text-muted: #5c564c;
  --line: rgba(20, 20, 20, 0.1);
  --line-strong: rgba(20, 20, 20, 0.16);
  --shadow: 0 8px 30px rgba(15, 15, 15, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 15, 15, 0.14);
  --radius: 4px;
  --radius-lg: 8px;
  --max: 1140px;
  --header-h: 4.25rem;
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--copper-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--charcoal);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.75rem 1rem;
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* Header */
.site-header {
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(184, 149, 108, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.logo:hover {
  color: var(--gold-bright);
}

.logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
}

.logo-text {
  line-height: 1.15;
}

.logo-text small {
  display: block;
  font-weight: 500;
  font-size: 0.68rem;
  opacity: 0.7;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.15rem;
  color: var(--gold);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(247, 243, 235, 0.25);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--cream);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--ink);
  padding: 0.75rem 0 1.25rem;
  border-bottom: 1px solid rgba(184, 149, 108, 0.2);
}

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

.site-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  gap: 0.15rem;
}

.site-nav a {
  display: block;
  color: var(--cream);
  text-decoration: none;
  padding: 0.9rem 0.6rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 1.05rem;
  min-height: 48px;
}

.site-nav a:hover,
.site-nav a:focus {
  background: rgba(247, 243, 235, 0.06);
  color: var(--gold-bright);
}

.header-cta {
  display: none;
}

/* Hero — full bleed */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
  background:
    linear-gradient(160deg, #1a1814 0%, #2a241c 45%, #1c1a16 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(15, 15, 15, 0.45) 0%,
      rgba(15, 15, 15, 0.55) 40%,
      rgba(15, 15, 15, 0.88) 100%
    ),
    linear-gradient(
      90deg,
      rgba(15, 15, 15, 0.75) 0%,
      rgba(15, 15, 15, 0.35) 70%,
      rgba(15, 15, 15, 0.2) 100%
    );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 3.5rem;
  max-width: 40rem;
  margin-left: max(1rem, calc((100% - var(--max)) / 2));
  margin-right: auto;
  width: min(100% - 2rem, 40rem);
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.15rem, 6.5vw, 3.65rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 1.1rem;
  color: var(--warm-white);
}

.hero-lead {
  font-size: 1.08rem;
  opacity: 0.88;
  max-width: 34rem;
  margin-bottom: 1.75rem;
  font-weight: 400;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.1s, box-shadow 0.18s;
  min-height: 52px;
}

.btn:active {
  transform: scale(0.985);
}

.btn-icon {
  flex-shrink: 0;
}

.btn-call {
  background: var(--copper);
  color: #fff;
  border-color: var(--copper);
  font-size: clamp(1.05rem, 2.8vw, 1.2rem);
  padding: 1.05rem 1.7rem;
  box-shadow: 0 8px 28px rgba(166, 124, 82, 0.35);
  letter-spacing: 0.01em;
}

.btn-call:hover {
  background: var(--copper-deep);
  border-color: var(--copper-deep);
  color: #fff;
  box-shadow: 0 10px 32px rgba(138, 99, 64, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247, 243, 235, 0.4);
}

.btn-ghost:hover {
  background: rgba(247, 243, 235, 0.08);
  color: var(--warm-white);
  border-color: rgba(247, 243, 235, 0.65);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream);
}

/* Trust strip */
.trust-strip {
  background: var(--charcoal);
  color: var(--cream);
  border-bottom: 1px solid rgba(184, 149, 108, 0.22);
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  padding: 0.95rem 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.78);
}

.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.85;
}

.trust-strip a {
  color: var(--gold-bright);
  text-decoration: none;
  font-weight: 600;
}

.trust-strip a:hover {
  color: var(--cream);
  text-decoration: underline;
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head--center {
  text-align: center;
  margin-inline: auto;
}

.section-head--center .section-intro {
  margin-inline: auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.55rem;
}

.section-label--light {
  color: var(--gold-bright);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  color: var(--charcoal);
  margin-bottom: 0.65rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.section-title--light {
  color: var(--cream);
}

.section-intro {
  color: var(--text-muted);
  max-width: 36rem;
  font-size: 1.05rem;
}

/* Services */
.services {
  background: var(--warm-white);
}

.service-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem 1.45rem;
  box-shadow: var(--shadow);
  transition: border-color 0.18s, box-shadow 0.18s;
  position: relative;
}

.service-card:hover {
  border-color: rgba(166, 124, 82, 0.35);
  box-shadow: var(--shadow-lg);
}

.service-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.08rem;
  color: var(--charcoal);
  margin-bottom: 0.45rem;
  font-weight: 600;
  line-height: 1.35;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Gallery */
.gallery {
  background: var(--cream-deep);
}

.gallery-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, #2a2620 0%, #1a1814 100%);
  min-height: 220px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(20, 20, 20, 0.06);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item.is-fallback::after,
.about-photo-wrap.is-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(184, 149, 108, 0.12) 0%, transparent 50%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 12px,
      rgba(247, 243, 235, 0.03) 12px,
      rgba(247, 243, 235, 0.03) 13px
    ),
    linear-gradient(160deg, #2c2822, #181612);
}

.gallery-item.is-fallback img,
.about-photo-wrap.is-fallback img {
  opacity: 0;
}

/* About */
.about {
  background: var(--warm-white);
}

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about-copy p + p {
  margin-top: 1rem;
}

.about-copy > p {
  color: var(--text-muted);
  max-width: 34rem;
}

.about-owner {
  margin-top: 1.5rem !important;
  padding: 1.1rem 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold);
  color: var(--charcoal) !important;
  font-size: 1rem;
}

.about-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  background: linear-gradient(160deg, #2a2620, #181612);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.about-photo {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

/* Area */
.area {
  background: var(--cream);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.area-box {
  background: var(--charcoal);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(184, 149, 108, 0.2);
  position: relative;
  overflow: hidden;
}

.area-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--gold-bright), transparent);
}

.area-box .section-title {
  margin-bottom: 0.75rem;
}

.area-box > p {
  opacity: 0.88;
  margin-bottom: 1.5rem;
  max-width: 36rem;
  font-size: 1.05rem;
}

/* Contact */
.contact {
  background: var(--warm-white);
}

.contact-grid {
  display: grid;
  gap: 1.25rem;
}

.contact-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.contact-card--primary {
  border-color: rgba(166, 124, 82, 0.25);
}

.contact-card h3 {
  font-family: var(--serif);
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  font-size: 1.45rem;
  font-weight: 400;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-list .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.contact-list a {
  font-weight: 600;
  font-size: 1.08rem;
  text-decoration: none;
  color: var(--charcoal);
}

.contact-list a:hover {
  color: var(--copper-deep);
  text-decoration: underline;
}

.hours-note {
  display: block;
  margin-top: 0.35rem;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  min-height: 48px;
  background: transparent;
  color: var(--charcoal);
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--line-strong);
}

.social-links a:hover {
  border-color: var(--copper);
  color: var(--copper-deep);
  background: rgba(166, 124, 82, 0.06);
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem !important;
  color: var(--copper-deep) !important;
}

/* Reviews */
.reviews {
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
}

.review-box {
  background: var(--warm-white);
  border: 1px dashed rgba(166, 124, 82, 0.45);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  max-width: 34rem;
  margin-inline: auto;
  box-shadow: var(--shadow);
}

.review-box > p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.review-box .btn {
  pointer-events: none;
  opacity: 0.5;
}

.review-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
}

.review-fb {
  margin-top: 1.15rem;
}

.review-fb a {
  font-weight: 600;
  text-decoration: none;
  color: var(--copper-deep);
}

.review-fb a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(247, 243, 235, 0.75);
  padding: 2.75rem 0 1.75rem;
  font-size: 0.92rem;
}

.footer-inner {
  display: grid;
  gap: 1.15rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-name {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--cream);
  font-size: 1.35rem;
}

.footer-tag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.site-footer a {
  color: var(--gold-bright);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--cream);
  text-decoration: underline;
}

.footer-hours {
  opacity: 0.8;
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.35rem;
  padding-top: 0.25rem;
}

.footer-links a {
  color: var(--cream);
  opacity: 0.85;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold-bright);
}

.footer-copy {
  opacity: 0.55;
  font-size: 0.82rem;
  border-top: 1px solid rgba(247, 243, 235, 0.1);
  padding-top: 1.15rem;
  margin-top: 0.5rem;
}

/* Tablet+ */
@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item--tall {
    grid-row: span 2;
  }

  .gallery-item--tall img,
  .gallery-item--tall {
    min-height: 100%;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .gallery-item--wide img {
    min-height: 280px;
  }
}

@media (min-width: 720px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: block;
    position: static;
    background: transparent;
    padding: 0;
    border: none;
  }

  .site-nav ul {
    flex-direction: row;
    align-items: center;
    width: auto;
    margin: 0;
    gap: 0.1rem;
  }

  .site-nav a {
    padding: 0.45rem 0.7rem;
    font-size: 0.9rem;
    min-height: auto;
    opacity: 0.88;
  }

  .site-nav a:hover {
    opacity: 1;
    background: transparent;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.15rem;
    min-height: 44px;
    font-size: 0.9rem;
    background: var(--copper);
    color: #fff;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }

  .header-cta:hover {
    background: var(--copper-deep);
    color: #fff;
  }

  .header-inner {
    gap: 1.25rem;
  }

  .logo {
    flex-shrink: 0;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }

  .contact-grid {
    grid-template-columns: 1.25fr 1fr;
    align-items: start;
  }

  .about-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }

  .about-photo {
    min-height: 420px;
  }

  .hero-inner {
    padding: 5.5rem 0 4.5rem;
  }

  .area-box {
    padding: 3rem 2.5rem;
  }
}

@media (min-width: 960px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .gallery-item--wide {
    grid-column: span 2;
  }

  .gallery-item {
    min-height: 240px;
  }

  .gallery-item img {
    min-height: 240px;
  }

  .hero {
    min-height: min(90vh, 780px);
  }
}

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

  .gallery-item img,
  .btn {
    transition: none;
  }
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}
