/* Rocktzar Codes — static rebuild
   Fonts: Playfair Display (headings/logo), Cormorant Garamond (body/nav, substituting
   the original Adobe Garamond Pro which requires a paid Adobe Fonts kit),
   Poppins (buttons) */

:root {
  --cream: #fdf0e6;
  --coral: #cc6555;
  --coral-dark: #b8543f;
  --coral-light: #f7c3ba;
  --dark-gray: #5c5c5c;
  --black: #000000;
  --white: #ffffff;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);

  --radius-brand: 20px 0;
  --radius-soft: 10px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 1000;
  background: var(--black);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-soft);
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--coral);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 0 0 0.45em;
}

h1 {
  font-size: clamp(2.4rem, 4.5vw + 1rem, 3.4rem);
  line-height: 1.12;
}

h2 {
  font-size: clamp(2rem, 3vw + 1rem, 2.6rem);
}

h3 {
  font-size: 1.6rem;
  color: var(--black);
}

p {
  margin: 0 0 1.2em;
}

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

a, button, .btn, input, textarea, select, summary {
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease),
    border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.9rem;
  color: var(--coral);
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}

.logo:hover {
  color: var(--coral-dark);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  font-size: 1.25rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--coral);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  padding: 16px 28px;
  border-radius: var(--radius-brand);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  background: var(--coral-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 20px 40px;
  border: none;
  border-radius: var(--radius-brand);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  background: var(--coral-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* ---------- Sections ---------- */

section {
  padding: 90px 0;
}

.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-black { background: var(--black); padding: 0; }
.section-footer { background: var(--black); color: var(--white); }

.section-coral {
  background: var(--coral);
  color: var(--white);
  padding-top: calc(90px + clamp(30px, 8vw, 90px));
}

.section-coral h2 {
  color: var(--white);
}

.section-coral .btn {
  background: var(--white);
  color: var(--coral);
}

.section-coral .btn:hover {
  background: var(--cream);
}

/* ---------- Section shape divider ---------- */

.divider-peak-bottom {
  --divider-height: clamp(30px, 8vw, 90px);
  position: relative;
  z-index: 2;
  padding-bottom: calc(90px + var(--divider-height));
  margin-bottom: calc(-1 * var(--divider-height));
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% calc(100% - var(--divider-height)),
    50% 100%,
    0% calc(100% - var(--divider-height))
  );
}

.center { text-align: center; }

.narrow {
  max-width: 780px;
  margin: 0 auto;
}

.italic-sub {
  font-style: italic;
  color: var(--coral);
  font-size: 1.7rem;
  line-height: 1.3;
  margin-top: 0.3em;
}

/* ---------- Hero ---------- */

.hero {
  text-align: center;
  padding: 110px 0;
}

.hero .btn {
  margin-top: 40px;
}

.page-hero {
  text-align: center;
  padding: 90px 0;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5vw + 1rem, 3.6rem);
}

.section-white.page-hero h1 {
  color: var(--black);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
}

/* ---------- Full-bleed image ---------- */

.full-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- About photo ---------- */

.about-photo {
  width: 100%;
  margin-top: 40px;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-md);
}

/* ---------- Services cards ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.service-card {
  text-align: left;
  background: var(--white);
  color: var(--black);
  padding: 40px 34px;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card h3 {
  color: var(--coral);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
}

.service-card p {
  color: var(--black);
}

.service-price {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--coral-dark);
  font-style: normal;
  margin-top: 12px;
}

/* ---------- Accordion (Our Services page) ---------- */

.accordion-item {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.accordion-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.accordion-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 4px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-item summary:hover {
  color: var(--coral);
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--coral);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
  margin-left: 20px;
}

.accordion-item[open] summary::after {
  content: "\2212";
}

.accordion-body {
  padding: 0 4px 30px;
  max-width: 700px;
  animation: fade-in 0.3s var(--ease);
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.accordion-body .service-price {
  margin-top: 16px;
}

/* ---------- Testimonials ---------- */

.quote-card {
  background: var(--cream);
  padding: 50px 45px;
  box-shadow: var(--shadow-lg);
}

.quote-card blockquote {
  font-family: "Playfair Display", Georgia, serif;
  font-style: normal;
  font-size: 1.8rem;
  color: var(--black);
  margin: 0 0 20px;
  line-height: 1.35;
}

.quote-card cite {
  font-style: normal;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--black);
}

/* ---------- Testimonial overlap (collage) ---------- */

.testimonial-overlap {
  position: relative;
}

.testimonial-overlap img {
  width: 62%;
  margin-left: 38%;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-md);
  display: block;
}

.testimonial-overlap .quote-card {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 48%;
  z-index: 2;
}

.testimonial-overlap.reverse img {
  margin-left: 0;
}

.testimonial-overlap.reverse .quote-card {
  left: auto;
  right: 0;
}


/* ---------- Subscribe ---------- */

.subscribe-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 30px 0 14px;
  flex-wrap: wrap;
}

.subscribe-form input[type="email"] {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  padding: 15px 18px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-soft);
  width: 220px;
}

.subscribe-form input[type="email"]:focus {
  border-color: var(--coral);
}

.privacy-note {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

/* ---------- Footer ---------- */

.section-footer {
  text-align: center;
  padding: 100px 0 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
}

.section-footer h3 {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  margin: 0 0 0.5em;
}

.section-footer h4 {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: 1.35rem;
  margin: 0 0 0.6em;
}

.section-footer p {
  margin: 0 0 2em;
}

.footer-grid > div > p:last-child {
  margin-bottom: 0;
}

.section-footer a {
  position: relative;
}

.section-footer a[href^="mailto"],
.section-footer a[href^="http"] {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.section-footer a[href^="mailto"]:hover,
.section-footer a[href^="http"]:hover {
  color: var(--coral-light);
  border-bottom-color: var(--coral-light);
}

/* ---------- Projects grid ---------- */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.project-tile {
  display: block;
  width: 100%;
  border: none;
  background: var(--white);
  font: inherit;
  text-align: left;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.project-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.project-tile[aria-expanded="true"] {
  box-shadow: 0 0 0 3px var(--coral), var(--shadow-lg);
}

.project-tile img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s var(--ease);
}

.project-tile:hover img {
  transform: scale(1.05);
}

.project-caption {
  padding: 16px 18px 18px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: var(--black);
}

/* ---------- Project detail panel ---------- */

.project-detail {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--cream);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-md);
  padding: 40px;
  margin-top: 50px;
  text-align: left;
}

.project-detail[hidden] {
  display: none;
}

.project-detail-gallery {
  position: relative;
}

.project-detail img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gallery-nav:hover {
  background: var(--coral);
}

.gallery-nav[hidden] {
  display: none;
}

.gallery-prev {
  left: 16px;
}

.gallery-next {
  right: 16px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.gallery-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.gallery-dots button[aria-current="true"] {
  background: var(--coral);
}

.project-detail h2 {
  color: var(--coral);
  font-size: 1.7rem;
}

.project-detail p {
  color: var(--black);
}

.project-detail .btn {
  margin-top: 10px;
}

/* ---------- Contact page ---------- */

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

.contact-info h3 {
  color: var(--coral);
  font-size: 2rem;
}

.contact-info a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.contact-info a:hover {
  color: var(--coral);
  border-bottom-color: var(--coral);
}

.contact-info .label {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--coral);
  margin: 24px 0 6px;
  display: block;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.form-row > div {
  flex: 1;
}

form label {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 8px;
}

form label .req {
  color: var(--dark-gray);
  font-size: 0.8rem;
  font-weight: normal;
}

form input[type="text"],
form input[type="email"],
form select,
form textarea {
  width: 100%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-soft);
  background: #fafafa;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form select:focus,
form textarea:focus {
  border-color: var(--coral);
  background: var(--white);
}

form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-wrap {
  margin-bottom: 24px;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0 0 24px;
}

fieldset legend {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  margin-bottom: 10px;
  padding: 0;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.radio-option input[type="radio"] {
  accent-color: var(--coral);
  width: 18px;
  height: 18px;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .contact-grid {
    flex-direction: column;
  }
  .contact-grid {
    display: flex;
  }
  .services-grid,
  .projects-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .project-detail {
    padding: 28px;
  }
  .testimonial-overlap img {
    width: 100%;
    margin-left: 0;
  }
  .testimonial-overlap .quote-card {
    position: static;
    transform: none;
    left: auto;
    right: auto;
    width: 100%;
    padding: 40px 30px;
  }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 2rem; }
  .italic-sub { font-size: 1.3rem; }
  .site-header {
    padding: 20px;
  }
  .container {
    padding: 0 24px;
  }
  section {
    padding: 60px 0;
  }
}

@media (max-width: 640px) {
  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}
