:root {
  --gold: #e2b84b;
  --gold-light: #624707;
  --gold-ink: #795809;
  --black: #111210;
  --surface: #ffffff;
  --text: #24241f;
  --green: #35613b;
  --border: #e3d9c1;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #faf7ef;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--gold-ink);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--gold-light);
}

a:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
  border-radius: 2px;
}

main,
footer {
  width: min(100% - 2rem, 64rem);
  margin-inline: auto;
}

header {
  padding: 1.5rem max(1rem, calc((100% - 64rem) / 2));
  background: var(--black);
  color: #faf7ef;
  border-bottom: 3px solid var(--gold);
}

.header-details .brand-name {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  line-height: 1.25;
  font-weight: 700;
}

.brand-name a {
  color: var(--gold);
  text-decoration: none;
}

header a:focus-visible {
  outline-color: var(--gold);
}

.header-brand {
  display: grid;
  grid-template-columns: clamp(4rem, 18vw, 7.5rem) minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.brand-logo {
  display: block;
  width: 7.5rem;
  max-width: 100%;
  height: auto;
  border-radius: 0.4rem;
}

.header-details {
  min-width: 0;
}

.header-details p {
  max-width: 75ch;
  margin: 0 0 0.5rem;
}

.header-details .brand-name + p {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
}

.header-details a[href^="tel:"] {
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 700;
}

.header-details a[href^="tel:"]:hover {
  color: #f3d787;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

nav a {
  color: #faf7ef;
  display: block;
  padding: 0.65rem 0.9rem;
  border-radius: 0.4rem;
  text-decoration: none;
}

nav a:hover {
  color: var(--gold);
  background: #302a1b;
}

nav a[aria-current="page"] {
  color: var(--black);
  background: var(--gold);
}

main {
  flex: 1;
  padding-block: clamp(1.5rem, 5vw, 3rem);
}

h1,
h2 {
  color: var(--black);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  letter-spacing: -0.03em;
}

h2 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

p {
  max-width: 65ch;
}

.service-areas {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--gold-ink);
}

.home-content {
  text-align: center;
}

.home-content p {
  margin-inline: auto;
}

.home-photo {
  display: block;
  width: 100%;
  max-width: 580px;
  height: auto;
  margin: 1.5rem auto 0;
  border-radius: 0.5rem;
}

.home-main-card {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.home-main-copy {
  min-width: 0;
}

.home-main-copy > :first-child {
  margin-top: 0;
}

.home-main-copy > :last-child {
  margin-bottom: 0;
}

.home-main-card .home-photo {
  margin: 0 auto;
}

.about-card {
  display: grid;
  align-items: start;
  gap: 1.5rem;
}

.about-copy {
  min-width: 0;
}

.about-copy > :first-child {
  margin-top: 0;
}

.about-photo {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-inline: auto;
  border-radius: 0.5rem;
}

@media (min-width: 50rem) {
  .about-card {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }

  .home-main-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 25rem), 1fr));
  gap: 1.5rem;
  align-items: start;
}

.gallery-photo {
  display: block;
  padding: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 0.75rem;
}

.gallery-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.4rem;
}

.card {
  min-width: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgb(0 0 0 / 4%);
}

.card > :first-child {
  margin-top: 0;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
}

.pricing-card h2,
.pricing-card p {
  margin: 0;
}

.featured-service {
  margin-bottom: 1.5rem;
}

.featured-service > p {
  align-self: center;
}

.featured-service .service-options {
  text-align: center;
}

.featured-service .service-options ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
}

.featured-service .service-options li {
  margin: 0;
}

.featured-service .booking-button {
  align-self: center;
  min-width: min(100%, 14rem);
}

.booking-button {
  display: block;
  margin-top: auto;
  padding: 0.85rem 1.25rem;
  border-radius: 0.5rem;
  background: #a3e635;
  color: var(--black);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.booking-button:hover {
  background: #84cc16;
  color: var(--black);
}

.service-options {
  text-align: left;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.service-options h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.service-options ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-options li + li {
  margin-top: 1rem;
}

.reviews-card {
  margin-top: 1.5rem;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
}

.social-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.social-button:hover {
  background: #edc967;
  color: var(--black);
}

.home-socials {
  margin: 0 0 1.5rem;
}

.card > :last-child {
  margin-bottom: 0;
}

.card li + li {
  margin-top: 0.5rem;
}

footer {
  padding-block: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}

footer p {
  margin: 0;
}

/* Green accents highlight direct contact links. */
a[href^="tel:"],
a[href^="sms:"] {
  color: var(--green);
}

a[href^="tel:"]:hover,
a[href^="sms:"]:hover {
  color: #234329;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: 1rem;
  margin-block: 1.5rem;
}

.contact-actions .contact-button {
  display: block;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  text-align: center;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
}

.contact-button span {
  display: block;
  font-size: 1rem;
}

.contact-actions .call-button,
.contact-actions .text-button {
  color: var(--black);
  background: #a3e635;
}

.contact-actions .call-button:hover,
.contact-actions .text-button:hover {
  background: #84cc16;
}

.quote-card {
  margin-top: 0;
}

.contact-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 50rem) {
  .contact-layout {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  }
}

.quote-form {
  display: grid;
  max-width: 40rem;
  gap: 0.5rem;
}

.quote-form label {
  font-weight: 700;
}

.quote-form input:not([type="hidden"]),
.quote-form textarea,
.quote-form select {
  width: 100%;
  min-width: 0;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  border: 1px solid #8b826f;
  border-radius: 0.4rem;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form button {
  justify-self: start;
  padding: 0.85rem 1.5rem;
  border: 0;
  border-radius: 0.5rem;
  background: #a3e635;
  color: var(--black);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.quote-form button:hover {
  background: #84cc16;
}

.quote-form :focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}
