@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Raleway:wght@300;400;500;600;700&display=swap');

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

:root {
  --yellow:   #f5e450;
  --yellow-d: #d4c430;
  --black:    #1a1a1a;
  --cream:    #f5f0e4;
  --cream-d:  #ede6d4;
  --white:    #ffffff;
  --gold:     #c9a44c;
  --gray:     #555555;
  --light-gray: #888888;
  --serif:    'Cormorant Garamond', 'Georgia', serif;
  --sans:     'Raleway', 'Helvetica Neue', Arial, sans-serif;
  --container: min(1200px, 100vw);
  --side-pad: clamp(16px, 4vw, 60px);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
ul { list-style: none; }

/* =========================================
   ANNOUNCEMENT BAR
   ========================================= */
.gt-announce-bar {
  background: var(--yellow);
  color: var(--black);
  text-align: center;
  padding: 10px 20px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.gt-announce-bar a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =========================================
   HEADER
   ========================================= */
.gt-header {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.gt-header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px var(--side-pad) 0;
  max-width: var(--container);
  margin: 0 auto;
}

.gt-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  margin-bottom: 16px;
}

.gt-logo-text {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--black);
  text-transform: uppercase;
}

.gt-logo-scissors {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  position: relative;
}

.gt-logo-scissors svg {
  width: 100%;
  height: 100%;
}

/* Primary Navigation */
.gt-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding: 0;
  list-style: none;
}

.gt-nav ul li a {
  display: block;
  padding: 12px 28px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--black);
  text-transform: none;
  transition: color 0.2s;
}

.gt-nav ul li a:hover,
.gt-nav ul li.current-menu-item > a {
  color: var(--gold);
}

/* =========================================
   SITE WRAPPER
   ========================================= */
.gt-site { min-height: 100vh; display: flex; flex-direction: column; }
.gt-main { flex: 1; }
.gt-wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--side-pad); }

/* =========================================
   BUTTONS
   ========================================= */
.gt-btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  text-align: center;
  text-decoration: none;
}
.gt-btn:hover { transform: translateY(-1px); }
.gt-btn:active { transform: translateY(0); }

.gt-btn--yellow { background: var(--yellow); color: var(--black); }
.gt-btn--yellow:hover { background: var(--yellow-d); }

.gt-btn--dark { background: var(--black); color: var(--white); }
.gt-btn--dark:hover { background: #333; }

.gt-btn--outline-dark {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.gt-btn--outline-dark:hover { background: var(--black); color: var(--white); }

/* =========================================
   HOMEPAGE — ANNOUNCEMENT BLOCK
   ========================================= */
.gt-home-announce {
  text-align: center;
  padding: 48px var(--side-pad) 16px;
  max-width: 700px;
  margin: 0 auto;
}
.gt-home-announce p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.6;
  margin-bottom: 0;
}

.gt-home-locations {
  text-align: center;
  padding: 16px var(--side-pad) 32px;
}
.gt-home-locations strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.gt-home-locations span {
  display: block;
  font-size: 1rem;
  color: var(--gray);
}

/* =========================================
   HOMEPAGE — HERO STRIP (two storefront photos)
   ========================================= */
.gt-hero-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  max-height: 520px;
  overflow: hidden;
}

.gt-hero-strip img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* =========================================
   HOMEPAGE — ABOUT SECTION (3-col: photo | text | photo)
   ========================================= */
.gt-about-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  min-height: 600px;
}

.gt-about-photo {
  overflow: hidden;
}

.gt-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gt-about-text {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
}

.gt-about-text p {
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
  color: var(--black);
  margin-bottom: 1.4em;
}

.gt-about-text .gt-btn {
  align-self: center;
  margin-top: 16px;
  min-width: 200px;
}

/* =========================================
   HOMEPAGE — SERVICES GRID (4-col alternating)
   ========================================= */
.gt-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.gt-service-card {
  padding: 52px 32px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gt-service-card--dark {
  background: var(--black);
  color: var(--white);
}

.gt-service-card--cream {
  background: var(--cream);
  color: var(--black);
}

.gt-service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.gt-service-icon svg {
  width: 64px;
  height: 64px;
  fill: none;
}

.gt-service-card--dark .gt-service-icon svg { stroke: var(--white); }
.gt-service-card--cream .gt-service-icon svg { stroke: var(--black); }

.gt-service-card h3 {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.4;
}

.gt-service-card .gt-service-location {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 16px;
}

.gt-service-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  opacity: 0.85;
  margin-bottom: 20px;
  flex: 1;
}

.gt-service-card a.gt-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: auto;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.gt-service-card a.gt-read-more:hover { opacity: 1; }

/* =========================================
   FOOTER
   ========================================= */
.gt-footer {
  background: var(--black);
  color: rgba(255,255,255,0.85);
  padding: 56px var(--side-pad) 40px;
}

.gt-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.gt-footer h3 {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.gt-footer p,
.gt-footer address {
  font-size: 0.88rem;
  line-height: 1.75;
  font-style: normal;
  color: rgba(255,255,255,0.75);
}

.gt-footer a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.gt-footer a:hover { color: var(--yellow); }

.gt-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.gt-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.gt-footer-social a:hover { background: rgba(255,255,255,0.2); }
.gt-footer-social svg { width: 18px; height: 18px; fill: white; }

.gt-footer-bottom {
  max-width: var(--container);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* =========================================
   INTERIOR PAGE — SPLIT LAYOUT (photo | text)
   ========================================= */
.gt-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.gt-split--reverse { direction: rtl; }
.gt-split--reverse > * { direction: ltr; }

.gt-split-photo {
  overflow: hidden;
  position: relative;
}
.gt-split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
}

.gt-split-content {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
}

.gt-split-content h1 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
}

.gt-split-content .gt-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 28px;
}

.gt-split-content p {
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 1.2em;
}

/* =========================================
   INTERIOR PAGE — STANDARD TEXT PAGE
   ========================================= */
.gt-page-hero {
  background: var(--cream);
  padding: 72px var(--side-pad) 56px;
  text-align: center;
}

.gt-page-hero h1 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  margin-bottom: 12px;
}

.gt-page-hero p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.gt-content-section {
  padding: 64px var(--side-pad);
  max-width: min(860px, 100%);
  margin: 0 auto;
}

.gt-content-section h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 20px;
}

.gt-content-section h3 {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--gray);
}

/* =========================================
   MENSWEAR PAGE
   ========================================= */
.gt-menswear-hero {
  padding: 56px var(--side-pad) 48px;
  text-align: center;
  max-width: var(--container);
  margin: 0 auto;
}

.gt-menswear-hero h1 {
  font-family: var(--sans);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}

.gt-menswear-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--side-pad) 64px;
}

.gt-menswear-intro img {
  width: 100%;
  border-radius: 2px;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.gt-contact-page {
  padding: 64px var(--side-pad);
  max-width: var(--container);
  margin: 0 auto;
}

.gt-contact-page h1 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 8px;
}

.gt-contact-intro {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 48px;
}

.gt-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.gt-location-card {
  padding: 32px 28px;
  background: var(--cream);
}

.gt-location-card h2 {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--black);
}

.gt-location-card address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--gray);
}

.gt-location-card address strong {
  display: block;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 4px;
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.gt-about-page {
  max-width: var(--container);
  margin: 0 auto;
}

.gt-about-bio {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  min-height: 500px;
}

.gt-about-bio-photo {
  overflow: hidden;
}
.gt-about-bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gt-about-bio-text {
  background: var(--cream);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gt-about-bio-text h1 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  margin-bottom: 24px;
}

.gt-about-bio-text p {
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 1.2em;
}

/* =========================================
   DRY CLEANING / EMBROIDERY PAGES (split variant)
   ========================================= */
.gt-service-page { max-width: var(--container); margin: 0 auto; }

.gt-service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  margin-bottom: 0;
}

.gt-service-block:nth-child(even) .gt-service-block-photo { order: 2; }
.gt-service-block:nth-child(even) .gt-service-block-content { order: 1; }

.gt-service-block-photo { overflow: hidden; position: relative; min-height: 400px; }
.gt-service-block-photo img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.gt-service-block-content {
  background: var(--cream);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gt-service-block-content h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 12px;
}

.gt-service-block-content .gt-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.gt-service-block-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.2em;
}

/* =========================================
   GENERAL PAGE (WP default content)
   ========================================= */
.gt-generic-page {
  padding: 72px var(--side-pad);
  max-width: min(860px, 100%);
  margin: 0 auto;
}

.gt-generic-page h1 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 28px;
}

.gt-generic-page h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 32px 0 12px;
}

.gt-generic-page p,
.gt-generic-page li {
  font-size: 1rem;
  line-height: 1.8;
}

/* =========================================
   MOBILE HAMBURGER MENU
   ========================================= */
.gt-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: var(--side-pad);
  top: 24px;
}
.gt-menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
  transition: 0.3s;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .gt-about-section { grid-template-columns: 1fr; }
  .gt-about-photo { display: none; }
  .gt-about-text { padding: 56px 40px; }

  .gt-services-grid { grid-template-columns: 1fr 1fr; }

  .gt-split,
  .gt-about-bio,
  .gt-menswear-intro,
  .gt-service-block { grid-template-columns: 1fr; }

  .gt-split-photo,
  .gt-about-bio-photo { min-height: 340px; position: relative; height: 340px; }
  .gt-split-photo img,
  .gt-about-bio-photo img { position: absolute; }

  .gt-service-block-photo { min-height: 280px; height: 280px; }

  .gt-split--reverse { direction: ltr; }

  .gt-locations-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .gt-hero-strip { max-height: 260px; }
  .gt-hero-strip img { height: 260px; }

  .gt-services-grid { grid-template-columns: 1fr; }

  .gt-footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .gt-about-text { padding: 40px 24px; }

  .gt-split-content,
  .gt-about-bio-text,
  .gt-service-block-content { padding: 40px 24px; }

  .gt-locations-grid { grid-template-columns: 1fr; }

  .gt-nav ul { display: none; flex-direction: column; text-align: center; width: 100%; background: var(--white); padding: 16px 0; }
  .gt-nav ul.is-open { display: flex; }
  .gt-nav ul li a { padding: 10px 20px; }

  .gt-menu-toggle { display: block; }

  .gt-header-inner { flex-direction: row; justify-content: center; position: relative; padding-bottom: 12px; }
  .gt-logo { margin-bottom: 0; }
}
