/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #2d2d2d;
  background: #FAF7F2;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== COLORS ===== */
:root {
  --flame: #C45A1B;
  --flame-dark: #A34915;
  --forest: #2D5A27;
  --forest-dark: #1E3E1A;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE1;
  --bark: #3D2B1F;
  --bark-light: #5C4033;
  --white: #ffffff;
  --gray: #888;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-align: center;
  font-family: inherit;
}

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

.btn-primary {
  background: var(--flame);
  color: #fff;
}

.btn-primary:hover {
  background: var(--flame-dark);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.15rem;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--bark);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  height: 70px;
  width: auto;
  border-radius: 50%;
}

.header-nav {
  display: flex;
  gap: 28px;
}

.header-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: #fff;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--flame);
  white-space: nowrap;
}

.header-phone:hover {
  color: #e0773e;
}

/* Mobile nav toggle */
.mobile-nav-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 200;
  background: var(--bark);
  border: none;
  border-radius: 6px;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61,43,31,0.85) 0%,
    rgba(61,43,31,0.6) 40%,
    rgba(0,0,0,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 20px;
  max-width: 700px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-phone {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
}

.hero-phone a {
  color: #fff;
  font-weight: 600;
}

.hero-phone a:hover {
  text-decoration: underline;
}

/* ===== PHONE BANNER ===== */
.phone-banner {
  background: var(--flame);
  color: #fff;
  text-align: center;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.phone-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== ABOUT ===== */
.about {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--bark);
  margin-bottom: 16px;
}

.about-text p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.7;
}

.feature-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--bark);
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--bark);
  color: #fff;
  padding: 80px 0;
}

.gallery h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 8px;
}

.gallery-sub {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}

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

.gallery-item-wide {
  grid-row: 1 / 3;
}

.gallery-item-wide img {
  height: 100%;
  min-height: 350px;
}

/* ===== RENTAL ===== */
.rental {
  padding: 80px 0;
}

.rental h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--bark);
}

.rental-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.rental-card {
  background: var(--white);
  border: 1px solid #e8e2d9;
  border-radius: 10px;
  padding: 28px;
}

.rental-card h3 {
  font-size: 1.15rem;
  color: var(--bark);
  margin-bottom: 12px;
  font-weight: 700;
}

.rental-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.rental-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rental-card ul li {
  font-size: 0.95rem;
  color: #555;
  padding-left: 20px;
  position: relative;
}

.rental-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--flame);
}

.rental-card-highlight {
  background: var(--flame);
  color: #fff;
  border-color: var(--flame);
}

.rental-card-highlight h3 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
}

.rental-card-highlight p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--forest);
  color: #fff;
  text-align: center;
  padding: 60px 0;
}

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-band p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

/* ===== CONTACT ===== */
.contact {
  padding: 80px 0;
}

.contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--bark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-block {
  margin-bottom: 28px;
}

.contact-block h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 8px;
}

.contact-phone {
  font-size: 2rem;
  font-weight: 800;
  color: var(--flame);
  letter-spacing: -0.01em;
}

.contact-phone:hover {
  color: var(--flame-dark);
}

.contact-note {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 4px;
}

.tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--bark);
  font-style: italic;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
}

.form-group input,
.form-group textarea {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--flame);
  box-shadow: 0 0 0 3px rgba(196,90,27,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

.contact-form .btn {
  align-self: flex-start;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bark);
  color: rgba(255,255,255,0.7);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 50px;
  border-radius: 50%;
}

.footer-brand p {
  font-style: italic;
  font-size: 0.95rem;
}

.footer-right {
  text-align: right;
}

.footer-phone {
  color: var(--flame);
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.footer-phone:hover {
  color: #e0773e;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .gallery-item-wide {
    grid-row: auto;
  }

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

@media (max-width: 768px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: var(--bark);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 24px;
    transition: right 0.3s ease;
    z-index: 150;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  }

  .header-nav a {
    font-size: 1.1rem;
  }

  .nav-open .header-nav {
    right: 0;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .nav-open .mobile-nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-open .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .mobile-nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    height: 70vh;
    min-height: 400px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-sub br {
    display: none;
  }

  .logo {
    height: 50px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-right {
    text-align: center;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 12px 22px;
    font-size: 0.95rem;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .contact-phone {
    font-size: 1.5rem;
  }

  .about-text h2,
  .gallery h2,
  .rental h2,
  .contact h2,
  .cta-band h2 {
    font-size: 1.6rem;
  }
}
